/* Reset simple */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px; /* entonces 1rem = 16px */
}
/* Estructura del contenedor principal */
body {
  font-family: sans-serif;
  background-color: #ffffff;
  font-family: 'Nunito Sans', Arial, sans-serif;
}
h2 {
  color: #1E2E45;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
}
p{
  line-height: 1.25;
  font-size: 1rem;
}
h3 {
  line-height: 1;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  font-size: 1.25rem;
}




/* Logo siempre fijo, no se mueve */
.logo-header {
  position: absolute;
  top: 3.05rem;
  left: 3.05rem;
  width: 3.81rem;
  z-index: 1100;
}

/* Botón hamburguesa sin contenido, ícono manejado por ::before */
.hamburguesa {
  position: fixed;
  top: 3.05rem;
  right: 3.05rem;
  width: 3.05rem;
  height: 3.05rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburguesa.visible {
  opacity: 1;
  pointer-events: all;
}

/* Ocultar cruz por defecto, mostrar hamburguesa */
.cruz-icono {
  display: none;
}

.hamburguesa-icono {
  display: block;
}

/* Al estar abierto, ocultar hamburguesa y mostrar cruz */
.hamburguesa.abierto .cruz-icono {
  display: block;
}

.hamburguesa.abierto .hamburguesa-icono {
  display: none;
}
.hamburguesa.forzar-visible {
  opacity: 1 !important;
  pointer-events: all !important;
}
.icono svg {
  width: 3.05rem;
  height: 3.05rem;
  transition: transform 0.3s ease;
}


/* Menú pantalla completa */
.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #E7E5E4;
  display: flex;
  flex-direction: column;

  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  padding: 5.96rem 3.05rem;
}

.menu-lateral.abierto {
  transform: translateY(0);
}

.menu-lateral a {
  font-size: 1.5rem;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: bold;
}




/* Todas las variantes aparecen igual: fade in */
.aparecer,
.aparecer-2,
.aparecer-3 {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.aparecer.visible,
.aparecer-2.visible,
.aparecer-3.visible {
  opacity: 1;
}




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

@media (max-width: 900px) {

  .hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 49px;
    min-height: 300px;
    height: 100vh;
    background-color: #1E2E45; /* fallback si no hay imagen */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-end;
  }
  .hero-top {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
  
/* Bloques (secciones) individuales */
.bloque {
  width: 100%;
  padding: 5.96rem 3.05rem;
  /* placeholder de altura para visualizar */
  min-height: 300px;
  background-color: #f2f2f2;

}
  .bloque.dolor .items-responsive{
  display:flex;
  flex-direction: column;
  gap: 16px;

  
}
  .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 3 columnas iguales */
  gap: 3rem; /* espacio entre items */
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0 ;
    align-items: start;   /* fuerza que cada item se alinee arriba */
  justify-items: stretch; /* opcional, ancho completo en su celda */
}
.carrusel-horizontal {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 0 24px;
  margin-bottom: 1.5rem;
    scrollbar-width: none;  
  -ms-overflow-style: none;
}
.carrusel-horizontal::-webkit-scrollbar {
  display: none;               /* Chrome, Safari, Edge */
}

.bloque.costo .carrusel {
  margin-right: -49px;
}
.pay-btn {
  display: none;
}

.lista-cer {
  padding-top: 2.44rem;
  display: flex;
  flex-direction: column;
  gap: 3.05rem; /* espacio entre items */
}

.linea-icono-timeline.visible {
  height: 100%; 
}
.timeline {
  display: flex;
  flex-direction: column;
}

.item-timeline {
  display: flex;
  align-items: stretch; /* 🔑 esto fuerza misma altura entre hijos */
}
.texto-timeline {
  padding-left: 1.56rem;
  padding-bottom: 4.76rem;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.25;
}
}
  .cta-bloques {
      margin: 0 auto;
  display: flex;       
    justify-content: center;
    overflow: visible;
    max-width: auto;  
  }

/* ====== Controles del carrusel (desktop) ====== */
.carousel-wrap { position: relative; }

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;           /* ocultas en mobile */
  border: none;
  background: rgba(0,0,0,0.08);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
}
.car-btn:hover { background: rgba(0,0,0,0.14); }
.car-btn.prev { left: 8px; }
.car-btn.next { right: 8px; }


@media (min-width: 901px) {




  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hero {
      display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  padding: 10rem 1rem;

  
}

.hero-top {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
max-width: 1100px;
    margin: 0 auto;
}

.wrap-dolor {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}
  .bloque.dolor .items-responsive{
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    /* si hay muchos ítems y querés que bajen a otra línea: */
    flex-wrap: wrap;
  }
  .bloque.dolor .items-responsive .item{
    flex: 1 1 0; /* ancho flexible por ítem */
  }
  .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
  gap: 3rem; /* espacio entre items */
  max-width: 1100px;
  margin: 0 auto;
    align-items: start;   /* fuerza que cada item se alinee arriba */
  justify-items: stretch; /* opcional, ancho completo en su celda */
}

  .car-btn { display: inline-block; }
  .car-btn[disabled]{ opacity: .35; pointer-events: none; }

.carousel-wrap{
  position: relative;
  overflow: hidden;
  max-width: 1100px; /* ← unidad */
  margin: 0 auto;    /* ← centra el carrusel en el contenedor */
}
  /* Si hubiera scroll-snap en algún contenedor, anularlo en el carrusel */
  .bloque.aprender,
  .bloque.aprender .wrap,
  .bloque.aprender .carousel-wrap,
  .bloque.aprender .carrusel-horizontal{
    scroll-snap-type: none !important;
    overscroll-behavior-x: contain;
  }

  /* El “reveal” NO aplica dentro del carrusel */
  .carousel-wrap .aparecer-3{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }


  .car-btn{ position:absolute; top:50%; transform:translateY(-50%);
    z-index:2; width:44px; height:44px; border:0; border-radius:999px;
    font-size:24px; line-height:44px; text-align:center; cursor:pointer;
    background:rgba(0,0,0,.08);
  }
  .car-btn.prev{ left:8px; }
  .car-btn.next{ right:8px; }



  .carrusel-horizontal::-webkit-scrollbar{ display:none; }

  .carrusel-horizontal .bloque-car{
    flex:0 0 calc((100% - 48px)/3);
    margin:0;
  }

    .carrusel-horizontal{
    display: flex;
    gap: 24px;
    padding: 0;
    overflow: visible;
    transition: transform .5s ease;
    will-change: transform;
    /* margin-right: 50px;  ← NO acá (si querés aire, ponelo en el contenedor de la sección) */
    margin-bottom: 1.5rem;
  }


/* CARRUSEL TARJETAS PRECIOS */

 .pay-carousel-wrap{
    position: relative;
    overflow: hidden;          /* recorta el track que se desliza */
  }
  .pay-btn{
    position:absolute; top:50%; transform:translateY(-50%);
    z-index:2; width:44px; height:44px; border:0; border-radius:999px;
    font-size:24px; line-height:44px; text-align:center; cursor:pointer;
    background:rgba(0,0,0,.08);
  }
  .pay-btn.prev{ left:8px; }
  .pay-btn.next{ right:8px; }

  /* TRACK: sin scroll ni snap; se mueve con transform */
  .pay-carousel-wrap .carrusel{
    display:flex;
    gap: 24px;                 /* usa este gap para el cálculo del paso */
    padding: 0;                /* ⚠ no pongas padding aquí */
    overflow: visible;
    transition: transform .5s ease;
    will-change: transform;
  }

  /* 3 tarjetas visibles exactas */
  .pay-carousel-wrap .carrusel .tarjeta{
    flex: 0 0 calc((100% - 48px) / 3);  /* 3 columnas, 2 gaps de 24px */

  }
  .bloque.costo .carrusel {
  margin-right: 49px;
}
  .lista-cer {
  padding-top: 2.44rem;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
  gap: 3.05rem;
}

.cert {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.titulo-cer.aparecer.visible {
    text-align: center;
}
.porque .icono img {
  height: 75px;          /* alto fijo */
  width: auto !important; /* ancho automático, mantiene proporción */
  max-width: none;        /* evita que el max-width:100% lo achique */
  display: block;
}

.contenedor-bloque {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 0;
}



}

@media (min-width: 901px) {
  .bloque-timeline .icono-timeline {
    flex-direction: row;   /* número + línea en fila, no columna */
    align-items: center;   /* centrar verticalmente el número con la línea */
    width: auto;           /* que no limite a 3rem, deja fluir */
    min-width: 3rem;       /* asegura que el número no se achique demasiado */
  }

  .bloque-timeline .linea-icono-timeline {
    width: clamp(72px, 18vw, 260px); /* línea horizontal */
    height: 2px;                     /* grosor de la línea */
    margin-top: 0;                   /* anula el margen vertical de mobile */
  }
  .bloque-timeline .timeline {
    display: flex;
    flex-wrap: nowrap;   /* clave: no bajar a otra línea */
  }

  .item-timeline {
  flex-direction: column; /* apila los hijos en columna */
  align-items: flex-start; /* alinear a la izquierda */
  min-width: 0; 
  flex: 1 1 0; 
}
.texto-timeline {
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.25;
}


}

.hero h1 { font-size: 3rem; margin-bottom: .5rem; color: #F9F9FF;}
.hero p{
    font-size: 1rem;
    line-height: 1;
    color: #E7E5E4;
}
.hero b{
    color: #4D77FF;
}

.hero .boton-inscribirme {
  display: inline-block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #FFA500; color: #F9FAFB;
  border-radius: 8px;
  transition: background-color 0.3s ease;
    animation: pulso-suave 2.5s infinite;
  animation-delay: 1s; /* para que no aparezca de golpe */
  transition: transform 0.2s ease-in-out;
}




.rotador-texto {
  position: relative;
  padding-bottom: 1rem;
  overflow: hidden;
}

.rotador-texto p {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin: 0;
}

.rotador-texto p.texto-activo {
  opacity: 1;
  transform: translateY(0%);
  position: absolute;
}



.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Clase que activa la animación */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}






.boton-secundario {
  color:#E7E5E4;
  font-weight: 600;
}
.hero .boton-inscribirme:hover {
  background-color: #e3934f; /* tono más oscuro al pasar el mouse */
}


.wrap-dolor{
    display: flex;
  flex-direction: column;

  gap: 25px;
}
.dolor h2 {
  text-align: center;
}
.dolor .item {
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  padding: 1.56rem;
}
.dolor .item-contenido {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
}

.dolor .icono {
  flex-shrink: 0; /* evita que el ícono se estire */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.porque {
  display: flex;
  flex-direction: column;
    text-align: center;
    gap: 2rem;
}

/* .porque .item {
  padding: 2.44rem 1rem;
  border-top: 1px solid #ccc;
}


.porque .item:first-child {
  border-top: none;
  padding: 1rem 1rem;
} */

/* Excepción: entre el 1° y 2° no debe haber borde */
.porque .sin-borde-superior {
  border-top: none;
}
.porque .item{
    display: flex;
  flex-direction: column;

}
.porque .icono {
  width:5.96rem;
  
  flex-shrink: 0;
  margin: auto;
  padding-bottom: 0.8rem;

}

.porque .icono svg {
  width: 100%;
  height: 100%;

}
.porque .icono svg path {
  fill: #2A9D8F !important;
}

.porque .titulo {
  font-weight: 900;
  font-size: 1.25;
}

.aprender {
  padding-right: 0;
  background-color: #E7E5E4;
}
.aprender .titulo, .aprender .texto {
  padding-right: 49px;
  padding-bottom: 0.8rem;
  text-align: center;
  line-height: 1;
}


.bloque-car {
  flex: 0 0 80%; /* Ocupa el 80% del ancho visible */
  scroll-snap-align: start;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
    display: flex; /* Para que los hijos crezcan */
  align-items: stretch;
  margin-top: 1rem;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
}

.contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  width: 100%;
}

.contenido .icono-car {
  width:5.96rem;
  
  flex-shrink: 0;
  margin: auto;
  padding-bottom: 1rem;

}

.contenido .icono-car svg {
  width: 100%;
  height: 100%;

}
.contenido .icono-car svg path {
  fill: #1E2E45 !important;
}
.contenido .titulo-car, .contenido .texto-car {
  line-height: 1;
}
.contenido .texto-car {
  padding-top: 0.51rem;
}
.bloque-cer {
  background-color: #fff;
}


.item-cer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

}

.icono-cer {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 1px;
}

.texto-cer {
  flex: 1;
  font-size: 1rem;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  
}

.icono-cer svg path {
  fill: #2A9D8F !important;
}
.titulo-cer h2 {
  padding-bottom: 0.64rem;
}

.logros {
  background-color: #E7E5E4;
  position: relative;
}
.logros h2{
  padding-bottom: 2.44rem;
}
.logro {
  position: relative;
  margin-bottom: 2.4rem;
  padding-right: 1rem;
  
}

.texto-logro {
  position: relative;
  z-index: 2;
}

.texto-logro h3 {
  font-size: 1.56rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.texto-logro .verde {
  color: #4D77FF;
  font-size: 3.81rem;
  font-weight: 800;
}



.icono-fondo {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4rem;
  color: #D0D0D0;
  opacity: 0.2;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  width:5.96rem;
}

.icono-fondo svg {
  width: 100%;
  height: 100%;

}
.header-inner {
    position: absolute;
}

.ins-h2 {
  color: #4D77FF;
  margin-top: 0.4rem;
}


.tarjetas {
  border-top: 1px solid #ccc;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.titulo-grupo h3{
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.items-grupo {
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* espacio entre ítems */
}

.item-grupo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icono-item-grupo {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4D77FF;
}

.texto-item-grupo {
  font-size: 1rem;
  color: #1A1A1A;
  line-height: 1.4;
  /* No uses align-items ni justify-content aquí */
}


.icono-item-grupo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icono-item-grupo svg path {
  fill: #6D6D6D !important; /* Solo si querés sobreescribir colores internos */
}

.grupo {
  display: inline-block; /* 🟢 se ajusta al contenido */
  padding: 0.4rem 0.6rem;  
  border-radius: 6px;
  background-color: #1A1A1A;
  color: #E7E5E4;
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}

.carrusel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  


  -webkit-overflow-scrolling: touch;
}

.tarjeta {
  flex: 0 0 75%; /* ✅ ocupa el 80% del ancho visible */
  scroll-snap-align: start;
  border-radius: 12px;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-height: 180px; /* opcional para dar altura mínima */
  margin-top: 1.95rem;
}





.tarjeta.t-pri {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.bagde {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1A1A1A;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 0 0.5rem;
}
.bagde-destacado {
  background-color: #4D77FF;
}

.titulo-tarjeta {
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 1;
  color: #1E2E45;
  margin-top: 1.25rem;
}
.titulo-tarjeta-subtitulo {
  font-size: 0.8rem;
  font-style: italic;
  color: #ccc;
  font-weight: 500;
  line-height: 1.25; /* puede ser 1 o 0.9 si querés más compacto */
}

.bloque-titulo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem; /* control del espacio entre título y subtítulo */

}
.subtitulo-tarjeta {
  font-size: 1rem;
}

.bloque-precio-tarjeta {
  display: flex;
  flex-direction: column;
}

.precio-tachada-tarjeta {
  text-decoration: line-through;
  color: #6D6D6D;
  font-size: 1rem;
}

.precio-tarjeta {
  font-size: 2.44rem;
  font-weight: 900;
  color: #000;
}

.aclaracion-precio-tarjeta {
  font-size: 1rem;
  font-style: italic;
  color: #444;
}

.item-tarjeta ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bloque-promo-especial {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.icono-promo-especial {
  font-size: 2rem;
  color: #4D77FF;
  width: 3.05rem;
  margin: auto;
}

.icono-promo-especial svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.titulo-promo-especial {
  color: #4D77FF;
  font-size: 1.25rem;
  font-weight: 800;
}

.subtitulo-promo-especial {
  font-size: 0.9rem;
}

.precio-final-promo-especial .titulo-precio-final-promo-especial {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A1A1A;
}

.numero-precio-final-promo-especial {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1A1A1A;
}

.contador-precio-final-promo-especial {
  font-size: 0.8rem;
  color: #E74C3C;
  font-style: italic;
}

.boton-pri {
  margin-top: 0.75rem;
background: #FFA500; color: #F9FAFB;
  font-weight: 600;
  padding: 1rem 5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
    animation: pulso-suave 2.5s infinite;
  animation-delay: 1s; /* para que no aparezca de golpe */
  transition: transform 0.2s ease-in-out;
}


.aprender .cta-especial {
  padding-right: 3.05rem;
  margin-top: 1.95rem;
}


.boton-sec {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #6D6D6D;
  text-decoration: underline;
  cursor: pointer;
}

.bloque-timeline {
  background-color: #E7E5E4;
}
.p-subtitulo {
  margin-top: 0.3rem;
  margin-bottom: 3rem;
  font-size: 1.25rem;
}




.icono-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3rem;
}

.numero-icono-timeline {
  width: 3.81rem;
  height: 3.81rem;
  border-radius: 10px;
  background-color: #4D77FF;
  color: white;
  font-weight: 700;
  font-size: 2.44rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.linea-icono-timeline {
  width: 2px;
  background-color: #4D77FF;
  height: 0;
  transition: height 1.4s ease-in-out;
}











.faq {
  display: flex;
  flex-direction: column;
  gap: 0.54rem;
}

.faq-item {
  background-color: #E7E5E4;
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

.faq-pregunta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-pregunta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E2E45;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg); /* de + a – */
}

.faq-respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.open .faq-respuesta {
  max-height: 200px; /* Ajustable si querés más contenido */
  opacity: 1;
  margin-top: 0.5rem;
}

.faq-respuesta p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1A1A1A;
}

.final {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background-color: #1E2E45;
}
.final h2 {
  color: #E7E5E4;
}
.final .h2-verde{
  color: #4D77FF;
  margin-top: 0.6rem;
}
.whatsApp-cta {
    display: flex;
  flex-direction: column;
  gap: 0.40rem;
  line-height: 1;

  margin-top: 0.75rem;
}
.faqs .whatsApp-cta {
  margin-top: 2.44rem;
}
.whatsApp-cta p {
  line-height: 1;
}
.whatsapp-link-centrado {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* espacio entre ícono y texto */
  text-align: center;
}

.icono-whatsapp svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;

}

.texto-whatsapp {
  font-size: 0.95rem;
  color: #4D77FF;
  text-decoration: underline;
  font-style: italic;
  font-weight: 500;
}
.icono-whatsapp svg path {
  fill: #2A9D8F !important;
}

.footer-logo {
  display: flex;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 2.44rem;
  opacity: 0.9;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-redes a svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #4D77FF;
  transition: opacity 0.3s;
}
.footer-redes a:hover svg {
  opacity: 0.7;
}
.footer {
  background-color: #1a1a1a;
  color: #6D6D6D;
  font-size: 0.8rem;
  padding: 1.96rem 3.05rem;
}

.footer-links {
  margin-bottom: 1rem;
    display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-contacto a {
  color: #4D77FF;
  text-decoration: underline;
  font-weight: 500;
}

.footer-legales p {
  margin: 0.2rem 0;
  line-height: 1.3;
}
.footer-contacto {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.4;
    display: flex;
  flex-direction: column;
  gap: 0.8rem;
}


.footer-contacto a {
  color: #E7E5E4;
  text-decoration: none;
  border-bottom: 1px dotted #4D77FF;
  transition: color 0.3s;
}

.footer-contacto a:hover {
  color: #4D77FF;
}
