/* UNIVERSAL */

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    /* scroll suave */
    scroll-behavior: smooth;
    /* para que el encabezado quede visible siempre */
    scroll-padding-block-start: 5em;
  }

ul, ol {
    list-style: none; /* elimina bullets, números etc. */
  }

body {
    margin: 0%;
    background-color: #f1e2c0;
}

h1 {
    color: hsl(29, 38%, 28%);
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 900;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

p {
    font-size: 13px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-style: normal;

}

/* ERROR */

.error {
    margin: 4rem;
    margin-top: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.error h1 {
    color: #fff;
    text-transform: uppercase;
}

.error h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 1rem;
}

.error p {
    color: white;
}

.error a {
    margin: 1rem;
    font-size: 10px;
    text-align: center;
}

.error_mas {
    margin-top: .5em;
    font-size: 7pt;
    background-color: hsl(26, 34%, 53%);
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    justify-content: center;
    padding: .5rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

.error img {
    width: 60%;
}

/* HEADER */

header {
    box-shadow: 0 1px 2px hsl(0 0% 0% / 0.25);
    position: sticky;
    top: 0;
    z-index: 8000;
    display: block;
    background-color: hsl(29, 38%, 28%);
    color: white;
}

header .contenedora {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

#logo {
    display: flex;
    align-items: center;
    justify-content:space-between;
    position: relative;
    z-index: 7777;
}

#logo img {
    width: 4em;
    margin: 0em 0.75em 0em 0;
}

#iconos {
    display: flex;
    align-items: center;
    justify-content:space-between;
    position: relative;
    z-index: 7777;
    width: 1.5em;
    margin: 0em 0em 0em 0em;
}

img {
    max-width: 100%;
    height: auto;
}

#logo h3 {
    line-height: 1em;
    margin: 0;
    font-family: Roboto;
    font-style: italic;
    font-weight: 700;
}

h3 {
    margin-block-end: 1em;
}

.titulo {
    padding-top: 0.35em;
    padding-block-end: 0.35em;
}

#logo h3 span {
    display: block;
    letter-spacing: .15em;
}

.menu-btn {
    background: hsl(26, 34%, 53%);
    border-radius: 50%;
    box-shadow: -5px 5px 5px hsla(180, 100%, 4%, 0);
    padding: 0.75rem;
    width: 3rem;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 1em;
    right: 1em;
    z-index: 9000;
}

.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: hsl(0 0% 90%);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}

#perfilboton {
    display: none;
}

/* ICONOS */

.material-symbols-outlined {
    color: #fff;
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48
}

/* MENU DESPLEGABLE */

/* cada barra, transformacion para formar la "X" */
.menuVisible .menu-btn .btn-linea {
    transform: rotate(180deg);
  }
  /* Las tres barras para formar la "X" */
  .menuVisible .menu-btn .btn-linea:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
  }
  .menuVisible .menu-btn .btn-linea:nth-child(2) {
    opacity: 0;
  }
  .menuVisible .menu-btn .btn-linea:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
  }

nav ul {
    background-color: hsl(26, 34%, 53%);
    display: grid;
    place-items: center;
    place-content: center;
    position: fixed;
    inset: 0;
    z-index: 8000;
    translate: 100%;
    transition: all .6s ease;
}

nav ul li a img {
    max-width: 6em;
    height: auto;
}

.menuVisible ul {
    background-color: hsl(29, 38%, 28%);
    transition: all .4s ease; /* anima cuando "nav" tiene la clase "menuVisible" */
    translate: 0;
  }
  
/* cada vínculo del menu */
  nav ul li a {
    color: white;
    display: block;
    font-size: 1.5rem;
    margin-block-end: .5rem;
    width: min(70vw, 20rem); /* el valor menor entre el 40% del ancho de la ventana del navegador y 240px */
    text-align: center;
    padding: .5rem;
    text-decoration: none;
    border-bottom: solid 3px hsla(26, 34%, 53%, 0.692);
    font-family: Roboto;
    font-weight: 500;
  }
  
  nav ul li a:hover {
    background-color: hsl(26, 34%, 53%);
    color: white;
    border-block-end: unset;
  }

/* MAIN */

main {
    display: flex;
    flex-direction: column;
}

.imageninicio {
    border: 1rem solid white;
}

.texto {
    width: 100%;
}

/* SLIDE */

/* inicio slider noticias */

.contenedornoticias {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 100%;
}

img {
    width: 100%;
    height: 100%;
}

ul.slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
}

ul.slider li {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: inherit;
    height: inherit;
    background-color: white;
    transition: opacity .5s;
}

ul.slider li img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}

ul.slider li:first-child {
    opacity: 1;
}

ul.slider li:target {
    opacity: 1;
}

/* fin slider noticias */

.slide {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.slide li {
    display: inline-block;
    text-align: center;
    margin: 5px;
}

.slide li a {
    display: inline-block;
    text-decoration: none;
    background-color: hsl(29, 38%, 28%);;
    padding: 5px;
    width: auto;
    border-radius: 20px;
}

/* fin botones slider */

/* texto sobre imagen */

.info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    padding: .5em;
    padding-left: 1em;
    padding-right: 1em;
    background-color: hsla(28, 93%, 36%, 0.541);
    width: 100%;
}

.info h2 {
    color: white;
    font-family: Roboto;
    font-weight: 700;
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
}

.info h6 {
    color: white;
    font-family: Roboto;
    font-size: 0.8rem;
    font-weight: 400;
    padding-bottom: 0.4rem;

}

.info p {
    color: white;
    font-size: .5em;
    font-weight: 100;
}

#slide1 {
    z-index: 1;
}

#slide2 {
    z-index: 2;
}

#slide3 {
    z-index: 3;
}

/* inicio noticias relacionadas */

.otras {
    background-color: hsla(26, 34%, 53%, 0.603);
    padding: 10px;
    margin: 20px;
    margin-top: 5px;
    border-radius: 0.5rem;
}

.otras ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.otras ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.otras li {
    font-size: 8pt;
    font-weight: 100;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: .2em;
    width: 30%;
    margin: .6em;
}

.otras h2 {
    border-width: 2px;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    width: 100%;
    margin-bottom: .5em;
    font-size: 15pt;
    font-family: Roboto;
    font-weight: 800;
    color: hsl(28, 66%, 13%);;
}

.otras p {
    font-size: 8pt;
    color: black;
    margin-top: .5em;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.otras li img {
    width: 100%;
}

.ver_mas {
    margin-top: .5em;
    font-size: 7pt;
    background-color: hsl(26, 34%, 53%);
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: .5rem 1rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

/* fin noticias relacionadas */

/* ARTÍCULO 1 */

.infopuente {
    background-color: #fff;
    padding: 1rem 1rem 1rem;
    margin: 20px;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.imageninicio {
    width: 100%;
}

.infopuente h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: Italic 900;
}

.infopuente p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

#hito {
    font-style: italic;
    font-weight: 500;
}

.abc {
    background-color: hsl(26, 34%, 53%);
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: .5rem 1rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

.abc:hover {
    background-color: hsl(29, 38%, 28%);
}

/* SECCIONES */

.contenedor-cultura {
    margin: 20px;
}

.contenedor-cultura h1 {
    margin-bottom: 0.4rem;
}

.contenedor-cultura p {
    margin-bottom: 1rem;
}

.texto-cultura {
    color: #fff;
    text-align: center;
}

.texto-cultura p {
    color: #fff;
}

.cuadrados {
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}

.cuadrado {
    background-color: white;
    padding: 2em;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    border-radius: 0.5rem;
  }

.cuadrado .img-cuadrado {
    margin: 0em 1em 1em 1em;
    align-self: center;
  }

.cuadrado a {
    font-weight: 700;
    margin-top: .5em;
    display: block;
    text-align: right;
  }

.bloquecuadrado {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.img-cuadrado .material-symbols-outlined {
    color: hsl(0, 0%, 100%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 6rem;
}

#novelas {
    background-color: rgb(165, 79, 73);
}

#peliculas {
    background-color: rgb(100, 57, 139);
}

#musica {
    background-color: rgb(146, 51, 133);
}

#poesia {
    background-color: rgb(57, 120, 139);
}

#perfil {
    background-color: hsl(29, 38%, 28%)
}

/* Destacado FORO */

.apartadoforo {
    background-color: hsl(28, 26%, 13%);
    padding: 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.apartadoforo h1 {
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.apartadoforo h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: .5rem;
}

#descrpapartado {
    color: #fff;
    text-align: center;
    font-size: .7rem;
    font-weight: 300;
}

/* ACUMAR INFO */

.acumar {
    background-color: #fff;
    padding: 1rem 1rem 1rem;
}

.acumar h1 {
    padding-bottom: rem;
}

#acumar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.videoacumar {
    background-color: #fff;
    width: 100%;
    padding-top: 1.5rem;
}

/* MAPA */

#tituloextra1 {
    display: none;
}

.mapa {
    align-items: center;
}

.mapa h1 {
    padding-bottom: 1.6rem;
    text-align: center;
}

.googlemaps {
    display: block;
    width: 100%;
}

.googlemapsinfo {
    display: block;
    width: 100%;
}

/* FOOTER */

footer div {
    display: block;
}

footer {
    flex-direction: row;
    padding: 20px;
    background-color: hsl(29, 38%, 28%);
    color: hsl(0 0% 95%);
    display: block;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

footer .contenedora {
    gap: 1rem;
    align-items: center;
    margin-inline: auto;
    padding: 1rem;
}

footer img {
    display: flex;
    max-width: 14rem;
    margin: auto;
    justify-content: center;
    margin-bottom: 1rem;
}

footer p {
    color: white;
    font-size: 9pt;
    font-weight: 100;
    text-align: center;
}

#logo-footer {
    max-width: 6rem;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.links-footer{
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.links-footer a{
    height: 1.5rem;
}

/* INICIO DE NOVELAS */

/* TITULO */

.tituloprincipal {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background-image: url("../../imagenes/biblio.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tituloprincipal h1 {
    font-size: 2rem;
    color: hsl(0, 0%, 100%);
}

.tituloprincipal .material-symbols-outlined {
    color: hsl(0, 0%, 100%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2.5rem;
}

.novelas1 h2 {
    text-align: center;
    background: #fff;
    color: hsl(29, 38%, 28%);
    margin-bottom: 1rem;
}

/* PARTE PRINCIPAL */

.destacado {
    background-color: #fff;
    padding: 1rem 1rem 1rem;
    margin: 30px;
    border-radius: 0.5rem;
}

.destacado img {
    padding-bottom: 1rem;
}

.destacado h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: hsl(29, 38%, 28%);
}

.destacado span {
    font-weight: 300;
    font-size: 1rem;
}

.destacado p {
    text-align: center;
    padding-bottom: 1rem;
}

/* Apartado nuevas secciones novelas */

#novelas1 {
    background-color: rgb(238, 139, 46);
    margin-left: 25px;
    margin-right: 25px;
}

#novelas2 {
    background-color: rgb(26, 161, 143);
    margin-left: 25px;
    margin-right: 25px;
}

.cuadradonovelas {
    background-color: white;
    padding: 2em;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    border-radius: 0.5rem;
  }

.img-cuadradonovela .material-symbols-outlined {
    color: hsl(0, 0%, 100%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 6rem;
}

.texto-culturanovelas {
    text-align: center;
    margin-top: 1rem;
}

.nuevosnovelas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FIN Apartado nuevas secciones novelas */

/* BOTONES */

.botonicono {
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 1rem;
}

.botonicono .material-symbols-outlined {
    color: hsl(29, 38%, 28%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2rem;
}

#fofo {
    text-align: center;
}

/* SLIDE OTRAS NOVELAS */

.contenedora-libros {
    margin: auto 1em auto 1em;
    margin-bottom: 2rem;
}

.contenedora-libros h1 {
    color: #fff;
}
  
.contenedora-libros :not(first-child){
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0.4rem;
}
  
.carousel {
    display: flex;
    overflow-x: scroll;
}
  
.carousel article { 
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    background-color: white;
    min-width: 180px;
    max-width: 250px;
    position: relative;
}

.carousel article h4 {
    font-family: Roboto;
    font-weight: 800;
}

.carousel article p {
    font-family: Roboto;
    font-weight: 300;
}

.nov {
    background-color: rgb(165, 79, 73);;
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: .5rem 1rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

.nov:hover {
    background-color: rgb(133, 53, 47);;
}

#textooculto1 {
    display: none;
}

/* BARRA DE COMENTARIOS */

.comment-bar {
    background-color: #f2f2f2;
    padding: 30px;
    padding-bottom: 2rem
  }
  
  .comment-bar form {
    display: flex;
    align-items: center;
  }
  
  .comment-bar textarea {
    width: 100%;
    resize: vertical;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Roboto', sans-serif;
  }
  
  .comment-bar button {
    font-family: 'Roboto', sans-serif;
    margin-left: 10px;
    padding: 5px 10px;
    background-color: hsl(26, 34%, 53%);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

/* INTERMEDIO COMENTARIOS */

.comentarios {
    background-color: #f2f2f2;
    padding: 2em;
    padding-top: 0;
  }

  .comentarios h3{
    color: hsl(29, 38%, 28%);
    font-family: Roboto;
    font-weight: 800;
    border-bottom: 2px solid hsl(29, 38%, 28%);;
    padding-bottom: .1em;
    margin-bottom: .5em;
  }

  .comentarios a#filtrar{
    background-color: hsl(26, 34%, 53%);
    color: white;
    font-size: .8em;
    padding: 3px .5em 3px .5rem;
    font-family: Roboto;
    margin-bottom: 1em;
  }
  
  .comentarios a#filtrar::after {
    color: white;
    font-size: .8em;
    font-family: Roboto;
    content: "▼";
    margin-left: .5em;
  }

/* SECCIÓN COMENTARIOS */

  #primercoment {
    padding-top: 1rem;
  }

  .comment {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .user-name {
    font-weight: bold;
    margin-right: 10px;
  }
  
  .comment-text {
    flex: 1;
  }

.botoniconocoment {
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 1rem;
}

.botoniconocoment .material-symbols-outlined {
    color: hsl(29, 38%, 28%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 15px;
}

.botoniconocoment p {
    font-size: 10px;
}

.cajacomentario {
    margin-bottom: 1.5rem;
}

/* PELICULAS */

.tituloseccionpelis {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background-image: url("../../imagenes/sala-cine.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* DESTACADO PELICULA */

.tituloseccionpelis h1 {
    font-size: 2rem;
    color: hsl(0, 0%, 100%);
}

.tituloseccionpelis .material-symbols-outlined {
    color: hsl(0, 0%, 100%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2.5rem;
}

.videopelicula {
    width: 100%;
    margin-bottom: 1rem;
}

.destacadopelis {
    background-color: #000000;
    padding: 0.8rem;
}

.destacadopelis h2 {
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.destacadopelis p {
    color: #fff;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 2rem;
}

.destacadopelis p span {
    font-weight: 900;
}

.destacadopelis h3 {
    text-align: center;
    font-size: 18px;
}

.destacadopelis h3 span {
    font-weight: 200;
}

/* INICIO OTROS */

.audiovisual {
    background-color: rgb(225, 205, 248);
    padding: 1.5rem;
    margin: 30px;
    margin-top: 5px;
    border-radius: 0.5rem;
    text-align: center;
}

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

.audiovisual li {
    margin-bottom: 2rem;
}

.audiovisual h2 {
    border-width: 2px;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    width: 100%;
    margin-bottom: .5em;
    font-size: 15pt;
    font-family: Roboto;
    font-weight: 800;
    color: rgb(100, 57, 139);
}

.audiovisual p {
    font-size: 8pt;
    color: black;
    margin-top: .5em;
    font-weight: 500;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.audiovisual li img {
    width: 70%;
}

.ver_mas1 {
    margin-top: .5em;
    font-size: 7pt;
    background-color: rgb(100, 57, 139);
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: .5rem 1rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

.audiovisual h4 {
    font-family: Roboto;
    font-weight: 500;
    color: rgb(100, 57, 139);
    text-align: center;
    margin-top: 1rem;
}
/* FIN */

/* MUSICA */

.tituloseccionmusica {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background-image: url("../../imagenes/fondomusica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tituloseccionmusica h1 {
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

.tituloseccionmusica .material-symbols-outlined {
    color: rgb(255, 254, 255);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2rem;
}

/* DESTACADO MUSICA */


.lonuevo {
    background-color: rgb(255, 242, 253);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.musicadestacado {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.lonuevo h3 {
    font-size: 1.8rem;
    color: rgb(146, 51, 133);
    font-weight: 800;
    text-align: center;
}

.lonuevo .material-symbols-outlined {
    color: rgb(146, 51, 133);;
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2rem;
}

.bolerito {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bolerito img {
    border-radius: 0.5rem;
}

.bolerito h2 {
    font-size: 1rem;
    justify-content: center;
}

.bolerito span {
    font-size: 1rem;
    font-weight: 300;
}

.bolerito p {
    margin-bottom: 1rem;
}

.naks {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-items: center;
    
}

.naks img {
    width: 100%;
}

.naks h2 {
    color: #fff;
    margin-top: 1rem;
    font-size: 2rem;
    text-align: center;
}

.naks p {
    color: #fff;
    padding: 1rem;
    font-weight: 200;
    text-align: center;
}

.naks a {
    display: flex;
    color: red;
    justify-content: center;
}

.naks a img {
    max-width: 3rem;
    align-items: center;
}

.naks a p {
    text-align: center;
}

/* OTROS DESTACADOS */

.clasicos h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.videosmusica {
    width: 100%;
    height: 100%;
    border: none;
    aspect-ratio: 16/9;
}

.boleritonaks {
    width: auto;
    aspect-ratio: 16/9;
}

/* inicio otros artistas */

.otrascanciones {
    background-color: hsla(0, 0%, 100%, 0.603);
    padding: 10px;
    margin: 30px;
    margin-top: 5px;
    border-radius: 0.5rem;
}

.otrascanciones ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.otrascanciones ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.otrascanciones li {
    font-size: 8pt;
    font-weight: 100;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: .2em;
    width: 30%;
    margin: .6em;
}

.otrascanciones h2 {
    border-width: 2px;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    width: 100%;
    margin-bottom: .5em;
    font-size: 15pt;
    font-family: Roboto;
    font-weight: 800;
    color: rgb(99, 29, 89);
}

.otrascanciones p {
    font-size: 8pt;
    color: black;
    margin-top: .5em;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.otrascanciones li img {
    width: 100%;
}

.ver_masm {
    margin-top: .5em;
    font-size: 7pt;
    background-color: rgb(99, 29, 89);
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: auto;
    padding: .5rem 1rem;
    border-radius: 10rem;
    font-family: Roboto;
    font-weight: 500;
}

/* fin */

/* POESÍA */

.tituloseccionpoema {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background-image: url("../../imagenes/poesia.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tituloseccionpoema h1 {
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

.tituloseccionpoema .material-symbols-outlined {
    color: rgb(255, 254, 255);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2rem;
}

/* DESTACADO */

.poesiadestacado {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.poesiadestacado .material-symbols-outlined {
    color: rgb(255, 179, 16);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 1.5rem;
}

.poesiadestacado h3 {
    font-size: 1.5rem;
    color: rgb(255, 179, 16);
    font-weight: 800;
}

.poemaensi {
    text-align: center;
    padding: 1rem;
}

.poemaensi h4 {
    font-family: Roboto;
    font-weight: 800;
    color: rgb(24, 67, 80);
}

#ganador {
    color: rgb(207, 153, 37);
}

.poemaensi h5 {
    font-family: Roboto;
    font-weight: 300;
}

.poemaensi p {
    font-size: 0.7rem;
}

#poemainicio {
    margin-top: 1.5rem;
}

#h3poema {
    text-align: center;
    margin-top: 1rem;
}

.otrospoemas {
    display: flex;
    flex-direction: column;
}

#vermaspoem {
    margin-bottom: 2rem;
}

.titulopoesia {
    color: #fff;
    margin-top: 1rem;
}

.destacadopoesia1 {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.destacadopoesia1 h3 {
    font-size: 1.5rem;
    color: rgb(255, 179, 16);
    font-weight: 800;
    margin-top: 2rem;
}

.destacadopoesia1 .material-symbols-outlined {
    color: rgb(255, 179, 16);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.recomendadopoesia {
    background-color: #fff;
}

.poesiacontenedor1 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.poesiacontenedor1 img {
    margin-bottom: 1rem;
}

.textopoesia1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.textopoesia1 h2 {
    font-size: 1rem;
}

.textopoesia1 span {
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
}

.textopoesia1 p {
    margin-bottom: 2rem;
}

/* VS */

.vs {
    background-color: hsl(26, 34%, 53%);
}

.versus {
    text-align: center;
    margin-top: 2rem;
}

.vsgrande {
    text-align: center;
    font-size: 5rem;
}

/* NOTICIAS */

#titulonoticia {
    background-color: hsl(26, 34%, 53%);
    padding: 10px;
    margin: 20px;
    margin-top: 1.2rem;
    border-radius: 10px;
}

#titulonoticia h1 {
    font-size: 22pt;
    color: white;
    font-weight: 600;
    margin-left: .3em;
}

#titulonoticia h6 {
    font-family: Roboto;
    font-size: 10pt;
    color: white;
    font-weight: 400;
    margin-left: .7em;
}

#titulonoticia p {
    font-family: Roboto;
    font-size: 10pt;
    color: white;
    font-weight: 400;
    margin-left: .7em;
}

.contenedornoticia {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    text-align: center;
    color: white;
}

/* FICHA IMÁGEN */

.fichanoticia {
    width: 100%;
    height: auto;
    background-color: hsl(29, 38%, 28%);
    margin: 20px;
    padding: 1em;
    border-radius: 10px;
}

.fichanoticia img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: .5em;
}

.fichanoticia p {
    font-size: 10pt;
    font-weight: 100;
    color: #fff;

}

.fichanoticia h3 {
    font-size: 13pt;
    font-weight: 400;
}

.contenedoranoticia {
    padding: 1em;
    max-width: 100%;
}

.textonoticia {
    display: block;
    align-items: center;
    max-width: 100%;
    padding: 10px;
    margin-top: 0px;
    color: black;
    line-height: normal;
    text-align: left;
}

/* VISITÁ OTRAS PÁGINAS */

#visita {
    padding: 2em;
}

#secciones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#visita h4 {
    font-family: Roboto;
    color: hsl(29, 38%, 28%);
    margin-bottom: .5em;
    font-size: 16pt;
    font-weight: 700;
}

#secciones ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: .1em;
    padding-bottom: .2em;
    width: 100%;
}

#secciones li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .1em;
    margin-left: .1em;
    width: 100%;
    height: 2.2em;
    font-size: 10pt;
    color: white;
    cursor: pointer;
}

#secciones a {
    color: white;
    text-decoration: none;
}

/* PERFIL */

#cajausuario {
    padding: 2rem;
}

.login-box {
    background: hsl(26, 34%, 53%);
    color: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 3rem;
}

.usuariofoto {
    height: 5rem;
}

.login-box h1 {
    padding: 0 0 20px;
    text-align: center;
    font-size: 25px;
    margin-top: 1rem;
    color: #fff;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
    display: block;
    font-family: Roboto;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"], .login-box input[type="password"] {
    border: none;
    border-bottom: 1px solid ;
    background: transparent;
    outline: none;
    height: 40px;
    color: hsl(29, 38%, 28%);
    font-size: 16px;
    font-family: Roboto;
}

.login-box button {
    width: 100%;
    height: 40px;
    background-color: hsl(29, 38%, 28%);
    font-size: 18px;
    border-radius: 20px;
    border-width: 1.5px;
    margin-bottom: .5rem;
}

.login-box button a {
    display: flex;
    justify-content: center;
    font-size: 10pt;
    color: white;
    font-family: Roboto;
}

.login-box button:hover {
    cursor: pointer;
    background-color: rgb(255, 179, 16);
    color: hsl(29, 38%, 28%);
}

.login-box a {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: white;
    font-family: Roboto;
}

.login-box a:hover {
    color: hsl(29, 38%, 28%);
}

/* FORO */

.tituloseccionforo {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    border-bottom: solid 3px hsl(26, 34%, 53%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 1rem;
}

.tituloseccionforo .material-symbols-outlined {
    color: hsl(29, 38%, 28%);
    font-variation-settings:
    'FILL' 1,
    'wght' 700,
    'GRAD' 200,
    'opsz' 48;
    font-size: 2.5rem;
}

.filtro-y-busqueda {
    margin: 1.7em;
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
}

.filtro-y-busqueda a.filtro {
    background-color: hsl(26, 34%, 53%);
    color: white;
    font-size: 1em;
    padding: 3px 1em 3px 1rem;
    font-family: Roboto;
    border-radius: 5px;
}
  
.filtro-y-busqueda a.filtro::after {
    color: white;
    font-size: .9em;
    font-family: Roboto;
    content: "▼";
    margin-left: .5em;
}

/* Contenido y cajas del foro */

.contenedoraforo {
    margin: 1em;
}
  
.boton-herramientas {
    margin-right: 2em;
}
  
.foro-categoria {
    display: flex;
    flex-direction: column;
    margin-bottom: 3em;
}
  
.foro-categoria h3 {
    font-family: Roboto;
    font-weight: 900;
    color: hsl(29, 38%, 28%);
    font-size: 1.1em;
    text-transform: uppercase;
  
}
  
.foro-descripcion {
    background-color: hsl(28, 41%, 58%);;
    padding: 10px 10px 10px 10px;
    border: 1px solid hsl(26, 34%, 53%);;

}
  
.foro-descripcion:first-of-type,:nth-of-type(2){
    border-bottom: none;
}
  
.foro-descripcion:last-of-type {
    border: 1px solid hsl(26, 34%, 53%);;
}
  
.foro-descripcion h4 {
    font-family: Roboto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    padding-bottom: .5em;
    color: #fff;
}
  
.foro-descripcion p:first-of-type {
    font-weight:400 ;
}
  
.foro-descripcion p:last-of-type {
    color: hsl(29, 38%, 28%);
}

/* INFO */

#infoseccion {
    background-color: #fff;
}

.infotextoinfo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 20px;
    text-align: center;
}

.infoparrafo {
    margin: .5rem;
    text-align: left;
}

/* MEDIA QUERIES */

/* ESCRITORIO */

@media (min-width: 1200px) {

    /* HEADER */

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

    .busqueda {
        display: none;
    }

    .nav-item img {
        width: 10px;
        justify-content: center;
    }

    header nav {
        position: relative;
    }

    .menu-btn {
        display: none;
    }

    header nav ul,
    header .menuVisible ul {
        display: flex;
        gap: .25em;
        position: relative;
        translate: 0;
        background-color: unset;
    }

    header nav ul li {
        min-width: 8em;
    }

    header nav ul li a {
        background-color: hsl(26, 34%, 53%);
        border-radius: .25em ;
        color: white;
        font-size: 1rem;
        width: auto;
        padding: .25em 1em;
        text-align: center;
        display: block; 
        margin-block-end: unset;
        border-block-end: unset;
    }

    header nav ul li a:hover {
        background-color: rgb(255, 179, 16);
        color: hsl(29, 38%, 28%);
        border-block-end: unset;
    }

    header .material-symbols-outlined {
        font-size: 20px;
        color: #fff;
        font-variation-settings:
        'FILL' 1,
        'wght' 700,
        'GRAD' 200,
        'opsz' 48
    }

    #palabraperfil {
        display: block;
    }

    #perfilboton {
        display: block;
    }

    #perfilfoto {
        display: none;
    }
    
/* INICIO */


    /* inicio noticias relacionadas */

    .otras {
        background-color: hsla(26, 34%, 53%, 0.603);
        padding: 10px;
        margin-left: 10rem;
        margin-right: 10rem;
        margin-top: 5px;
        border-radius: 0.5rem;
    }

    /* fin noticias relacionadas */

    .contenedorinicio1 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-left: 5rem;
        margin-right: 5rem;
    }

    .infopuente {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        box-sizing: border-box;
        width: 900px; /* Ancho deseado del contenedor */
        height: 300px; /* Alto deseado del contenedor */
    }

    .infopuente img {
        width: 1600px;
    }

    .infopuentetexto h1 p {
        text-align: left;
    }
    
    /* APARTADO FORO */

    .fragmentoforo {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #textoforoapartado h1 {
        font-size: 6rem;
    }

    #descrpapartado {
        font-size: 1rem;
        margin-bottom: .5rem;
    }

    /* CUADRADOS */

    .contenedor-cultura h1 {
        text-align: center;
        margin-top: 4rem;
    }

    .contenedor-cultura p {
        text-align: center;
        margin-bottom: 2rem;
    }

    #perfil {
        box-sizing: border-box;
        width: 300px; /* Ancho deseado del contenedor */
        height: 300px; /* Alto deseado del contenedor */
    }

    .cuadrados {
        display: flex;
        flex-direction: row;
        margin-top: 1rem;
    }

    .cuadrado {
        box-sizing: border-box;
        width: 300px; /* Ancho deseado del contenedor */
        height: 350px; /* Alto deseado del contenedor */
    }

    /* ÚLTIMO BLOQUE INICIO */
    
    .bloqueinicio3 {
        display: flex;
        flex-direction: row;
    }

    #museo-textos h1 {
        display: none;
    }

    .mapa{
        box-sizing: border-box;
        width: 1000px; /* Ancho deseado del contenedor */
        height: 453px;
    }

    #tituloextra1 {
        display: block;
        text-align: center;
        margin: 3rem;
        font-size: 4rem;
    }

    .acumar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .acumar h1 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .acumar p {
        margin-left: 5rem;
        margin-right: 5rem;
    }

    .videoacumar {
        width: 70%;
        height: 70%;
        border: none;
        aspect-ratio: 16/9;
    }

/* NOTICIAS */

    #mainnoticias { 
        margin-left: 10rem;
        margin-right: 10rem;
    }

    #titulonoticia h1 {
        font-size: 4rem;
        text-align: center;
    }

    #titulonoticia br {
        display: none;
    }

    #titulonoticia h6 {
        margin-left: 8rem;
    }

    #titulonoticia p {
        margin-left: 8rem;
    }

    .contenedoranoticia {
        margin-left: 10rem;
        margin-right: 10rem;
    }

    .fichanoticia {
        margin-left: 20rem;
        margin-right: 20rem;
    }

/* NOVELAS */

    #textooculto1 {
        display: block;
    }

    .bloque1novelas {
        display: flex;
        flex-direction: row;
        margin: 0;
        padding: 0;
        border: 0;
        gap: 2rem;
    }

    .novelasdestacado {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        box-sizing: border-box;
        width: 650px; /* Ancho deseado del contenedor */
        height: 300px; /* Alto deseado del contenedor */
    }

    .contenedorminidestacado {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }

    .contenedorminidestacado img {
        width: 300px; /* Ancho deseado del contenedor */
        height: 300px;
    }
    
    .contenedorminidestacado h3 {
        text-align: left;
    }

    .contenedorminidestacado p {
        text-align: left;
    }


    /* Apartado nuevas secciones novelas */

    #novelas1 {
        background-color: rgb(238, 139, 46);
        margin: 0;
        border: 0;
    }

    #novelas2 {
        background-color: rgb(26, 161, 143);
        margin: 0;
        border: 0;
    }

    .cuadradonovelas {
        background-color: white;
        padding: 2em;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        border-radius: 0.5rem;
        width: 330px; /* Ancho deseado del contenedor */
        height: 330px; /* Alto deseado del contenedor */
    } 

    .img-cuadradonovela .material-symbols-outlined {
        color: hsl(0, 0%, 100%);
        font-variation-settings:
        'FILL' 1,
        'wght' 700,
        'GRAD' 200,
        'opsz' 48;
        font-size: 10rem;
        margin-left: 3rem;
    }

    .texto-culturanovelas {
        text-align: center;
        margin-top: 1rem;
    }

    .nuevosnovelas {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        margin-top: 2rem;
    }

/* FIN Apartado nuevas secciones novelas */

/* PELÍCULAS */

    .destacadopelis {
        text-align: center;
    }

    .destacadopelis h2 {
        font-size: 4rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .destacadopelis p {
        margin-left: 34rem;
        margin-right: 35rem;
    }
    
    .textodestacadopelis {
        margin-bottom: 7rem;
    }

    .videopelicula {
        width: 100vw;
        aspect-ratio: 16/9;
    }

    .inferiormusica {
        display: flex;
        flex-direction: row;
    }

    .audiovisual {
        background-color: rgb(225, 205, 248);
        margin: 2rem;
        border-radius: 0.5rem;
        text-align: center;
    }
    
    .audiovisual ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .audiovisual li {
        margin-bottom: 0rem;
    }

    .cajapelicomendado {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        box-sizing: border-box;
        width: 400px; /* Ancho deseado del contenedor */
        height: 400px; /* Alto deseado del contenedor */
    }

/* MÚSICA */

    .bloquemusica1 {
        display: flex;
        flex-direction: row;
    }

    .lonuevo {
        width: 1000px; /* Ancho deseado del contenedor */
        height: 1000px; /* Alto deseado del contenedor */
    }

    .naks {
        padding: 10rem;
        width: 1000px; /* Ancho deseado del contenedor */
        height: 1000px; /* Alto deseado del contenedor */
    }

    .otrascanciones {
        margin: 2rem;
    }

    .otrascanciones h2 {
        text-align: center;
        font-size: 4rem;
        margin-top: 2rem;
    }

/* POESÍA */

    .textopoesia1 img {
        width: 400px;
    }

    .versus {
        font-size: 6rem;
    }

    .versusflex {
        display: flex;
        flex-direction: row;
        gap: 3rem;
        justify-content: center;
        align-items: center;
        margin-bottom: 4rem;
    }

    .vsgrande {
        font-size: 8rem;
    }

    .otrospoemas {
        display: flex;
        flex-direction: row;
    }

    #h3poema {
        margin-top: 3rem;
    }

    .destacadopoesia1 h3 {
        font-size: 5rem;
        margin-bottom: 0;
    }

    .destacadopoesia1 .material-symbols-outlined {
        color: rgb(255, 179, 16);
        font-variation-settings:
        'FILL' 1,
        'wght' 700,
        'GRAD' 200,
        'opsz' 48;
        font-size: 5rem;
    }

    .poesiacontenedor1 {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        margin-left: 25rem;
        margin-right: 25rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .poesiacontenedor1 img {
        width: 12rem;
        margin-bottom: 3rem;
    }

    .textopoesia1 {
        text-align: left;
    }

    .textopoesia1 p {
       margin-right: 8rem;
    }

/* INFO */

    .infotextoinfo {
        margin-left: 25rem;
        margin-right: 25rem;
    }

    .googlemapsinfo {
        width: 1000px;
        margin-left: -6rem;
    }

/* PERFIL */

    #cajausuario {
        padding: 5rem;
        margin-left: 25rem;
        margin-right: 25rem;
    }

/* ERROR */

    .error {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        align-items: center;
        height: 50vh; /* Ajusta la altura al 100% del viewport */
        width: 100%; /* Ajusta el ancho al 100% del contenedor padre */
        margin-left: 650px; /* Margen automático en todos los lados */
  }

}

