* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  height: 100vh;
  padding-top: 78px;
}

/*ESTILOS NAV*/

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1;
}

.container-nav {
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 70px;
}

/*ESTILOS LOGO*/

.logo a {
  display: block;
  font-family: "Pacifico", cursive;
  font-size: 30px;
  color: #3d3d3d;
}


.container-partitura {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.item-partitura {
  max-width: 400px;
  width: 100%;
  position: relative;
}

.item-partitura img {
  width: 100%;
  object-fit: cover;
}

/*ESTILOS ICONO STAR*/

.icon-diamond{
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 45px;
  transform: rotate(25deg);
}

.texto{
  font-weight: bold;
  margin: 40px 0px;
  text-align: center;
  line-height: 2;
}

.texto .enfasis{
  color: #2aad3b;
  position: relative;
}

.star-text{
  position: absolute;
  right: -18px;
  top: -20px;
  transform: rotate(24deg);
}

/*ESTILOS BOTON ACTUILIZAR A PREMIUM*/

.update-account{
  display: block;
  background: #2aad3b;
  padding: 20px;
  color: #fff;
  max-width: 300px;
  width: 90%;
  text-align: center;
  font-weight: bold;
  margin: 20px 0px;
  border-radius: 10px;
}

/*FOOTER*/
footer {
  margin-top: 120px;
  padding-top: 30px;
  padding-bottom: 10px;
  font-weight: 600;
  line-height: 28px;
}

.container-contact {
  width: 100%;
  max-width: 550px;
  padding: 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 12px;
}

.container-contact .item-contact,
.container-contact a {
  text-align: center;
  color: #666666;
  margin-top: 10px;
}

.container-contact .item-contact .icon {
  margin-right: 5px;
}

/*RESPONSIVE*/

@media (max-width: 405px) {
  .options {
    text-align: center;
  }

  .options button {
    width: 90%;
    margin-bottom: 10px;
  }
}

/*RESPONSIV FOOTER*/
@media (max-width: 560px) {
  .container-contact {
    display: block;
  }
}

@media (max-width: 590px) {
  .container-contact {
    width: 90%;
  }
}
