/* ============================================================
   6. HERO SECTION
   ============================================================ */
.andes-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fallback: texto blanco legible aunque falte la imagen */
  background: linear-gradient(135deg, #0e2666 0%, #336198 60%, #3f79ac 100%);
}

/* IMAGEN HERO DESKTOP: máximo 500kb, 1440×900px
   IMAGEN HERO TABLET: máximo 250kb, 1024×600px
   IMAGEN HERO MOBILE: máximo 150kb, 480×700px
   Exportar desde Figma: frame-home-inicio > sección hero
   Convertir a WebP con: Squoosh (squoosh.app) */
.andes-hero__imagen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.andes-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 53, 60, 0.18);
  z-index: 1;
}

.andes-hero__contenido {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--espacio-md);
  max-width: 900px;
  margin-inline: auto;
}

.andes-hero__titulo {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--color-blanco);
  line-height: 1.1;
  margin-bottom: var(--espacio-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.andes-hero__subtitulo {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--espacio-lg);
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  display: block;
}

.andes-hero__cta {
  display: flex;
  gap: var(--espacio-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--espacio-xl);
}




/* ============================================================
   7. GLASSMORPHISM PILLS — barra de servicios hero
   ============================================================ */
.andes-hero-pills {
  position: absolute;
  bottom: 12rem;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 var(--espacio-md) 0;
}

/* Figma: Frame 130 — 1265×51px, bg #FFF, radius 20px,
   padding 8px top/bottom · 30px left/right, gap 20px */
.andes-hero-pills__barra {
  max-width: 1265px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 20px;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Figma: Frame 119 — bg #FFF, radius 30px, padding 10px,
   Montserrat 600 12px #000000 */
.andes-hero-pills__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 10px;
  border-radius: 30px;
  white-space: nowrap;
  transition: box-shadow 0.2s, transform 0.2s;
}

.andes-hero-pills__item:hover {
  background: #A8CC11 !important;
  color: #0E2666 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.andes-hero-pills__item svg,
.andes-hero-pills__item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.andes-hero-pills__separador {
  display: none;
}


/* ============================================================
   8. SECCIÓN CLIENTES / LOGOS
   ============================================================ */
.andes-clientes {
  background: var(--color-blanco);
  padding-block: var(--espacio-xl);
  text-align: center;
}

.andes-clientes__titulo {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-azul-oscuro);
  margin-bottom: var(--espacio-lg);
}

.andes-clientes__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.andes-cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: 130px !important;
  height: 50px !important;
  flex-shrink: 0;
}

.andes-cliente-logo img {
  width: 130px !important;
  height: 50px !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: multiply !important;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}

.andes-cliente-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  mix-blend-mode: normal !important;
}

@media (max-width: 1024px) {
  .andes-clientes__grid {
    gap: 1.5rem 2.5rem;
  }
  .andes-cliente-logo {
    width: 110px !important;
    height: 42px !important;
  }
  .andes-cliente-logo img {
    width: 110px !important;
    height: 42px !important;
  }
}

@media (max-width: 1024px) {
  .andes-clientes__grid {
    gap: 1.5rem 2.5rem;
  }
  .andes-cliente-logo {
    width: 110px !important;
    height: 42px !important;
  }
  .andes-cliente-logo img {
    width: 110px !important;
    height: 42px !important;
  }
  /* Hero tablet */
  .andes-hero {
    min-height: max(100svh, 900px) !important;
  }
  .andes-hero__imagen {
    height: 100% !important;
    object-position: center top !important;
  }
}


@media (max-width: 480px) {
  .andes-clientes__grid {
    gap: 1rem 1.5rem;
    padding-inline: 1rem;
  }
  .andes-cliente-logo {
    width: 85px !important;
    height: 34px !important;
  }
  .andes-cliente-logo img {
    width: 85px !important;
    height: 34px !important;
  }
}


/* ============================================================
   9. SECCIÓN SERVICIOS + ACORDEÓN
   ============================================================ */
.andes-servicios {
  background: var(--color-blanco);
  padding-block: var(--espacio-xl);
}

.andes-servicios__inner {
  max-width: var(--max-width-inner);
  margin-inline: auto;
  padding-inline: var(--espacio-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--espacio-xl);
  align-items: center;
}

/* IMAGEN SERVICIOS DESKTOP: máximo 300kb, 560×600px
   IMAGEN SERVICIOS TABLET: máximo 150kb, 400×400px
   IMAGEN SERVICIOS MOBILE: máximo 80kb, 375×280px
   Exportar desde Figma: frame-home-inicio > sección servicios > imagen izquierda */
.andes-servicios__imagen {
  border-radius: var(--radio-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
}

.andes-servicios__imagen img,
.andes-servicios__imagen picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.andes-servicios__contenido {}

.andes-servicios__etiqueta {
  display: inline-block;
  background: var(--color-fondo-seccion);
  color: var(--color-azul-medio);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: var(--radio-full);
  margin-bottom: var(--espacio-sm);
}

/* ============================================================
   ACORDEÓN SERVICIOS — TODOS LOS BREAKPOINTS
   ============================================================ */

.andes-acordeon {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.andes-acordeon__item {
  border-bottom: 1px solid #E8E8E8;
  background: #FFFFFF;
  width: 100%;
}

.andes-acordeon__item:first-child {
  border-top: 1px solid #E8E8E8;
}

.andes-acordeon__item--activo {
  background: #FFFFFF;
  box-shadow: none;
}

.andes-acordeon__cabecera {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 1.125rem 0;
  background: #FFFFFF !important;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: right;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2D353C !important;
  transition: all 0.3s ease;
  gap: 1rem;
}

.andes-acordeon__item--activo .andes-acordeon__cabecera {
  color: #2D353C !important;
  font-weight: 600;
}

.andes-acordeon__titulo-texto {
  flex: 1;
  text-align: right;
}

.andes-acordeon__plus {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 6px;
  border: 1.5px solid #A8CC11;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #FFFFFF;
  background: #A8CC11;
  transition: all 0.3s ease;
  font-weight: 300;
}

.andes-acordeon__plus::before {
  content: '+';
  display: block;
  line-height: 1;
}

.andes-acordeon__item--activo .andes-acordeon__plus::before {
  content: '−';
  display: block;
  line-height: 1;
}

.andes-acordeon__item:not(.andes-acordeon__item--activo) .andes-acordeon__plus {
  background: transparent;
  border-color: #CCCCCC;
  color: #CCCCCC;
}

.andes-acordeon__item--activo .andes-acordeon__plus {
  background: #A8CC11;
  border-color: #A8CC11;
  color: #FFFFFF;
}

.andes-acordeon__cuerpo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  width: 100%;
}

.andes-acordeon__item--activo .andes-acordeon__cuerpo {
  max-height: 300px;
}

.andes-acordeon__texto {
  padding: 0 0 1.25rem 2.5rem;
  font-size: 0.875rem;
  color: #939AA2;
  line-height: 1.7;
  text-align: right;
}

.andes-acordeon__texto a {
  color: #336198;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.andes-acordeon__texto a:hover {
  color: #0E2666;
}

.andes-acordeon__icono-servicio {
  display: none;
}

/* Desktop grande 1025px+ */
@media (min-width: 1025px) {
  .andes-servicios__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .andes-acordeon__cabecera {
    font-size: 0.9375rem;
    padding: 1.125rem 0;
  }
}

/* Tablet grande 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .andes-servicios__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .andes-servicios__imagen {
    max-height: 300px !important;
    aspect-ratio: 16/7 !important;
  }
  .andes-acordeon__cabecera {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }
  .andes-acordeon__texto {
    font-size: 0.875rem;
    padding: 0 0 1rem 2.5rem;
  }
}

/* Tablet 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .andes-servicios__inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .andes-servicios__imagen {
    display: none !important;
  }
  .andes-acordeon__cabecera {
    font-size: 0.875rem;
    padding: 1rem 0;
  }
  .andes-acordeon__titulo-texto {
    text-align: right;
  }
  .andes-acordeon__texto {
    font-size: 0.8125rem;
    padding: 0 0 1rem 2rem;
  }
  .andes-titulo-seccion {
    font-size: 1.5rem !important;
  }
  .andes-servicios__etiqueta {
    font-size: 0.75rem;
  }
}

/* Mobile max 480px */
@media (max-width: 480px) {
  .andes-servicios__inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding-inline: 1rem !important;
  }
  .andes-servicios__imagen {
    display: block !important;
    width: 100% !important;
    max-height: 280px !important;
    aspect-ratio: 4/3 !important;
  }
  #servicios-titulo {
    white-space: normal !important;
    font-size: 1.1rem !important;
  }
  .andes-servicios__contenido > p {
    padding-left: 0 !important;
    font-size: 0.875rem !important;
  }
  .andes-acordeon__cabecera {
    font-size: 0.8125rem !important;
    padding: 0.875rem 0 !important;
    gap: 0.75rem !important;
  }
  .andes-acordeon__titulo-texto {
    text-align: right;
    font-size: 0.8125rem;
  }
  .andes-acordeon__plus {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 1rem !important;
  }
  .andes-acordeon__texto {
    font-size: 0.8125rem !important;
    padding: 0 0 1rem 2rem !important;
    line-height: 1.6 !important;
  }
  .andes-titulo-seccion {
    font-size: 1.375rem !important;
  }
  .andes-servicios__etiqueta {
    font-size: 0.6875rem !important;
  }
  .andes-acordeon__item--activo .andes-acordeon__cuerpo {
    max-height: 400px;
  }
}


/* ============================================================
   10. SECCIÓN ECOSISTEMA / CARRUSEL
   ============================================================ */
.andes-ecosistema {
  background: var(--color-fondo-seccion);
  padding-block: var(--espacio-xl);
  overflow: hidden;
}

.andes-ecosistema__header {
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}

.andes-ecosistema__carrusel-wrap {
  position: relative;
  max-width: var(--max-width-inner);
  margin-inline: auto;
  padding-inline: var(--espacio-md);
}

/* Swiper.js — override de estilos */
.andes-ecosistema .swiper {
  padding-bottom: 3rem !important;
}

.andes-ecosistema .swiper-slide {
  height: auto;
}

/* IMAGEN CARD ECOSISTEMA DESKTOP: máximo 200kb, 380×220px
   IMAGEN CARD ECOSISTEMA TABLET: máximo 100kb, 320×180px
   IMAGEN CARD ECOSISTEMA MOBILE: máximo 50kb, 320×180px
   Exportar desde Figma: ventana-ecosistema-servicios > tarjeta individual */
.andes-ecosistema-card {
  background: var(--color-blanco);
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: transform var(--transicion), box-shadow var(--transicion);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.andes-ecosistema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-md);
}

.andes-ecosistema-card__imagen {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.andes-ecosistema-card__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transicion-lg);
}

.andes-ecosistema-card:hover .andes-ecosistema-card__imagen img {
  transform: scale(1.05);
}

.andes-ecosistema-card__contenido {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.andes-ecosistema-card__etiqueta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-azul-medio);
  margin-bottom: var(--espacio-xs);
}

.andes-ecosistema-card__titulo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-azul-oscuro);
  margin-bottom: var(--espacio-xs);
}

.andes-ecosistema-card__texto {
  font-size: var(--fs-small);
  color: var(--color-gris-header);
  flex: 1;
  margin-bottom: var(--espacio-sm);
}

.andes-ecosistema-card__enlace {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-azul-medio);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transicion);
  margin-top: auto;
}

.andes-ecosistema-card__enlace:hover {
  gap: 8px;
  color: var(--color-azul-oscuro);
}

/* Botones de navegación del carrusel */
.andes-ecosistema__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--espacio-sm);
  margin-top: var(--espacio-md);
}

.andes-ecosistema__btn-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-blanco);
  border: 2px solid var(--color-azul-claro);
  color: var(--color-azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transicion);
  cursor: pointer;
}

.andes-ecosistema__btn-nav:hover {
  background: var(--color-azul-claro);
  color: var(--color-blanco);
}

.andes-ecosistema .swiper-pagination-bullet {
  background: var(--color-azul-claro);
  opacity: 0.4;
}

.andes-ecosistema .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: var(--radio-full);
}


/* ============================================================
   11. SECCIÓN POR QUÉ ANDES (4 tarjetas de valor)
   ============================================================ */
.andes-porque {
  background: #3F79AC;
  padding-block: 4rem;
}

.andes-porque__header {
  text-align: center;
  margin-bottom: var(--espacio-lg);
}

.andes-porque__titulo {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.andes-porque__subtitulo {
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.9375rem;
  margin-top: var(--espacio-xs);
}

.andes-porque__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.andes-porque-card {
  background: #F5F5F5 !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 1.25rem !important;
  text-align: left !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer !important;
}

.andes-porque-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25) !important;
}

.andes-porque-card__icono {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  background: #FFFFFF !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 0.75rem !important;
}

.andes-porque-card__icono img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.andes-porque-card__body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 0.5rem !important;
}

.andes-porque-card__titulo {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.andes-porque-card__texto {
  font-size: 0.8125rem !important;
  color: #555555 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.andes-porque-card .andes-btn--lima {
  background: #A8CC11 !important;
  color: #FFFFFF !important;
  font-size: 0.75rem !important;
  padding: 0.375rem 1rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  align-self: flex-end !important;
  margin-top: auto !important;
}

@media (max-width: 768px) {
  .andes-porque__grid {
    grid-template-columns: 1fr !important;
  }
  .andes-porque-card {
    flex-direction: row !important;
  }
}

@media (max-width: 480px) {
  .andes-porque-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .andes-porque-card__body {
    align-items: center !important;
  }
  .andes-porque__titulo {
    font-size: 1.5rem !important;
  }
}


/* ============================================================
   12. SECCIÓN FIRMA DIGITAL CTA
   ============================================================ */
.andes-cta-firma {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* IMAGEN FONDO CTA DESKTOP: máximo 400kb, 1440×480px
   IMAGEN FONDO CTA TABLET: máximo 200kb, 1024×400px
   IMAGEN FONDO CTA MOBILE: máximo 100kb, 480×500px
   Exportar desde Figma: frame-home-inicio > sección firma digital */
.andes-cta-firma__imagen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.andes-cta-firma__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 38, 102, 0.6);
  z-index: 1;
}

.andes-cta-firma__contenido {
  position: relative;
  z-index: 2;
  max-width: var(--max-width-inner);
  margin-inline: auto;
  padding-inline: var(--espacio-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--espacio-xl);
  align-items: center;
  width: 100%;
}

.andes-cta-firma__titulo {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-blanco);
}

.andes-cta-firma__texto {
  color: rgba(255,255,255,0.8);
  margin-top: var(--espacio-xs);
}

.andes-cta-firma__botones {
  display: flex;
  flex-direction: column;
  gap: var(--espacio-sm);
  flex-shrink: 0;
}


/* ============================================================
   13. SECCIÓN 7 — CERTIFICACIONES + FORMULARIO
   Figma: Frame 279 — 1328×664px
   Gradient: #93CDE9 (0%) → #4F92C8 (52%) → #336198 (100%)
   ============================================================ */
.andes-contacto {
  background: linear-gradient(
    90deg, #93cde9 0%, #4f92c8 52%, #336198 100%);
  padding-block: 2rem 2.5rem !important;
  border-radius: 24px !important;
  margin-inline: 2rem !important;
  overflow: visible !important;
}

.andes-contacto__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5.625rem;
  align-items: start;
}

/* Columna izquierda */
.andes-contacto__certificaciones {
  text-align: left;
}

/* Título: Figma Montserrat 600 40px #2D353C */
.andes-contacto__titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #2d353c;
  line-height: 1.22;
  margin-bottom: 2.1875rem;
}

/* Filas de tarjetas de certificación */
.andes-cert-fila {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.1875rem;
}

.andes-cert-fila:last-child {
  margin-bottom: 0;
}

/* Tarjeta blanca: Figma bg #FFFFFF, radius 15px, 149px alto */
.andes-cert-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex: 1;
  min-height: 120px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Tarjeta ancha (3 logos) */
.andes-cert-card--ancha {
  flex: 2.2;
}

/* Logos en tarjetas — colores naturales (fondos blancos) */
.andes-cert-card img {
  height: auto;
  max-height: 100px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
}

/* ── Columna derecha: formulario ──
   Figma node 3762:10233 — bg #F5F5F5, radius 18px, 489×685px */
.andes-form {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 27px 29px 20px;
  width: 100%;
  max-width: 489px;
  box-sizing: border-box;
  margin-bottom: -6rem !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Título: Figma Poppins 600 17px #0D2666 center line-height 26px */
.andes-form__titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0d2666;
  text-align: center;
  line-height: 26px;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 38px;       /* Figma gap título→primer campo: 38px */
}

/* Formulario nativo — espaciado explícito (layout NONE en Figma) */
.andes-form-native {
  display: flex;
  flex-direction: column;
}

/* Inputs: Figma bg #FFF, border 1px #44535F, radius 9px, 432×29px, Poppins 400 15px */
.andes-form-native__campo input[type="text"],
.andes-form-native__campo input[type="email"],
.andes-form-native__campo input[type="tel"] {
  width: 100%;
  height: 29px;              /* Figma: 29px exacto */
  padding: 0 18px;           /* Figma: texto a 18px del borde */
  border: 1px solid #44535f;
  border-radius: 9px;
  background: #ffffff;
  color: #44535f;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-sizing: border-box;
  transition: border-color 0.2s;
  display: block;
}

/* Gap entre campos: 18px */
.andes-form-native__campo + .andes-form-native__campo {
  margin-top: 18px;
}

.andes-form-native__campo input[type="text"]::placeholder,
.andes-form-native__campo input[type="email"]::placeholder,
.andes-form-native__campo input[type="tel"]::placeholder {
  color: #44535f;
  opacity: 1;
}

.andes-form-native__campo input:focus {
  outline: none;
  border-color: #0a3c83;
  box-shadow: 0 0 0 2px rgba(10, 60, 131, 0.15);
}

/* Pregunta radios: Figma Poppins 400 15px #44535F, gap desde último campo 14px */
.andes-form-native__pregunta {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #44535f;
  line-height: 23px;
  letter-spacing: 0;
  margin-top: 14px;
  margin-bottom: 0;
}

/* Radios: Figma Frame 322, gap entre opciones 10px, gap desde pregunta 14px */
.andes-form-native__radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

/* Cada opción radio: Figma Poppins 400 13px #44535F, height 20px */
.andes-form-native__radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #44535f;
  line-height: 20px;
  user-select: none;
}

/* Input radio real: oculto, controlado por .radio-dot */
.andes-form-native__radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Radio dot: Figma Ellipse 15×15px, border #A9ABAE, fill #FFF */
.andes-form-native__radio-dot {
  display: inline-flex;
  width: 15px;
  height: 15px;
  min-width: 15px;
  border: 1px solid #a9abae;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

/* Checked: border + fill #0A3C83 con punto central */
.andes-form-native__radio-item input[type="radio"]:checked
  + .andes-form-native__radio-dot {
  border-color: #0a3c83;
  background: radial-gradient(circle, #0a3c83 42%, #ffffff 42%);
}

/* Focus visible accesible */
.andes-form-native__radio-item input[type="radio"]:focus-visible
  + .andes-form-native__radio-dot {
  outline: 2px solid #0a3c83;
  outline-offset: 2px;
}

/* Checkbox autorización: Figma Poppins 400 11px #44535F, gap desde radios 10px */
.andes-form-native__autorizo {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #44535f;
  line-height: 1.5;
  margin-top: 10px;
}

/* Checkbox real: oculto */
.andes-form-native__autorizo input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Check box custom: Figma 20×20px, border #939AA2, radius 3px, fill #FFF */
.andes-form-native__check-box {
  display: inline-flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #939aa2;
  border-radius: 3px;
  background: #ffffff;
  flex-shrink: 0;
  margin-top: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  box-sizing: border-box;
}

.andes-form-native__autorizo input[type="checkbox"]:checked
  ~ span:last-child::before {
  /* checkmark visual via CSS — label text no se ve afectado */
}

.andes-form-native__autorizo input[type="checkbox"]:checked
  + .andes-form-native__check-box {  /* nope, check-box viene ANTES */
}

/* Checked state en check-box (la caja viene primero en el DOM) */
.andes-form-native__autorizo:has(input[type="checkbox"]:checked)
  .andes-form-native__check-box {
  border-color: #0a3c83;
  background: #0a3c83;
}

.andes-form-native__autorizo:has(input[type="checkbox"]:checked)
  .andes-form-native__check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  position: absolute;
  top: 3px;
  left: 6px;
}

/* Botón Enviar: Figma 109×28px, bg #0A3C83, Poppins 600 13px, radius 18px, centrado */
.andes-form-native__submit {
  align-self: center;
  width: 109px;
  height: 28px;
  padding: 0;
  background: #0a3c83;
  border: none;
  border-radius: 18px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 11px;
}

.andes-form-native__submit:hover {
  background: #082e66;
}

/* WPForms: hereda la misma apariencia */
.andes-contacto .wpforms-form .wpforms-submit {
  background: #0a3c83 !important;
  border-color: #0a3c83 !important;
  color: #ffffff !important;
  border-radius: 18px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
}

.andes-contacto .wpforms-form .wpforms-submit:hover {
  background: #082e66 !important;
  border-color: #082e66 !important;
}

.andes-contacto .wpforms-form .wpforms-field-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #44535f;
}

.andes-contacto .wpforms-form input[type="text"],
.andes-contacto .wpforms-form input[type="email"],
.andes-contacto .wpforms-form input[type="tel"] {
  border: 1px solid #44535f !important;
  border-radius: 9px !important;
  background: #ffffff !important;
  color: #44535f !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9375rem !important;
}


/* ============================================================
   HOME — CORRECCIONES FIGMA (frame-home-inicio)
   Agrega estilos que faltaban. NO modifica reglas anteriores.
   ============================================================ */

/* Botón outline para fondos claros (CTA Firma bifold) */
.andes-btn--outline-azul {
  background: transparent;
  color: var(--color-azul-oscuro);
  border: 2px solid var(--color-azul-oscuro);
}
.andes-btn--outline-azul:hover {
  background: var(--color-azul-oscuro);
  color: var(--color-blanco);
}

/* ── CTA FIRMA DIGITAL — layout bifold (texto izq / imagen der)
   Figma: Frame 285 — 1232×455px, split ~54%/46%
   ─────────────────────────────────────────────────────────── */


.andes-cta-firma__bifold-inner {
  max-width: 1232px;
  margin-inline: auto;
  padding-inline: var(--espacio-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--espacio-xl);
  align-items: center;
}

.andes-cta-firma__texto-col {
  display: flex;
  flex-direction: column;
  gap: var(--espacio-md);
}

/* Sobreescribe colores del título para fondo claro */
.andes-cta-firma--bifold .andes-cta-firma__titulo {
  color: #2D353C !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 35px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.andes-cta-firma--bifold .andes-cta-firma__texto {
  color: #000000 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  margin-top: 0 !important;
}

.andes-cta-firma--bifold .andes-cta-firma__botones {
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  display: flex !important;
}

.andes-cta-firma__imagen-col {
  border-radius: var(--radio-lg);
  overflow: hidden;
  aspect-ratio: 522 / 484;
}

.andes-cta-firma__imagen-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── ECOSISTEMA — título largo centrado ───────────────────── */
.andes-ecosistema__header .andes-titulo-seccion--centrado {
  max-width: 900px;
  margin-inline: auto;
}

/* ── POR QUÉ ANDES — subtítulo max-width ─────────────────── */
.andes-porque__subtitulo {
  max-width: 760px;
  margin-inline: auto;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE HOME — TABLET 768px (481px – 1024px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 481px) {
  /* CTA bifold: apilar verticalmente en tablet */
  .andes-cta-firma__bifold-inner {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .andes-cta-firma__imagen-col {
    aspect-ratio: 16 / 9;
  }
  /* Ecosistema título reducido 15% */
  .andes-ecosistema__header .andes-titulo-seccion--centrado {
    font-size: calc(var(--fs-h2) * 0.85);
  }

  /* Sección 7: 1 columna en tablet (768px) */
  .andes-contacto__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 640px;
  }
  .andes-contacto__titulo {
    font-size: 2rem;
    text-align: center;
  }
  .andes-contacto__certificaciones {
    text-align: center;
  }
  .andes-cert-fila {
    justify-content: center;
  }
  .andes-cert-card {
    min-height: 100px;
    padding: 1rem;
  }
  .andes-cert-card img {
    max-height: 80px;
  }
  /* Formulario: ocupa 100% en tablet */
  .andes-form {
    max-width: 100%;
    padding: 27px 24px 20px;
  }
  .andes-form__titulo {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .andes-form-native__campo input[type="text"],
  .andes-form-native__campo input[type="email"],
  .andes-form-native__campo input[type="tel"] {
    height: 36px;            /* un poco más táctil en tablet */
  }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE HOME — MOBILE 375px (max 480px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* CTA bifold mobile: 1 columna, imagen oculta */
  .andes-cta-firma--bifold {
    padding-block: var(--espacio-lg);
  }
  .andes-cta-firma__bifold-inner {
    grid-template-columns: 1fr;
    gap: var(--espacio-md);
  }
  .andes-cta-firma__imagen-col {
    display: none;
  }
  .andes-cta-firma--bifold .andes-cta-firma__titulo {
    font-size: 1.5rem;
    white-space: normal !important;
  }
  .andes-cta-firma--bifold .andes-cta-firma__botones {
    flex-direction: column;
  }
  .andes-cta-firma__botones .andes-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Por qué Andes: subtítulo legible en mobile */
  .andes-porque__subtitulo {
    font-size: 0.9rem;
    padding-inline: var(--espacio-sm);
  }

  /* Ecosistema título en mobile */
  .andes-ecosistema__header .andes-titulo-seccion--centrado {
    font-size: 1.25rem;
  }

  /* Sección 7: 1 columna, compacta */
  .andes-contacto {
    padding-block: 2.5rem 3rem;
    margin-inline: 0.5rem !important;
  }
  .andes-contacto__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 0;
  }
  .andes-contacto__titulo {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .andes-contacto__certificaciones {
    text-align: center;
  }
  .andes-cert-fila {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    justify-content: center;
  }
  .andes-cert-card {
    padding: 0.875rem 0.75rem;
    gap: 0.75rem;
    min-height: 80px;
  }
  .andes-cert-card img {
    max-height: 60px;
    max-width: 80px;
  }
  /* Formulario: 100% ancho, padding reducido en mobile (375px) */
  .andes-form {
    max-width: 100%;
    padding: 20px 16px 24px;
    margin-bottom: 0 !important;
  }
  .andes-form__titulo {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 24px;
  }
  .andes-form-native__campo input[type="text"],
  .andes-form-native__campo input[type="email"],
  .andes-form-native__campo input[type="tel"] {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
  .andes-form-native__pregunta {
    font-size: 14px;
  }
  .andes-form-native__radio-item {
    font-size: 13px;
  }
  .andes-form-native__autorizo {
    font-size: 10px;
  }
  /* Botón: 100% ancho y altura táctil en mobile */
  .andes-form-native__submit {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   HOME — REESCRITURA FIGMA — get_design_context
   frame-home-inicio · node 3762:10098 · archivo vmmMKom522FcEpnhDknMW2
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. PILLS — responsive tablet 768px ── */
/* Desktop: estilos base en sección 7 */

/* Tablet: hero ajustado al viewport disponible, pills dentro de la imagen */
@media (min-width: 481px) and (max-width: 1024px) {
  .andes-hero {
    min-height: calc(100vh - var(--header-height, 80px));
  }
  .andes-hero__contenido {
    padding-bottom: 200px !important;
  }
  .andes-hero-pills {
    bottom: 4rem;
    overflow: visible;
  }
  .andes-hero-pills__barra {
    max-width: 100%;
    padding: 8px 16px;
    gap: 10px;
    flex-wrap: wrap;
    overflow: visible;
    justify-content: center;
  }
  .andes-hero-pills__item {
    font-size: 11px;
    padding: 8px 12px;
    min-height: 44px;
  }
}
@media (max-width: 480px) {
  .andes-hero {
    min-height: max(100svh, 760px) !important;
  }
  .andes-hero__imagen {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 70% center !important;
}
  .andes-hero__contenido {
    padding-bottom: 200px !important;
  }
  .andes-hero-pills {
    bottom: 2rem;
    padding-inline: 8px;
    overflow: visible;
  }
  .andes-hero-pills__barra {
    flex-wrap: wrap;
    overflow: visible;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    max-width: 100%;
  }
  .andes-hero-pills__item {
    flex: 0 1 auto;
    width: auto;
    max-width: 160px;
    min-height: 44px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ── 2. ECOSISTEMA — fondo #EDEDED, 3 tarjetas estáticas de beneficios ── */
.andes-ecosistema {
  background: var(--color-fondo-seccion);
}

.andes-ecosistema__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--espacio-lg);
  padding-block: var(--espacio-lg);
}

.andes-eco-card {
  background: var(--color-blanco);
  border-radius: var(--radio-lg);
  padding: var(--espacio-lg) var(--espacio-md);
  text-align: center;
  box-shadow: var(--sombra-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--espacio-sm);
  transition: box-shadow var(--transicion), transform var(--transicion);
}

.andes-eco-card:hover {
  box-shadow: var(--sombra-md);
  transform: translateY(-4px);
}

.andes-eco-card__icono {
  width: 72px;
  height: 72px;
  background: rgba(14, 38, 102, 0.07);
  border-radius: var(--radio-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-azul-oscuro);
  flex-shrink: 0;
}

.andes-eco-card__titulo {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-azul-oscuro);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.andes-eco-card__texto {
  color: var(--color-gris-header);
  line-height: 1.7;
  font-size: var(--fs-small);
}

/* ── 3. POR QUÉ ANDES — fondo #3F79AC, texto blanco, botones lima ── */
.andes-porque {
  background: var(--color-azul-claro);
}

.andes-porque__titulo {
  color: var(--color-blanco);
}

.andes-porque__subtitulo {
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin-inline: auto;
}

.andes-porque-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radio-lg);
  padding: var(--espacio-md);
  display: flex;
  flex-direction: column;
  gap: var(--espacio-sm);
  align-items: flex-start;
  transition: background var(--transicion);
}

.andes-porque-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.andes-porque-card__icono {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radio-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lima);
  flex-shrink: 0;
}

.andes-porque-card__titulo {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-blanco);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.andes-porque-card__texto {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-small);
  line-height: 1.7;
  flex: 1;
}

/* ── 4. BOTÓN LIMA — #afd81a (var --color-lima) ── */
.andes-btn--lima {
  background: #A8CC11 !important;
  color: #FFFFFF !important;
  border: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.andes-btn--lima:hover {
  background: #95BF15 !important;
  color: #FFFFFF !important;
}

/* ── RESPONSIVE — secciones nuevas ── */
@media (max-width: 1024px) and (min-width: 481px) {
  .andes-ecosistema__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--espacio-md);
  }

  .andes-eco-card {
    padding: var(--espacio-md);
  }

  .andes-porque-card {
    padding: var(--espacio-md);
  }
}

@media (max-width: 480px) {
  .andes-ecosistema__cards {
    grid-template-columns: 1fr;
    gap: var(--espacio-md);
  }

  .andes-eco-card {
    padding: var(--espacio-md) var(--espacio-sm);
  }

  .andes-porque-card {
    padding: var(--espacio-sm);
  }

  .andes-porque-card__titulo {
    font-size: 0.9rem;
  }
}

/* ============================================================
   ACORDEÓN — LINK PILLS
   ============================================================ */
.andes-acordeon__links {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.andes-acordeon__link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.375rem 0.875rem;
  background: #F0F7FF;
  border: 1px solid #336198;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #336198 !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.andes-acordeon__link-pill:hover {
  background: #336198;
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  .andes-acordeon__links { gap: 0.375rem; }
  .andes-acordeon__link-pill { font-size: 0.75rem; padding: 0.3rem 0.75rem; }
}

@media (max-width: 480px) {
  .andes-acordeon__links { flex-direction: column; gap: 0.375rem; }
  .andes-acordeon__link-pill { width: fit-content; font-size: 0.75rem; }
}

/* ============================================================
   ECOSISTEMA — CARRUSEL
   ============================================================ */
.andes-ecosistema {
  background: #EDEDED !important;
  padding-block: 4rem;
  overflow: hidden !important;
  border-radius: 24px !important;
  margin-inline: 2rem !important;
}

.andes-ecosistema .andes-container {
  max-width: 1200px;
  width: 100%;
  padding-inline: 2rem;
}

.andes-ecosistema__header {
  margin-bottom: 2.5rem;
}

.andes-ecosistema__titulo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
  width: 100%;
  padding-inline: 0;
}

.andes-ecosistema__icono-titulo {
  color: #336198;
  flex-shrink: 0;
  margin-top: 4px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.andes-ecosistema__titulo-texto {
  color: #2D353C !important;
  font-size: 35px !important;
  font-weight: 600 !important;
  font-family: 'Montserrat', sans-serif !important;
  line-height: 1 !important;
}

/* Wrapper con espacio para las flechas y para el scale del slide activo */
.andes-ecosistema__carrusel-wrap {
  position: relative;
  padding: 0 56px;
}

/* Swiper necesita overflow visible para que se vea el scale del slide activo */
.andes-ecosistema-swiper {
  overflow: visible !important;
  padding-block: 2.5rem;
}

/* Clips lateral para que los slides inactivos no se vean fuera del contenedor */
.andes-ecosistema__carrusel-clip {
  overflow: hidden;
  margin-inline: -2rem;
  padding-inline: 2rem;
}

/* ── CARD BASE ── */
.andes-eco-slide {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: scale(0.93);
  opacity: 0.75;
}

/* ── CARD ACTIVA (centro) — Swiper agrega esta clase automáticamente ── */
.andes-ecosistema-swiper .swiper-slide-active .andes-eco-slide,
.andes-ecosistema-swiper .swiper-slide-prev .andes-eco-slide,
.andes-ecosistema-swiper .swiper-slide-next .andes-eco-slide {
  opacity: 1;
}

.andes-ecosistema-swiper .swiper-slide-active .andes-eco-slide {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(14, 38, 102, 0.20);
  z-index: 2;
  position: relative;
}

/* ── DESKTOP: wrapper fijo, cada slide se posiciona con transform individual ── */
@media (min-width: 1025px) {
  .andes-ecosistema-swiper {
    overflow: visible;
  }
  .andes-ecosistema-swiper .swiper-wrapper {
    transform: none !important;
    transition: none !important;
  }
  .andes-ecosistema-swiper .swiper-slide {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .andes-ecosistema-swiper .swiper-slide.eco-no-tr {
    transition: none !important;
  }
}

/* ── IMAGEN DE LA CARD ── */
.andes-eco-slide__imagen {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #93CDE9 0%, #336198 100%) !important;
  flex-shrink: 0;
}

.andes-eco-slide__imagen picture,
.andes-eco-slide__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent !important;
  font-size: 0 !important;
}

/* ── CONTENIDO DE LA CARD ── */
.andes-eco-slide__contenido {
  padding: 1.5rem;
  flex: 1;
}

.andes-eco-slide__titulo {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0E2666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.875rem;
}

.andes-eco-slide__lista {
  list-style: disc;
  padding-left: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
}

.andes-eco-slide__lista li {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.55;
}

/* ── FLECHAS DE NAVEGACIÓN ──
   Fondo sólido azul marino, flecha blanca — claramente visible sobre #EDEDED */
.andes-eco-btn-prev,
.andes-eco-btn-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  /* Dimensiones fijas: no dependen del contenido */
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #0E2666 !important;
  border: none !important;
  outline: none !important;
  /* Flex para centrar el ícono */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
  box-shadow: 0 4px 12px rgba(14, 38, 102, 0.30) !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  font-size: 0 !important;
}

/* SVG dentro del botón — forzar dimensiones explícitas (rompe max-width:100% global) */
.andes-eco-btn-prev svg,
.andes-eco-btn-next svg {
  display: block !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
  overflow: visible !important;
}

.andes-eco-btn-prev { left: 0 !important; }
.andes-eco-btn-next { right: 0 !important; }

.andes-eco-btn-prev:hover,
.andes-eco-btn-next:hover {
  background: #336198 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  .andes-ecosistema__carrusel-wrap { padding: 0 52px; }
  .andes-ecosistema__titulo-texto { font-size: 1.5rem !important; }
  .andes-ecosistema-swiper .swiper-slide-active .andes-eco-slide {
    transform: scale(1) !important;
  }
  .andes-eco-slide { transform: scale(1); opacity: 1; }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 767px) {
  .andes-ecosistema {
    padding-block: 3rem;
    border-radius: 16px !important;
    margin-inline: 1rem !important;
  }
  .andes-ecosistema__carrusel-wrap { padding: 0 44px; }
  .andes-ecosistema__titulo-texto { font-size: 1.25rem !important; }
  .andes-ecosistema__titulo-wrap { gap: 0.75rem; }
  .andes-eco-btn-prev,
  .andes-eco-btn-next {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
  }
  .andes-eco-btn-prev svg,
  .andes-eco-btn-next svg {
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
  }
  .andes-eco-slide__contenido { padding: 1.125rem; }
}

@media (max-width: 480px) {
  .andes-ecosistema {
    border-radius: 12px !important;
    margin-inline: 0.5rem !important;
  }
  .andes-ecosistema__carrusel-wrap { padding: 0 38px; }
  .andes-ecosistema__titulo-texto { font-size: 1.125rem !important; }
  .andes-ecosistema__icono-titulo { width: 28px; height: 28px; }
  .andes-eco-btn-prev,
  .andes-eco-btn-next {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
  }
  .andes-eco-btn-prev svg,
  .andes-eco-btn-next svg {
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
  }
}

.andes-acordeon__link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #AFD81A;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 14px;
  border: none !important;
  padding: 4px 18px;
  line-height: 1.6;
  text-decoration: none !important;
  transition: background 0.2s;
  white-space: nowrap;
}

.andes-acordeon__link-pill:hover {
  background: #95BF15;
  color: #FFFFFF !important;
}


.andes-porque__grid {
  align-items: stretch !important;
}

.andes-porque-card {
  height: 100% !important;
}

.andes-porque-card__body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
}


/* ============================================================
   14. SECCIÓN CONFIANZA DIGITAL
   Figma: File m5OCUsDyyUfB3FCJA6Qnou — nodos 683:2674 / 683:2676
   ============================================================ */
.andes-confianza {
  background: var(--color-blanco);
  padding-block: var(--espacio-xl);
}

/* ── Texto intro centrado (nodo 683:2674) ── */
.andes-confianza__intro {
  max-width: 1222px;
  margin-inline: auto;
  margin-bottom: var(--espacio-lg);
  padding-inline: var(--espacio-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
  color: #777474;
}

/* ── Tarjeta de 3 imágenes (nodo "menu-final") ── */
.andes-confianza__iconos {
  position: relative;
  max-width: 697px;
  margin-inline: auto;
  margin-bottom: var(--espacio-lg);
  border-radius: 18px;
  background: none;        /* quita el degradado de marco */
  padding: 0;
}

/* Glow difuso animado: los 3 colores se desplazan lateralmente */
.andes-confianza__iconos::before {
  content: "";
  position: absolute;
  inset: -6px;             /* asoma un poco por fuera de la card */
  z-index: 0;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    #BADF20,   /* verde */
    #00E7D2,   /* cian */
    #9747FF,   /* morado */
    #00E7D2,   /* cian */
    #BADF20    /* verde (para loop suave) */
  );
  background-size: 200% 100%;
  filter: blur(16px);
  opacity: 0.75;
  animation: andes-iconos-glow 6s linear infinite;
}

@keyframes andes-iconos-glow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.andes-confianza__iconos-inner {
  position: relative;      /* encima del glow */
  z-index: 1;
  background: #F5F5F5;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 93px;
  padding: 46px 109px;
}

.andes-confianza__icono {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid rgba(217, 217, 217, 0.52);
  border-radius: 13px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.andes-confianza__icono:hover {
  transform: translateY(-3px);
}

.andes-confianza__icono:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(10, 60, 131, 0.15);   /* halo muy tenue, opcional */
}

.andes-confianza__icono--activo {
  background: #ffffff !important;
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.andes-confianza__icono--1.andes-confianza__icono--activo {
  border-color: #AFD81A;
}
.andes-confianza__icono--2.andes-confianza__icono--activo {
  border-color: #00E7D2;
}
.andes-confianza__icono--3.andes-confianza__icono--activo {
  border-color: #9747FF;
}

.andes-confianza__icono--1.andes-confianza__icono--activo:hover,
.andes-confianza__icono--2.andes-confianza__icono--activo:hover,
.andes-confianza__icono--3.andes-confianza__icono--activo:hover {
  transform: translateY(-6px);
}

.andes-confianza__icono-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Tarjeta de 2 columnas (nodo "contexto-confi-home") ── */
.andes-confianza__card {
  max-width: 1195px;
  margin-inline: auto;
  padding: 2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(217, 217, 217, 1), rgba(103, 102, 102, 1));
}

.andes-confianza__card-inner {
  position: relative;          /* ← agrega esto para anclar el separador */
  border-radius: 24px;
  overflow: hidden;
  background: #EDEDED;
  /* El grid de 2 columnas ahora vive en .andes-confianza__panel--activo,
     porque la card-inner aloja 3 paneles intercambiables (JS) */
}

/* Separador vertical con degradado entre las dos columnas — el color
   cambia según el panel activo (--confianza-acento) */
.andes-confianza__card-inner {
  --confianza-acento: rgba(186, 223, 32, 0.8);
}
.andes-confianza__card-inner--panel-2 {
  --confianza-acento: rgba(0, 231, 210, 0.8);
}
.andes-confianza__card-inner--panel-3 {
  --confianza-acento: rgba(151, 71, 255, 0.8);
}

.andes-confianza__card-inner::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;                 /* no llega a los bordes: se desvanece dentro */
  /* posición horizontal: en la línea entre col izq (532) y der (663) */
  left: calc(532 / 1195 * 100%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--confianza-acento) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Columna izquierda: imagen + texto */
.andes-confianza__info {
  background: #FFFFFF;
  padding: 18px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 86px;
}

.andes-confianza__logo {
  width: 100%;
  max-width: 421px;
  height: auto;
  object-fit: contain;
  display: block;
}

.andes-confianza__texto {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1;        /* 100% */
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

/* Columna derecha: grid de 8 botones + divisor */
.andes-confianza__botones {
  padding: 20px 39px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  align-items: center;
}

.andes-confianza__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #C4E538;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  border-radius: 8px;
  padding: 7px 13px;
  text-decoration: none !important;
  justify-self: stretch;
  width: 100%;
  min-height: 64px;
  box-sizing: border-box;
  transition: background 0.2s;
}


.andes-confianza__btn--fill {
  width: 100%;
}

.andes-confianza__btn:hover {
  background: #95BF15;
}

.andes-confianza__divisor {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(180, 177, 177, 0.7);
  border-radius: 999px;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — SECCIÓN CONFIANZA DIGITAL — TABLET (max 1024px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .andes-confianza__intro {
    font-size: 17px;
  }
  .andes-confianza__iconos-inner {
    gap: 2rem;
    padding: 2rem;
  }
  .andes-confianza__card-inner {
    grid-template-columns: 1fr;
  }
  .andes-confianza__info {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .andes-confianza__texto {
    max-width: 100%;
  }
  .andes-confianza__botones {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    padding: 1.5rem;
  }
  .andes-confianza__btn {
    font-size: 15px;
  }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — SECCIÓN CONFIANZA DIGITAL — MOBILE (max 480px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .andes-confianza__intro {
    font-size: 13px;
    padding-inline: 1rem;
    margin-bottom: var(--espacio-md);
  }
  .andes-confianza__iconos {
    padding-inline: 1rem;
    margin-inline: 1rem;
  }
  .andes-confianza__iconos-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .andes-confianza__card {
    margin-inline: 1rem;
  }
  .andes-confianza__info {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .andes-confianza__texto {
    font-size: 11px;
  }
  .andes-confianza__botones {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .andes-confianza__btn,
  .andes-confianza__btn--fill {
    width: 100%;
    min-height: 44px;
    font-size: 11px;
  }
}

.andes-confianza__subtitulo {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1;        /* 100% */
  letter-spacing: 0;
  color: #AFD81A;        /* verde; ajústalo al verde exacto del diseño */
  text-align: center;
  margin: 0 0 1px;
}

.andes-confianza__bloque-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;              /* separación pequeña entre subtítulo y párrafo */
}

.andes-confianza__btn-mini {
  font-size: 0.65em;
}

@media (max-width: 1024px) {
  .andes-confianza__card-inner::after {
    display: none;
  }
}


/* ============================================================
   14b. SECCIÓN CONFIANZA DIGITAL — PANELES 2 y 3 (selector de íconos)
   Figma: File m5OCUsDyyUfB3FCJA6Qnou
   Panel 2 "Gestión Documental Inteligente" — nodos 91:228, 91:229, 100:93
   Panel 3 "Hiperautomatización Procesos IA" — nodos 110:132, 110:135
   ============================================================ */

/* Cada panel es su propio grid de 2 columnas (mismo ratio que panel 1);
   solo el panel activo se muestra */
.andes-confianza__panel {
  display: none;
  grid-template-columns: 532fr 663fr;
}

.andes-confianza__panel--activo {
  display: grid;
}

/* ── Subtítulo verde/morado (paneles 2 y 3) — mismo tamaño/peso que el
   subtítulo del panel 1, solo cambia el color de acento ── */
.andes-confianza__subtitulo--panel2 {
  color: #00C7B5;
}
.andes-confianza__subtitulo--panel3 {
  color: #A865F9;
}

/* Párrafo descriptivo de la columna izquierda (paneles 2 y 3) */
.andes-confianza__parrafo {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.21;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* ── PANEL 2: columna derecha — lista de servicios con scroll vertical ── */
.andes-confianza__servicios {
  padding: 20px 39px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 549px;
  overflow-y: auto;
  scrollbar-width: none;      /* Firefox: oculta la barra de scroll */
  -ms-overflow-style: none;   /* IE/Edge legado */
}
.andes-confianza__servicios::-webkit-scrollbar {
  display: none;              /* Chrome/Safari: oculta la barra de scroll */
}

.andes-confianza__servicio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.andes-confianza__servicio-icono {
  width: 90px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.andes-confianza__servicio-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* Líneas separadoras dentro de la lista de servicios (panel 2): finas y
   tenues — no afecta al divisor del panel 1 (grid de 8 botones) */
.andes-confianza__servicios .andes-confianza__divisor {
  display: block;
  width: 100%;
  height: 1px;
  min-height: 1px;
  flex-shrink: 0;
  background: rgba(180, 177, 177, 0.5);
  border: none;
  border-radius: 999px;
  margin: 16px 0;
}

.andes-confianza__servicio-titulo {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;          /* 100% */
  letter-spacing: 0;
  color: #003D69;
  margin: 0;
  text-align: left;
}

.andes-confianza__servicio-parrafo {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  margin: 0;
  text-align: left;
}

/* Botón "Ver más" — pequeño, auto-ancho (paneles 2 y 3) */
.andes-confianza__ver-mas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 6px 13px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0;
  color: #FFFFFF !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: filter 0.2s;
}
.andes-confianza__ver-mas:hover {
  filter: brightness(0.9);
}
.andes-confianza__ver-mas--panel2 {
  background: #00E7D2;
}
.andes-confianza__ver-mas--panel3 {
  background: #9747FF;
}

/* ── PANEL 3: columna derecha — bloque Hiperautomatización + 3 cards ── */
.andes-confianza__hiperauto {
  padding: 20px 39px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 549px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.andes-confianza__hiperauto::-webkit-scrollbar {
  display: none;
}

.andes-confianza__hiperauto-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.andes-confianza__hiperauto-icono {
  width: 72px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.andes-confianza__hiperauto-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.andes-confianza__hiperauto-cards-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.andes-confianza__hiperauto-card {
  width: 100%;
  max-width: 193px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — PANELES 2 y 3 — TABLET (max 1024px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .andes-confianza__panel--activo {
    grid-template-columns: 1fr;
  }
  .andes-confianza__parrafo {
    max-width: 100%;
  }
  .andes-confianza__servicios,
  .andes-confianza__hiperauto {
    padding: 1.5rem;
    max-height: none;
    overflow-y: visible;
  }
  .andes-confianza__servicio-titulo {
    font-size: 15px;
  }
  .andes-confianza__servicio-parrafo {
    font-size: 13px;
  }
  .andes-confianza__servicio {
    gap: 14px;
  }
  .andes-confianza__servicio-icono {
    width: 70px;
    max-height: 70px;
  }
  .andes-confianza__hiperauto-cards-row {
    flex-wrap: wrap;
  }
  .andes-confianza__hiperauto-card {
    max-width: 45%;
  }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE — PANELES 2 y 3 — MOBILE (max 480px)
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .andes-confianza__parrafo {
    font-size: 12px;
  }
  .andes-confianza__servicios,
  .andes-confianza__hiperauto {
    padding: 1rem;
    gap: 1rem;
  }
  .andes-confianza__servicio,
  .andes-confianza__hiperauto-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .andes-confianza__servicio-icono {
    width: 54px;
    max-height: 54px;
  }
  .andes-confianza__servicio-texto {
    align-items: center;
    min-width: 0;
    max-width: 100%;
  }
  .andes-confianza__servicio-titulo,
  .andes-confianza__servicio-parrafo {
    text-align: center;
  }
  .andes-confianza__ver-mas {
    min-height: 44px;
    width: 100%;
  }
  .andes-confianza__hiperauto-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .andes-confianza__hiperauto-card {
    max-width: 100%;
  }
  .andes-confianza__icono {
    width: 70px;
    height: 70px;
  }
}

/* Reset del botón selector — quitar TODO estilo de botón de Astra */
button.andes-confianza__icono,
button.andes-confianza__icono:hover,
button.andes-confianza__icono:focus,
button.andes-confianza__icono:focus-visible,
button.andes-confianza__icono:active {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
}

/* Estado activo (seleccionado): fondo blanco + elevación, sin azul */
button.andes-confianza__icono--activo,
button.andes-confianza__icono[aria-pressed="true"] {
  background: #ffffff !important;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

#contacto {
  scroll-margin-top: 140px;   /* igual o un poco más que la altura del header fijo */
}

/* .andes-form-native__enlace se movió a componentes.css: lo usan 15
   checkboxes en 14 plantillas, no solo el formulario del Home. */
