* {
  box-sizing: border-box;
}

:root {
  /* se guardan los colores del proyecto */
  --color-titulos: #ffffff;


  /* se guardan las tipografÃ­as */
  --tipo-titulos: "Poppins", sans-serif;
  --tipo-textos: "Cormorant Garamond", serif;

  /*
      se guardan otras variables
      ...
      */

}


/* ----------------
     reglas generales
     ---------------- */


body {
  background-color: #000000;
  font-family: sans-serif;
  margin: 0;
}


h1,
h2,
h3,
h4 {
  font-family: 'Anek Latin', sans-serif;
  color: var(--color-titulos);

}

h4 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

p {
  color: white;
  font-size: small;
}



img {
  max-width: 100%;
  border-radius: 0.6rem;
}


/* "TODOS" los vÃ­nculos */
a {
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  font-size: 1.1em;
}


/* "TODAS" las listas */
ul,
ol {
  list-style: none;
  padding-inline: 0;
}

.contenedora {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding: 1rem;
}



/* -------------------
     componente superior
     y sus contenidos
     ------------------- */

/* tanto header como footer */
header,
footer {
  background-color: #000000;
  color: whitesmoke;
}


/* el componente dentro de header
   que contiene el logo y el menÃº */
header .contenedora {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0%;
  padding-bottom: 0%;
  border-block-end: 0.5px solid
}


/* "logo" */
#logo img {
  width: 8em;
}

.activo {
  color: #e9c705;
}

/*
  botÃ³n del menu
  */

.menu-btn {
  background: #000000;
}

.menu-btn,
.menu-fondo {
  border-radius: 50%;
  padding: .75rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}


.menu-btn .btn-linea {
  width: 1.5em;
  height: 3px;
  margin-block: 0.25em;
  background: whitesmoke;
  transition: all 0.3s ease-out;
}


/*
  menu 
  */

/* lista del menÃº en el encabezado */
header nav ul {
  margin-block: 0;
  display: none;
}


header nav a {
  color: white;
  display: block;
  width: 5em;
  margin: .25em;
  padding-block: .25em;
  text-align: center;
  border-radius: .25em;

}


header nav a:hover {
  color: #e9c705;
}

.material-symbols-outlined {
  color: #e9c705;
}

main nav ul {
  margin-block: 0;
  display: flex;
}


main nav a {
  color: white;
  display: block;
  width: 5em;
  text-align: center;
  border-radius: .25em;

}


main nav a:hover {
  color: #e9c705;
}

.principal {
  color: #e9c705;
  padding: 0em;
}

/* HOME*/

/* vivo */

.video {
  border-width: thin;
  border-style: solid;
  border-color: #e9c705;
  padding: 0.5em;
  width: 100%;
}


.tamañop {
  font-size: x-small;
  color: #e9c705;
  margin-top: 0.5em;
}

.cajap {
  font-size: x-small;
  color: #e9c705;
  background-color: #1d1902;
  width: 7em;
  border-radius: 0.5em;
  padding: 0.5em;
  margin-top: 0.5em;
}

section {
  padding-bottom: 2rem;
}



.escuchando {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: scroll;
    background-color: #645502;
    border-radius: 0.5em;
    padding: 0.5em;
}

.escuchando h2 {
  padding: 1em;
  /* para que quede solo en la primera línea */
  width: 100%;
}


.escuchando figure {
  width: 30vmin;
  margin: .125em;
}

.escuchando img {
  /* para que la imagen "llene" la etiqueta "img" aun con otras porporciones */
  object-fit: cover;
  width: 30vmin;
  height: 45vmin;
  /* para que "desaparezca" el espacio que queda debajo de la imagen */
  display: block;
}

.escuchando figcaption {
  width: 30vmin;
  color: white;
  padding: .5em;
  line-height: 1em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: smaller;


}





/* tendencias */


.tendencias img {
  object-fit: cover;
  width: 30vmin;
  height: 45vmin;
  display: block;
}

.sinopsis {
  display: flex;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  gap: 0.5em;
  background-color: #1d1902;
  padding: 1em;
  margin: 1em;
  border-radius: 0.8em;

}


/* biblioteca */

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}




.blanco {
  color: #fff !important;
}





/* footer */

#logofooter {
  height: 2em;
  align-items: center;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 3.5em;

}

.redes {
  height: 2em;
}




/* play.html */


.autores {
  display: flex
}

.autores h2 {
  padding: 1em;
  /* para que quede solo en la primera línea */
  width: 100%;
}


.autores figure {
  width: 30vmin;
  margin: .125em;
}

.autores img {
  /* para que la imagen "llene" la etiqueta "img" aun con otras porporciones */
  object-fit: cover;
  width: 30vmin;
  height: 30vmin;
  /* para que "desaparezca" el espacio que queda debajo de la imagen */
  display: block;
}

.autores figcaption {
  width: 30vmin;
  color: white;
  padding: .5em;
  line-height: 1em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: small;


}



/* GRUPOS*/

.grupos {
  display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
  justify-content: center;
  align-content: center;

}

.grupos h2 {
  padding: 1em;
  /* para que quede solo en la primera línea */
  width: 100%;
}


.grupos figure {
  width: 30vmin;
  margin: .125em;
  width: 100%;
  
}

.grupos img {
  /* para que la imagen "llene" la etiqueta "img" aun con otras porporciones */
  object-fit: cover;
  width: 30vmin;
  height: 30vmin;
  /* para que "desaparezca" el espacio que queda debajo de la imagen */
  display: block;
}

.grupos figcaption {
  width: 30vmin;
  color: white;
  padding: .5em;
  line-height: 1em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: small;


}



/* VIVO */

.vivo {
  display: flex;
  flex-wrap: wrap;
}

.vivo h2 {
  padding: 1em;
  /* para que quede solo en la primera línea */
  width: 100%;
}


.vivo figure {
  width: 40vmin;
  margin: .125em;
}

.vivo img {
  /* para que la imagen "llene" la etiqueta "img" aun con otras porporciones */
  object-fit: cover;
  width: 16em;
  height: 6em;
  /* para que "desaparezca" el espacio que queda debajo de la imagen */
  display: block;
}

.vivo figcaption {
  width: 40vmin;
  color: white;
  padding: .5em;
  line-height: 1em;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: small;


}

/* recientes */

.recientes figure {
  width: 40vmin;
  margin: .125em;
}

.recientes img {
  object-fit: cover;
  width: 30vmin;
  height: 45vmin;
  display: block;
}

.libros {
  object-fit: cover;
  height: 45vmin;
  display: block;

}

.iconos {
  display: flex;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  gap: 0.5em;

}

.play {
  color: #000000;
  background-color: #e9c705;
  border-radius: 0.3em;
  width: fit-content;
  padding: 0.3em;
  font-weight: bold;

}

/* cambios a partir de los 480px */

@media (min-width: 30em) {


  .menu-btn {
    display: none;
  }


  header nav,
  header nav ul {
    display: contents;
  }


  header nav ul li:first-of-type {
    margin-inline-start: auto;
  }


  header .contenedora {
    gap: .5em;
  }

  main nav {
    display: none;
  }


  /* HOME escuchando */

  .escuchando {
    display: flex;
    gap: 2em;
    
  }


  .tendencias {
    display: flex;
  }

  .grupos {
    display: flex;
  }

  .autores {

    display: flex;
    gap: 2em;
    overflow: scroll;
  }

  .flexi {
    display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
  }


}


  /* cambios a partir de los 640px */
  @media (min-width: 40em) {

    /* HOME escuchando */

    .escuchando {
      display: flex;
    }
  }

  

  /* cambios a partir de los 960px */
  @media (min-width: 60em) {

    /* HOME escuchando */

    .escuchando {
      display: flex;
    }
  }

  