/* Reset básico */
* {
  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;
}

/* Header */
.site-header {
  background-color: #2f6b3f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.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;
  text-align: center;

  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: 48px;
  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, 70px);
  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;
}

/* 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: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 20px;
}

.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; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 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: center;
  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: justify;
  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-section {
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 25px;
}

.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: 40px;
}

/*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-left: 10px solid #2f6b3f;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.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; }

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

.genero-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #2f6b3f;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.genero-box h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #2f6b3f;
  margin-top: 6px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.genero-box:hover h3 {
  transform: translateX(6px);
}

.genero-box:hover h3::after {
  width: 120px;
}
.genero-box p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}


/* Animación al aparecer */
@keyframes fadeUp {
  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;
  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 */
.h-scroll {
  overflow: hidden;
  padding: 1rem 0;
  margin-bottom: 20px;
}

.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*/

/* Sección Introductoria */
.intro {
  max-width: 900px;
  margin: 60px auto 40px auto;
  padding: 0 15px;
}

.seccion-titulo.poe {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #2f6b3f; /* Verde oscuro */
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.seccion-texto.poe {
  font-size: 18px;
  color: #444;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtítulos de las subsecciones */
.subtitulo-galeria {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #e0af49; 
  text-align: left;
  max-width: 900px;        
  margin: 50px auto 25px auto; 
  letter-spacing: 1.5px;
  border-bottom: 3px solid #2f6b3f;
  padding-bottom: 8px;
  display: block;          /* Ocupa todo el ancho disponible */
}


/* Contenedor del video para que sea responsive */
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 60px auto;
  box-shadow: 0 4px 15px rgba(47, 107, 63, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Galería de imágenes */
.galeria-poesia {
  max-width: 960px;
  margin: 0 auto 60px auto;
  padding: 0 10px;
}

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

.galeria-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(47, 107, 63, 0.35);
}

/* Lista de ejemplos destacados */
.cine-poesia-ejemplos {
  max-width: 900px; /* Igual que las otras secciones */
  margin: 0 auto 80px auto; /* centrado horizontal */
  padding: 0 15px; /* mismo padding horizontal que otras secciones */
  font-size: 17px;
  color: #555;
  line-height: 1.5;
}

.cine-poesia-ejemplos ul {
  list-style: none;
  padding-left: 0;
  max-width: 900px; /* Igual que el contenedor */
  margin: 0 auto;
}

.cine-poesia-ejemplos li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 25px;
  font-family: "Inter", sans-serif;
  color: #444;
}


.cine-poesia-ejemplos h3.subtitulo-galeria {
  margin-bottom: 25px;
}

.cine-poesia-ejemplos ul {
  list-style: none;
  padding-left: 0;
}

.cine-poesia-ejemplos li {
  margin-bottom: 18px;
  position: relative;
  padding-left: 25px;
  font-family: "Inter", sans-serif;
  color: #444;
}

.cine-poesia-ejemplos li strong {
  color: #2f6b3f;
  font-weight: 600;
}

/* Pequeño icono tipo bullet custom */
.cine-poesia-ejemplos li::before {
  content: "•";
  color: #e07b39;
  position: absolut
}


/*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;
  }
}

/* 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: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .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 {
    height: 100px;
    margin-left: 0;
  }
  
  .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;
  }
}

/* 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;
  }
}



