@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Playfair+Display:wght@700&display=swap');

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

body {
  font-family: "Inter", sans-serif;
  background-color: #f5f9fc;
  color: #333;
  line-height: 1.6;
  background-color: #f5f1e6;
  margin-top: 80px;
}

/* Header */
.site-header {
  background-color: #2f6b3f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.logo {
  height: 50px;
  width: auto;
}

.titulo {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  flex: 1;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Menú hamburguesa */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: block;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  left: 0;
  transition: all 0.25s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 10px;
}

.menu-icon span:nth-child(3) {
  top: 20px;
}


/* Navegación */
.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu-toggle:checked ~ .main-nav .nav-list {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #2f6b3f;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  animation: fadeIn 0.3s ease;
}



.nav-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/*QUIENES SOMOS*/ 
.seccion-texto {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #2f6b3f;
  max-width: 900px;
  margin: 0 auto 50px;
justify-content: space-evenly;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 1.5s ease forwards;
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.que {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScaleIn 0.8s ease forwards;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #2f6b3f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  text-align: center;
  margin-top: 20px;
}


@keyframes fadeScaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Sección de video */

.videominuto {
  background-color: #dbd8ce;
  padding: 20px;
}

.video-seccion {
  max-width: 1200px;
  margin: 0 auto 40px;
  
}

.video-seccion iframe {
  width: 100%;
  height: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

/* Secciones de contenido */
.seccion-contenido {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.seccion-titulo {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 50px);
  color: #2f6b3f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  animation: fadeSlideIn 1s ease forwards;
  opacity: 0;
}


/* Línea decorativa animada */
.seccion-titulo::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 4px;
  background: linear-gradient(to right, #e0af49, #2f6b3f);
  border-radius: 2px;
  animation: lineGrow 1s ease forwards 0.5s;
  opacity: 0;
}

/* Animaciones */
@keyframes fadeSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 300px;
    opacity: 1;
  }
}

.seccion-subtitulo {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 2.5vw, 30px);
  color: #e0af49;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  animation: popSlideIn 0.8s ease-out forwards;
  opacity: 0;
}


/* Animación sutil y elegante */
@keyframes popSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    letter-spacing: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 1px;
  }
}



/* Cards de películas */

.peli-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.peli-card {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
}

.peli-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.peli-image {
  overflow: hidden;
}

.peli-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.peli-info {
  padding: 15px;
}

.peli-info h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #2f6b3f;
  text-align: center;
}

/* Sección Federico */
.federico-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
  background-color: rgb(255, 255, 255);
}

.federico-imagen {
  margin: 0;
  text-align: center;
}

.federico-imagen img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: filter 0.3s ease;
}

.federico-imagen:hover img {
  filter: brightness(1.05);
}

.federico-texto p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  justify-content: space-evenly;
  padding: 2rem 1rem;
}

/* Botón Ver más */
.ver {
  display: block;
  background-color: #e0af49;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
  border-radius: 20px;
}

/*GENEROS DISRUPTIVOS */


.generos-botonera {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
  justify-items: center;
}

.generos-botonera a {
  text-decoration: none;
  color: #e0af49;
  background-color: #ffffff;
  border: 2px solid #e0af49;
  padding: 0.7em 1.5em;
  border-radius: 10px;
  font-weight: bold;
  width: 250px;
  height: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.generos-botonera a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: -100%;
  background: #e0af49;
  transition: left 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.generos-botonera a:hover {
  color: #fff;
  background-color: #e0af49;
}

.generos-botonera a:hover::after {
  left: 0;
}



/* Call to Action (CTA)*/
.cta {
  background-color: #44885a;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Botones */
.boton {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
}


/* Footer */
footer {
  background-color: #2f6b3f;
  color: white;
  padding: 70px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 160px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
  margin-left: 80px;
  margin-top: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: aliceblue;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-contacto p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.7;
}

/*HTML DE FEDERICO*/

/*Biografia de Federico*/

.biografia {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  animation: fadeIn 1.2s ease-in-out;
}

.biografia-imagen{
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.biografia-imagen2{
  width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.biografia-text {
  max-width: 700px;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2b2b2b;
}

.biografia-text em {
  font-style: italic;
  color: #385e48;
}
 
/*MMAPA*/

.mapa-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.mapa-card {
  background-color: #dbd8ce;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 100%;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  animation: fadeIn 1.2s ease-in-out;
}

.direccion {
  font-size: 1.1rem;
  color: #2b2b2b;
  text-align: center;
}

.mapa-content iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/*LIBROS OBRAS DE FEDERICO*/


.libro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5px;
  justify-items: center;
  padding: 10px;
  border-radius: 10px;
}

.libro-card {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}

.libro-image img {
  width: 150px;
  border-radius: 10px;
  height: 220px;
}

.libro-titulo {
  font-size: 13px;
  color: #1a3d29;
}

/* Contacto */
.contacto-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;

}

.contacto-form label {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #2f6b3f;
  font-family: "Montserrat", sans-serif;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.contacto-boton {
  background-color: #2f6b3f;
  color: #ccc;
  border-radius: 20px;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/*PREGUNTAS FRECUENTES*/
.faq-contenedor {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.faq-item {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  margin-bottom: 30px;
}

.faq-question {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color:#e0af49 ; 
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color:  #2f6b3f;
}

.faq-answer {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #444;
  margin-top: 8px;
  line-height: 1.5;
  padding-left: 15px;
  border-left: 3px solid #2f6b3f;
}

.seccion-titulo.faq-titulo {
  font-size: 60px;
}

/*GENEROS DISRUPTIVOS!!!*/
.generos-disruptivos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.genero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.genero-box {
  background-color: #fefefe;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
 .genero-box {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-fill-mode: both;
  will-change: transform, opacity;
}

}

.genero-box:nth-child(1) { animation-delay: 0.1s; }
.genero-box:nth-child(2) { animation-delay: 0.3s; }
.genero-box:nth-child(3) { animation-delay: 0.5s; }
.genero-box:nth-child(4) { animation-delay: 0.7s; }

/* VIDEO POESÍA */
.genero-poesia {
  background: radial-gradient(circle at top left, #447548, #a6cea8);
  border: 2px dashed #2e5a3b;
  border-radius: 20px;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.genero-poesia:hover {
  animation: flotarPoesia 2.5s ease-in-out infinite;
  background: radial-gradient(circle at bottom right, #205e11, #99c07b);
  box-shadow: 0 16px 36px rgba(165, 204, 172, 0.35);
}

@keyframes flotarPoesia {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.genero-poesia::before {
  content: '✒️';
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  opacity: 0.4;
  transform: rotate(-15deg);
}

.genero-poesia h3 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #286635;
  font-size: 20px;
  margin-bottom: 5px;
}

.genero-poesia p {
  font-style: italic;
  color: #5a4a3c;
  font-size: 18px;
  line-height: 1.7;
}

/* EXPERIMENTAL */
.genero-experimental {
  background: #111;
  color: #e0af49;
  border-left: 10px solid #ff00ff;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.genero-experimental:hover h3 {
  animation: glitchEffect 0.4s steps(2, end) infinite;
}

@keyframes glitchEffect {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -1px); }
  100% { transform: translate(0); }
}

.genero-experimental h3 {
  color: #adff2f;
  margin-bottom: 15px;
}

/* LGBT+ */
.genero-lgbt {
  background: linear-gradient(45deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787);
  color: white;
  border-left: 10px solid white;
  text-shadow: 1px 1px 3px black;
}

.genero-lgbt:hover {
  animation: arcoirisFloat 2s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

@keyframes arcoirisFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.genero-lgbt h3 {
  color: white;
}

/* VANGUARDIA */
.genero-vanguardia {
  background: #fffaf5;
  border-left: 10px solid #d30000;
  box-shadow: -8px 8px 0 #000;
  clip-path: polygon(0% 5%, 95% 0%, 100% 100%, 5% 95%);
}

.genero-vanguardia h3 {
  color: #d30000;
}

.genero-vanguardia:hover {
  animation: swingVanguardia 1s ease-in-out infinite;
  background: #fff2e5;
  box-shadow: -12px 12px 0 #000;
}

@keyframes swingVanguardia {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(1.5deg); }
  100% { transform: rotate(0deg); }
}

/* Enlaces */
.genero-box a {
  text-decoration: none;
  color: inherit;
}

/* FadeIn al aparecer */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .genero-grid {
    grid-template-columns: 1fr;
  }
}



/*MOTIVOS GENEROS*/

.generos-intro {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.motivos-disruptivos {
  margin: 40px 0;
  text-align: center;
}

.motivos-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #2f6b3f;
  margin-bottom: 30px;
}

.motivos-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.motivo-card {
  background: #f5f9f5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.motivo-card:hover {
  transform: translateY(-5px);
}

.motivo-card img {
  width: 60px;
  margin-bottom: 10px;
}

.motivo-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #2f6b3f;
  margin-bottom: 8px;
}

.motivo-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
}

/*SCROLL*/
/* Estilos generales */
.h-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  margin-bottom: 20px;
  height: 320px; /* más alto para imágenes grandes */
}

.genero-img {
  display: inline-block;
  width: 400px;  /* más ancho */
  height: 300px; /* más alto */
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.genero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6p
}

/* Animación que mueve horizontalmente las imágenes */

.wrap {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.genero-img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.genero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.8);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

/*VIDEO POESIA*/

/* TIPOGRAFÍAS - usa estas fuentes en tu proyecto o desde Google Fonts:
   "Playfair Display" para títulos y "Cormorant Garamond" para textos */



body.cine-poesia {
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  background-color:#e9f5ee;
  color: #2E3D2F;
  overflow-x: hidden;
}

/* ===== HERO VERDE ===== */
.hero-poesia {
   background: linear-gradient(to bottom, rgba(169,203,162,0.3), rgba(231,239,231,0.95)),
              url('https://www.bne.es/sites/default/files/repositorio-imagenes/El_p%C3%BAblico_Manuscrito_drama_en_veinte_cuadros_y_un_asesinato_65.jpg') center/cover no-repeat;
  height: 40vh;
  width: 110%px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.hero-texto h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: #4D775A;
  margin-bottom: 12px;
}
.hero-cita {
  font-size: 22px;
  font-style: italic;
  color: #2E3D2F;
}
.hero-cita span {
  font-size: 18px;
  display: block;
  margin-top: 8px;
  color: #88B087;
}

/* ===== INTRO ===== */
.intro-poesia {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 60px auto;
  gap: 40px;
  align-items: center;
  font-family: 'Cormorant Garamond';
}
.intro-poesia .columna {
  flex: 1;
  font-size: 20px;
  color: #2E3D2F;
  padding: 0 20px;
}
.intro-poesia .columna.imagen img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(136,176,135,0.2);
}

/* ===== VIDEO ===== */
.video-seccion-poetica {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(77, 119, 90, 0.25);
  background: #e0eee0;
  margin-top: 30px;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  transition: filter 0.3s ease;
}

.video-responsive iframe:hover {
  filter: brightness(1.05) contrast(1.1);
}

/* ===== COLLAGE ===== */
.galeria-editorial {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.subtitulo-galeria {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #4D775A;
  margin-bottom: 40px;
  border-bottom: 2px solid #A9CBA2;
  padding-bottom: 6px;
  text-align: center;
}

.fila-imagenes {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.fila-1 img {
  flex: 1;
  max-width: 48%;
}

.fila-2 img {
  flex: 1;
  max-width: 30%;
}

.fila-imagenes img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(77, 119, 90, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fila-imagenes img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 20px rgba(77, 119, 90, 0.4);
}


/* ===== FRAGMENTOS FLUIDOS ===== */
.fragmentos-poesia-fino {
  max-width: 960px;
  margin: 100px auto 80px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.subtitulo-fragmento {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #4D775A;
  margin-bottom: 60px;
  letter-spacing: 2px;
  border-bottom: 2px solid #A9CBA2;
  display: inline-block;
  padding-bottom: 8px;
}
.verso-flotante {
  font-style: italic;
  font-size: 27px;
  color: #2E3D2F;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: versoIn 1s ease forwards;
}
.verso-flotante:nth-child(2) { animation-delay: 0.3s; }
.verso-flotante:nth-child(3) { animation-delay: 0.6s; }
.verso-flotante:nth-child(4) { animation-delay: 0.9s; }

@keyframes versoIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*COMUNIDAD*/

/*TITULO FORO*/
.foro-general {
  background-color: #e0af49; /* tono dorado suave */
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.nombre-general {
  margin: 0;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/*CHAT FORO*/
.foro-chat {
  max-width: 1100px;
  margin: 100px auto;
  padding: 40px;
  background-color: #fefbf6; /* tono cálido que se diferencia de #ffffff */
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1.2s ease-in-out;
  border: 1px solid #e9e1d0;
}

.chat-box {
  background-color: rgb(224, 175, 73,0.3); /* tono suave para el recuadro */
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #dde6dd;
  margin-top: 40px;
  margin-bottom: 2%;
}


.chat-mensajes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.mensaje {
  display: flex;
  width: 100%;
}

.mensaje-izq {
  justify-content: flex-start;
}

.mensaje-der {
  justify-content: flex-end;
}

.burbuja {
  background-color: #eaf5ec;
  color: #2f6b3f;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 70%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.4s ease forwards;
}

.mensaje-der .burbuja {
  background-color: #d6eadd;
  color: #1e3c29;
  border-bottom-right-radius: 4px;
}

.mensaje-izq .burbuja {
  border-bottom-left-radius: 4px;
}

.burbuja .autor {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.chat-form {
  display: flex;
  gap: 10px;
  align-items: center; /* 🔧 asegura alineación vertical */
}

.chat-form input {
  flex: 1;
  padding: 12px 16px;
  height: 48px; /* 🔥 altura fija */
  border: 2px solid #e0af49;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 20px;
}

.chat-form button {
  height: 48px; /* 🔥 igual que input */
  padding: 0 20px;
  background-color: #2f6b3f;
  color: white;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}


.chat-form button:hover {
  background-color: #3c8753;
}

/*DEBATES*/
.foro-debates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.debate-card {
  background-color: #fefefe;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.debate-card:hover {
  transform: translateY(-5px);
}

.debate-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.debate-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 15px 0 10px;
  color: #2f6b3f;
}

.debate-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 0 15px;
  color: #555;
  margin-bottom: 15px;
}

/*CINE EXPERIMENTAL*/

/* --- Cine Experimental Desestructurado --- */

.cine-experimental {
  color: #fff;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 30px;
  overflow: hidden;
}


.video-experimental .subtitulo-galeria {
  color: #e0af49;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-experimental .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  filter: hue-rotate(90deg) contrast(1.4);
  transform: rotate(1deg);
  margin-bottom: 60px;
}

.video-experimental .video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 0 30px #ff00ff88;
  border-radius: 12px;
}

.galeria-experimental .subtitulo-galeria {
  text-align: center;
  color: #e0af49;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 40px 0 20px;
  transform: skewX(-2deg);
}

.galeria-experimental .galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  transform: rotate(-1deg);
}

.galeria-experimental img {
  width: 100%;
  height: auto;
  filter: contrast(120%) hue-rotate(45deg) saturate(180%);
  transition: all 0.5s ease;
  transform: scale(1) rotate(-3deg);
  border: 2px dashed #e0af49;
}

.galeria-experimental img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: hue-rotate(180deg) contrast(1.5);
}

.cine-experimental-ejemplos {
  padding: 40px 20px;
  transform: skewY(-2deg);
}

.cine-experimental-ejemplos .subtitulo-galeria {
  text-align: center;
  color: #e0af49;
  font-size: 2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cine-experimental-ejemplos ul {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cine-experimental-ejemplos li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.cine-experimental-ejemplos li::before {
  content: "✴";
  position: absolute;
  left: 0;
  color: #ff00ff;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}


/* Efecto glitch */
@keyframes glitchEffect {
  0% {
    text-shadow: 2px 2px #0ff, -2px -2px #f0f;
  }
  25% {
    text-shadow: -1px 2px #f0f, 1px -1px #0ff;
  }
  50% {
    text-shadow: 2px -1px #f0f, -2px 1px #0ff;
  }
  75% {
    text-shadow: -2px 2px #0ff, 2px -2px #f0f;
  }
  100% {
    text-shadow: 2px 2px #0ff, -2px -2px #f0f;
  }
}

    .experimental-section {
      padding: 80px 40px;
      background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
      position: relative;
      overflow: hidden;
    }

    .experimental-title {
      font-size: 5rem;
      color: #2a8517;
      mix-blend-mode: difference;
      animation: glitch 1.2s infinite;
      text-align: center;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .experimental-text {
      max-width: 700px;
      margin: 40px auto;
      font-size: 1.2rem;
      line-height: 1.8;
      color: #ccc;
      transform: rotate(-1deg);
      filter: hue-rotate(45deg);
    }

    .moving-box {
      width: 150px;
      height: 150px;
      background: #f3c11d;
      position: absolute;
      top: 20%;
      left: 10%;
      mix-blend-mode: screen;
      animation: floatBox 6s ease-in-out infinite alternate;
      filter: blur(1px);
      border-radius: 100px;
    }

    @keyframes floatBox {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(300px, 200px) rotate(720deg); }
    }

    @keyframes glitch {
      0% { text-shadow: 2px 2px rgb(100, 155, 12), -2px -2px #f0f; }
      20% { text-shadow: -2px 0 #0ff, 2px 2px #ff0; }
      40% { text-shadow: 0 2px #c3cc4a, 0 -2px rgb(41, 112, 20); }
      60% { text-shadow: 3px -1px #0f0, -3px 1px #00f; }
      80% { text-shadow: -1px 3px rgb(54, 100, 17), 1px -3px rgb(202, 145, 23); }
      100% { text-shadow: 2px 2px #00f, -2px -2px #f0f; }
    }

    /* 🌀 Cajas móviles descontroladas */
/* 🌀 Cajas móviles descontroladas */
.caixa-movil {
  position: fixed;
  width: 120px;
  height: 120px;
  z-index: 1;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: difference;
}

.caja-1 {
  background: radial-gradient(circle, #eb0aff, #a80986);
  animation: boxMove1 18s infinite linear alternate;
}

.caja-2 {
  background: radial-gradient(circle, #adff2f, #195c1b);
  animation: boxMove2 24s infinite linear alternate-reverse;
}

.caja-3 {
  background: radial-gradient(circle, #b216fa, #3150ff);
  animation: boxMove3 30s infinite linear alternate;
}

@keyframes boxMove1 {
  0% { top: 10%; left: 5%; transform: scale(1) rotate(0deg); }
  50% { top: 60%; left: 80%; transform: scale(1.2) rotate(180deg); }
  100% { top: 90%; left: 10%; transform: scale(0.9) rotate(360deg); }
}

@keyframes boxMove2 {
  0% { top: 20%; left: 80%; transform: scale(1.2) rotate(0deg); }
  50% { top: 70%; left: 15%; transform: scale(1.4) rotate(-180deg); }
  100% { top: 5%; left: 90%; transform: scale(1) rotate(-360deg); }
}

@keyframes boxMove3 {
  0% { top: 10%; left: 20%; transform: scale(2) rotate(0deg); }
  50% { top: 60%; left: 80%; transform: scale(2.2) rotate(180deg); }
  100% { top: 90%; left: 10%; transform: scale(0.9) rotate(360deg); }
}


/* Letras sensibles al caos */
.cine-experimental .seccion-texto.exp,
.cine-experimental .subtitulo-galeria,
.cine-experimental-ejemplos li {
  transition: color 0.4s ease, text-shadow 0.4s ease;
  z-index: 2;
  position: relative;
}

/* Simulamos efecto cuando las cajas pasan cerca (por z-index y blending visual) */
.caixa-movil:hover ~ .experimental-contenedor .seccion-texto.exp,
.caixa-movil:hover ~ .experimental-contenedor .subtitulo-galeria,
.caixa-movil:hover ~ .experimental-contenedor .cine-experimental-ejemplos li {
  color: #0c6e11;
  text-shadow: 0 0 15px #cfa313, 0 0 30px #ff00ff;
}
/*CUADRO GÉNEROS */
/*CINE LGTB+*/
/* RESET */


/* HERO LGBT */
.lgbt-hero {
  background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787, #ffffff);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  text-transform: uppercase;
}

/* CONTEXTO */
.lgbt-contexto {
  background: rgb(18, 167, 4,0.6);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.lgbt-contexto h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.lgbt-contexto p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #000000;
}

/* PELÍCULAS */
.lgbt-peliculas {
  margin: 3rem auto;
  max-width: 1000px;
  padding: 1rem;
}

.lgbt-peliculas h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #ffda06;
}

.peliculas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.pelicula {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

.pelicula:hover {
  transform: translateY(-5px);
}

.pelicula img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.pelicula h3 {
  font-size: 1.1rem;
  padding: 0.5rem 1rem 0;
  color: #1a800d;
}

.pelicula p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #444;
}

/* REFERENTES */
.lgbt-referentes {
  padding: 3rem 1rem;
  background: rgb(255, 218, 6,0.6);
}

.lgbt-referentes h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #000000;
}

.referentes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.referente {
  background: #ffffff;
  border: 2px solid #ffa6c9;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.referente:hover {
  transform: scale(1.03);
}

.referente img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}

.referente h4 {
  font-size: 1.1rem;
  color: #2600ff;
}

.referente p {
  font-size: 0.85rem;
  color: #333;
}

.pelicula,
.referente {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 0 0px #e40303,
    0 2px 4px #ff8c00,
    0 5px 10px #ffed00,
    0 9px 15px #008026,
    0 12px 16px #004dff,
    0 15px 18px #750787;
}

.pelicula:hover,
.referente:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 10px #e40303,
    0 5px 10px #ff8c00,
    0 10px 15px #ffed00,
    0 15px 20px #008026,
    0 20px 25px #004dff,
    0 25px 25px #750787;
}

/*ANIMACIONES*/

/* 🌈 Fade-up animado para secciones */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lgbt-hero,
.lgbt-contexto,
.lgbt-peliculas,
.lgbt-referentes {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* Stagger animación en cada bloque */
.lgbt-contexto {
  animation-delay: 0.3s;
}

.lgbt-peliculas {
  animation-delay: 0.5s;
}

.lgbt-referentes {
  animation-delay: 0.8s;
}

@keyframes rainbowText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/*zoom imagenes*/
.pelicula img,
.referente img {
  transition: transform 0.5s ease;
}

.pelicula:hover img,
.referente:hover img {
  transform: scale(1.05);
}

/*CINE VANGUARIDA*/
/* -------------------- */
/* ESTÉTICA CINE VANGUARDIA */
/* -------------------- */

/* INTRO */

/* ---------------------------- */
/* BASE: Expresionismo Alemán  */
/* ---------------------------- */

body.pagina-vanguardia {
  background: linear-gradient(135deg, #fdfdfd 50%, #e6e6e6 50%);
  font-family: 'Montserrat', sans-serif;
  color: #111;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  margin-top: 80px;
}

/* ---------------------------- */
/* TÍTULO CENTRAL con sombra expresionista */
/* ---------------------------- */

.intro-vanguardia {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom right, #ffffff, #f5f5f5);
  padding: 2rem;
  
}

.intro-vanguardia h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #d10404;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  animation: entradaTitulo 1.2s ease-out forwards;
  opacity: 0;
}

.intro-vanguardia h2::after {
  content: attr(data-shadow);
  position: absolute;
  left: 8px;
  top: 8px;
  color: #3f0808;
  opacity: 0.6;
  transform: skew(-10deg, -10deg);
  z-index: -1;
}

.intro-vanguardia p {
  max-width: 700px;
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  margin-top: 2rem;
  line-height: 1.8;
}

/* 🎞️ Animación de entrada para el título principal */
@keyframes entradaTitulo {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.intro-vanguardia h2 {
  animation: entradaTitulo 1.2s ease-out forwards;
  opacity: 0; /* empieza invisible para que se anime */
}

/* 🎬 Animación de fade-in del subtítulo / texto */
@keyframes fadeInTexto {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-vanguardia p {
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  margin-top: 1.5rem;
  animation: fadeInTexto 1.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.6s;
}


/* ---------------------------- */
/* CARACTERÍSTICAS */
/* ---------------------------- */

.caracteristicas-vanguardia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.caracteristicas-vanguardia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

/* ESTILO DE CADA TARJETA */
.fragmento {
  background: #fffaf5; /* fondo más crema */
  padding: 2rem;
  position: relative;
  clip-path: polygon(0% 5%, 95% 0%, 100% 100%, 5% 95%);
  box-shadow: -8px 8px 0 #000;
  border: 2px solid #d30000;
  transition: transform 0.3s ease, background 0.3s ease;
}

.fragmento:hover {
  background: #fff1eb;
  transform: rotate(-1.5deg) scale(1.02);
}

/* TÍTULO con color + peso fuerte */
.fragmento h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.5px;
}

.fragmento h3::before {
  content: "✦";
  position: absolute;
  left: -1.6rem;
  top: 0;
  color: #d30000;
  font-size: 1.2rem;
}

/* TEXTO normal */
.fragmento p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Extra: animación en hover al borde izquierdo */
.fragmento::after {
  content: "";
  position: absolute;
}


/* ---------------------------- */
/* SECCIÓN PELÍCULAS */
/* ---------------------------- */

/* 🎥 Sección: Ejemplos de Cine Argentino Vanguardista */
.peliculas-argentinas {
  background: #e8e8e8;
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
  border-top: 6px double #111;
  border-bottom: 6px solid #d30000;
  box-shadow: inset 0 0 0 4px #111;
}

.peliculas-argentinas::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: #d30000;
  transform: rotate(45deg);
  opacity: 0.9;
  z-index: 0;
}

.peliculas-argentinas h3 {
  font-size: 2.2rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  border-bottom: 2px dashed #d30000;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.peliculas-argentinas ul {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  z-index: 2;
  position: relative;
}

.peliculas-argentinas li {
  margin-bottom: 2.5rem;
  padding-left: 3rem;
  position: relative;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #222;
  background: #fdfdfd;
}


/*RESPONSIVE */

/* Tablets pequeñas (576px y más) */
@media (min-width: 400px) {
  .header-container {
    padding: 12px 20px;
  }
  
  .titulo {
    font-size: 17px;
  }
  
  .logo {
    height: 45px;
  }
  
  .video-seccion iframe {
    height: 300px;
  }
  
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card-image img {
    height: 320px;
  }
  
  .card-info h3 {
    font-size: 15px;
  }
  
  .seccion-titulo {
    padding: 13px 18px;
  }
  
  .generos-botonera a {
    width: 220px;
    font-size: 15px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .biografia-imagen2 {
    max-width: 600px;
  }
  
  .mapa-content iframe {
    height: 300px;
  }

  .experimental-title {
  font-size: clamp(2rem, 8vw, 5rem); /* 🔄 Ajuste dinámico */
  color: #2a8517;
  mix-blend-mode: difference;
  animation: glitch 1.2s infinite;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

}

/* Tablets (768px y más) */
@media (min-width: 768px) {
  
  .header-container {
    padding: 15px 20px;
  }
  
  .titulo {
    font-size: 18px;
  }
  
  .logo {
    height: 50px;
  }
  
  .menu-icon {
    display: none;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    width: auto;
  }

  .nav-list li {
    border: none;
  }

  .nav-list a {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .video-seccion {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .video-seccion iframe {
    height: 400px;
  }
  
  .seccion-contenido {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .seccion-titulo {
    padding: 14px 20px;
    margin-bottom: 25px;
    margin-top: 20px;
  }
  
  
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .card-image img {
    height: 350px;
  }
  
  .card-info {
    padding: 14px;
  }
  
  .card-info h3 {
    font-size: 15px;
  }
  
  .federico-content {
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 25px;
    padding: 20px;
  }
  
  .federico-texto p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .generos-botonera {
    flex-direction: column;
     grid-template-columns: repeat(2, 1fr);
  }
  
  .generos-botonera a {
    width: 240px;
  }
  
  .cta {
    padding: 60px 20px;
  }
  
  .cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .cta-content p {
    font-size: 17px;
    margin-bottom: 25px;
    max-width: 80%;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }
  
  .footer-logo {
    text-align: left;
  }
  
  .footer-logo img {
  max-height: 120px;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto 20px auto;
}
  
  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    text-align: left;
    font-size: 17px;
  }
  
  .footer-links ul {
    text-align: left;
  }
  
  .footer-contacto {
    text-align: left;
  }
  
  .footer-contacto p {
    justify-content: flex-start;
  }
  
  .biografia {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }
  
  .biografia-imagen {
    max-width: 300px;
    flex-shrink: 0;
  }
  
  .biografia-imagen2 {
    max-width: 700px;
  }
  
  .biografia-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .mapa-card {
    max-width: 800px;
    padding: 2rem;
  }
  
  .mapa-content iframe {
    height: 350px;
  }
  
  .direccion {
    font-size: 1.05rem;
  }

.experimental-title {
    padding: 14px 20px;
    margin-bottom: 25px;
    margin-top: 20px;
  }

}


/* Desktop (1024px y más) */
@media (min-width: 1024px) {
  .titulo {
    font-size: 20px;
  }

  .nav-list a {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .video-seccion iframe {
    height: 450px;
  }
  
  .seccion-contenido {
    margin-bottom: 60px;
  }

  .seccion-titulo {
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  
  .seccion-titulo::after {
    width: 50px;
  }
  
  
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .card-image img {
    height: 380px;
  }
  
  .card-info {
    padding: 15px;
  }
  
  .card-info h3 {
    font-size: 16px;
  }
  
  .federico-content {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }
  
  .federico-texto p {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .generos-botonera a {
    width: 250px;
    padding: 0.7em 1.5em;
  }
  
  .cta {
    padding: 80px 0;
  }
  
  .cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
  }
  
  .boton {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .footer {
    padding: 70px 0 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .biografia-text {
    font-size: 1.1rem;
  }
  
  .mapa-card {
    max-width: 1000px;
  }
  
  .mapa-content iframe {
    height: 400px;
  }
  
  .direccion {
    font-size: 1.1rem;
  }
    .footer-logo img {
    height: 160px;
    margin-left: 80px;
    margin-top: 20px;
  }

}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20%;
  }

  .footer-logo img {
    max-height: 100px;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .footer-links,
  .footer-contacto {
    margin-bottom: 20px;
  }

  .footer-links h3,
  .footer-contacto h3 {
    text-align: center;
  }

  .footer-links ul {
    padding-left: 0;
  }

  .footer-links li,
  .footer-contacto p {
    text-align: center;
  }

    .generos-botonera {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  
}
/* Responsive: 2 columnas tablets grandes */
@media (max-width: 1130px) and (min-width: 601px) {
  .peli-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .peli-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: una columna para pantallas menores a 600px */
@media (max-width: 600px) {

  .que {
    font-size: 40px;
    padding: 0 10px;
    line-height: 1.2;
    max-width: 100%;
  }

  .generos-botonera {
    grid-template-columns: 1fr;
  }

  .generos-botonera a {
    width: 90%; /* Ocupa casi todo el ancho */
    max-width: 350px; /* No crece demasiado */
  }

  .generos-botonera a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(224, 175, 73, 0.5);

  }

   .chat-form {
    flex-direction: column;
    align-items: stretch;
  }

  .chat-form input,
  .chat-form button {
    width: 100%;
    margin-top: 10px;
  }

  .chat-form button {
    margin-top: 0; /* Ya lo tiene el input arriba */
  }

  .faq-contenedor {
    flex-direction: column;
  }

  .faq-item {
    flex: 1 1 100%;
  }

  .seccion-titulo.faq-titulo {
    font-size: 40px; /* opcional */
  }
  

   /* HERO */
  .hero-poesia {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 3rem 1rem;
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .hero-texto h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-cita {
    font-size: 16px;
  }

  .hero-cita span {
    font-size: 14px;
  }

  /* INTRO */
  .intro-poesia {
    flex-direction: column;
    padding: 0 10px;
    gap: 20px;
  }

  .intro-poesia .columna {
    font-size: 16px;
    padding: 0 10px;
  }

  /* VIDEO */
  .video-seccion-poetica {
    margin: 40px auto;
    padding: 0 10px;
  }

  .video-responsive {
    border-radius: 10px;
  }

  /* COLLAGE */
  .galeria-editorial {
    padding: 0 10px;
    margin: 60px auto;
  }

  .subtitulo-galeria {
    font-size: 24px;
  }

  .fila-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fila-1 img,
  .fila-2 img {
    max-width: 90% !important;
  }

  /* FRAGMENTOS */
  .fragmentos-poesia-fino {
    margin: 60px auto 40px;
    padding: 0 10px;
  }

  .subtitulo-fragmento {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .verso-flotante {
    font-size: 24px;
    margin-bottom: 24px;
  }
}


