/* ============================================================
   PsicoAlianza — Landing Pruebas 2026
   Mobile-first. Breakpoints: 768px, 1024px, 1200px.
   ============================================================ */

:root {
  --c-primary:        #0071BC;
  --c-primary-700:    #0A0A21;
  --c-primary-500:    #0071BC;
  --c-primary-300:    #00A9E4;
  --c-accent:         #16BF9C;
  --c-accent-2:       #16BF9C;
  --c-bg:             #FFFFFF;
  --c-bg-soft:        #F5F6FA;
  --c-bg-dark:        #0A0A21;
  --c-text:           #1D1D1D;
  --c-text-muted:     #5C6478;
  --c-text-on-dark:   #E6ECFA;
  --c-border:         #E1E5EE;
  --c-purple:         #2A2A80;
  --c-blue-deep:      #003C6A;

  --g-hero:           linear-gradient(90deg, #2597C5 0%, #2A2A80 100%);
  --g-cta:            linear-gradient(90deg, #16BF9C 0%, #16BF9C 100%);
  --g-optimiza:       linear-gradient(90deg, #0071BC 0%, #16BF9C 100%);
  --g-dark:           linear-gradient(180deg, #0A0A21 0%, #0A0A21 100%);

  --font-sans:        'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-card:      1rem;
  --radius-btn:       62.4375rem;
  --radius-sm:        0.5rem;

  --shadow-card:      0 0.375rem 1.5rem rgba(11, 25, 55, 0.08);
  --shadow-card-lg:   0 0.75rem 2.5rem rgba(11, 25, 55, 0.15);

  --container:        99rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---------- Escalado proporcional desktop (canvas Figma 1920px) ----------
   1rem = (100vw / 1920) * 16  ->  16px exactos a 1920px, escala lineal sin tope.
   Todo el CSS está en rem, así que a cualquier ancho desktop el layout escala
   en bloque manteniendo posiciones/tamaños relativos (sin descuadre).
   Abajo de 1024px :root queda en 16px (default) -> reglas mobile intactas. */
@media (min-width: 1024px) {
  :root { font-size: calc(100vw / 1920 * 16); }
}

html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; height: auto; }

/* Accesible solo para lectores de pantalla (labels visualmente ocultos, etc.) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
/* Padding unificado a 3rem en >=768px: un solo valor que escala parejo en
   desktop (evita el tirón en 1200px que tenía el override anterior 2rem→3rem). */
@media (min-width: 768px) { .container { padding: 0 3rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.0312rem;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-0.0625rem); box-shadow: 0 0.375rem 1.125rem rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--g-cta);
  color: #fff;
  border: 0.125rem solid #fff;
}
.btn--outline {
  background: transparent;
  color: var(--c-primary-500);
  border: 0.125rem solid var(--c-primary-500);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 0.125rem solid rgba(255,255,255,0.6);
}
.btn--dark {
  background: var(--c-primary-700);
  color: #fff;
}

/* ---------- Headings & utilities ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.h-section {
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}
.h-section strong { color: var(--c-primary-500); }
.lead {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.text-center { text-align: center; }
@media (min-width: 768px) {
  .h-section { font-size: 2.25rem; }
  .lead { font-size: 1.0625rem; }
}
@media (min-width: 1200px) {
  .h-section { font-size: 2.75rem; }
}
/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  color: var(--c-text);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header__logo-img {
  display: block;
  width: 9.625rem;
  height: auto;
}

/* ---- Hamburger (mobile only) ---- */
.nav-toggle {
  width: 2.5rem; height: 2.5rem;
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.nav-toggle .bar {
  display: block;
  position: relative;
  width: 1.625rem; height: 0.125rem;
  background: currentColor;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute; left: 0;
  width: 1.625rem; height: 0.125rem;
  background: currentColor;
  transition: transform .2s ease;
}
.nav-toggle .bar::before { top: -0.5rem; }
.nav-toggle .bar::after  { top:  0.5rem; }
.site-header.is-open .nav-toggle .bar { background: transparent; }
.site-header.is-open .nav-toggle .bar::before { transform: translateY(0.5rem) rotate(45deg); }
.site-header.is-open .nav-toggle .bar::after  { transform: translateY(-0.5rem) rotate(-45deg); }

/* ============================================================
   NAV — mobile-first: slide-down white panel
   ============================================================ */
.site-nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-card-lg);
  padding: 0.5rem 1.5rem 1.5rem;
  display: none;
}
.site-header.is-open .site-nav { display: block; }
.site-nav__list { display: flex; flex-direction: column; }
.site-nav__item { border-bottom: 1px solid var(--c-border); }
/* Orden del menú mobile (Figma 3083-6873): Pruebas, Plataforma ATS, Blog, Nosotros */
.site-nav__item:nth-child(1) { order: 4; border-bottom: 0; } /* Nosotros (último visual) */
.site-nav__item:nth-child(2) { order: 2; }                   /* Plataforma ATS */
.site-nav__item:nth-child(3) { order: 1; }                   /* Pruebas */
.site-nav__item:nth-child(4) { order: 3; }                   /* Blog */
.site-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-primary);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.site-nav__arrow { flex: 0 0 auto; color: var(--c-primary); }
.site-nav__chev {
  flex: 0 0 auto;
  color: var(--c-primary);
  transition: transform .2s ease;
}
.site-nav__item--has-sub.is-open .site-nav__chev { transform: rotate(180deg); }

/* Submenu (Pruebas) — inline accordion on mobile */
.site-nav__sub {
  display: none;
  flex-direction: column;
  padding: 0 0 0.75rem;
}
.site-nav__item--has-sub.is-open .site-nav__sub { display: flex; }
.site-nav__sub a {
  display: block;
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-size: 1rem;
  color: var(--c-text);
}
.site-nav__sub a:hover { color: var(--c-primary); }

/* ============================================================
   LOGIN MENU (Ingresar a la plataforma)
   ============================================================ */
.login-menu { position: relative; flex: 0 0 auto; display: none; }
.login-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1.5rem;
  border: 1px solid var(--c-primary);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--c-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.login-menu__chev { transition: transform .2s ease; }
.login-menu.is-open .login-menu__btn { background: var(--c-primary); color: #fff; }
.login-menu.is-open .login-menu__chev { transform: rotate(180deg); }
.login-menu__list {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 100%;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.375rem);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.login-menu.is-open .login-menu__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.login-menu__list a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  color: var(--c-text);
  white-space: nowrap;
}
.login-menu__list a:hover { background: var(--c-bg-soft); color: var(--c-primary); }

/* ============================================================
   HEADER — desktop (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  /* Mismo inset que el hero: logo alineado con el título de la Sección 1 */
  .site-header .container {
    max-width: none;
    padding-left: clamp(3rem, 6vw, 10.125rem);
    padding-right: clamp(3rem, 6vw, 10.125rem);
  }
  .site-header__inner {
    height: 7.25rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header__logo-img { width: 11.46rem; }
  .nav-toggle { display: none; }
  .login-menu { display: block; }

  /* Inline nav bar */
  .site-nav {
    position: static;
    display: flex;
    align-self: stretch;       /* nav ocupa toda la altura del header */
    flex: 1 1 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .site-nav__list {
    flex: 1 1 auto;            /* llena el nav para que justify-content centre los items */
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.75rem;
    height: 100%;
  }
  .site-nav__item {
    border-bottom: 0;
    display: flex;
    align-items: center;       /* link centrado vertical; item full-height */
  }
  .site-nav__item:nth-child(n) { order: 0; } /* anula el order del menú mobile */
  .site-nav__item--has-sub { position: relative; }
  .site-nav__link {
    width: auto;
    padding: 0;
    gap: 0.375rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--c-text);
    white-space: nowrap;
  }
  .site-nav__link:hover { color: var(--c-primary); }
  .site-nav__arrow { display: none; }

  /* Pruebas dropdown — barra horizontal pegada al header (Figma 3142-3986) */
  .site-nav__sub {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-0.375rem);
    width: 37.125rem;          /* 594px */
    height: 4.5rem;            /* 72px */
    background: #fff;
    border-radius: 0 0 0.9375rem 0.9375rem; /* 15px solo abajo */
    box-shadow: var(--shadow-card-lg);
    padding: 0 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 60;
  }
  .site-nav__item--has-sub.is-open .site-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .site-nav__sub li { display: flex; flex: 0 0 auto; }
  /* Tab con subrayado de color de marca por producto */
  .site-nav__sub a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    font-size: 1.125rem;
    color: var(--c-text);
    white-space: nowrap;
  }
  .site-nav__sub a::after {
    content: "";
    width: 100%;
    height: 0.1875rem;         /* 3px */
    border-radius: 62.4375rem;
    background: currentColor;   /* override por item abajo */
  }
  .site-nav__sub li:nth-child(1) a::after { background: linear-gradient(90deg, #6D3FA6, #2A2A80); } /* Selección */
  .site-nav__sub li:nth-child(2) a::after { background: linear-gradient(90deg, #00A9E4, #0071BC); } /* Vocacional */
  .site-nav__sub li:nth-child(3) a::after { background: linear-gradient(90deg, #E0564E, #8E1F2B); } /* Organizacional */
  .site-nav__sub li:nth-child(1) a { font-weight: 700; } /* Selección destacada (Figma) */
  .site-nav__sub a:hover { font-weight: 700; }
}
/* ============================================================
   SECTION: HERO
   ============================================================ */
.s-hero {
  background: var(--g-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 50.6875rem;
}
.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.s-hero__inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
  padding-top: 3rem;
  padding-bottom: 3.75rem;
  min-height: inherit;
}
.s-hero__eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
  opacity: 0.92;
}
.s-hero__title {
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 900;
}
.s-hero__title small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 1;
  margin-bottom: 0.75rem;
}
.s-hero__lead {
  font-size: 0.9375rem;
  opacity: 1;
  margin: 1.25rem 0 1.75rem;
  max-width: 33.75rem;
}
.s-hero__disclaimer {
  font-size: 0.6875rem;
  opacity: 0.7;
  margin-top: 0.875rem;
}
.s-hero__disclaimer--mobile { display: none; }
.s-hero__media {
  position: relative;
  min-height: 17.5rem;
  pointer-events: none;
}
.s-hero__person,
.s-hero__circle-person,
.s-hero__ai { display: block; }
.s-hero__person,
.s-hero__circle-person { width: 100%; height: auto; }
.s-hero__visual {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .s-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
  .s-hero__copy {
    align-self: center;
    margin-top: 0;
    max-width: 45rem;
  }
  .s-hero__title { font-size: 3rem; letter-spacing: -0.03rem; max-width: 45rem; }
  .s-hero__title small { font-size: 2rem; letter-spacing: -0.02rem; line-height: 1.05; margin-bottom: 1.25rem; }
  .s-hero__lead { font-size: 1.3125rem; line-height: 1.25; letter-spacing: -0.0131rem; margin: 1.75rem 0 1.875rem; }
  .s-hero .btn { min-height: 3rem; padding: 0.5rem 2rem; font-size: 1.25rem; }
  .s-hero__disclaimer { font-size: 1rem; letter-spacing: -0.01rem; margin-top: 1.375rem; }
  .s-hero__media {
    display: block;
    width: min(100%, 41.25rem);
    min-height: 0;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .s-hero { min-height: 46.4375rem; }
  .s-hero .container {
    max-width: none;
    padding-left: clamp(3rem, 6vw, 10.125rem);
    padding-right: clamp(3rem, 6vw, 10.125rem);
  }
  .s-hero__inner {
    grid-template-columns: minmax(26.875rem, 41.9375rem) minmax(26.25rem, 50.9375rem);
    column-gap: clamp(1.75rem, 3vw, 4.5rem);
    justify-content: space-between;
    align-items: start;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 46.4375rem;
  }
  .s-hero__copy {
    align-self: center;
    margin-top: 0;
    max-width: 41.9375rem;
  }
  .s-hero__title {
    font-size: clamp(3rem, 5vw, 4.0625rem);
    line-height: 1.077;
    letter-spacing: -0.01em;
    max-width: 41.9375rem;
  }
  .s-hero__title small { font-size: 2.5rem; letter-spacing: -0.025rem; line-height: 1; margin-bottom: 1.5rem; }
  .s-hero__lead { font-size: clamp(1.3125rem, 2vw, 1.5rem); line-height: normal; letter-spacing: 0; margin: 1.875rem 0 1.875rem; max-width: 41.9375rem; }
  .s-hero .btn {
    width: min(100%, clamp(17.5rem, 28vw, 22.4375rem));
    min-height: 3.125rem;
    padding: 0.5rem 2rem;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1;
  }
  .s-hero__media {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 50.9375rem;
    height: auto;
    min-height: 0;
    margin-top: 0;
    transform: none;
  }
  .s-hero__visual {
    width: 100%;
    height: auto;
  }
  .s-hero__person {
    position: absolute;
    right: 0.9375rem;
    top: 0.375rem;
    width: 36.25rem;
    height: 41.5rem;
    object-fit: cover;
    object-position: center;
  }
  .s-hero__circle-person {
    position: absolute;
    left: 21.25rem;
    top: 15.1875rem;
    width: 9.4375rem;
    height: 9.4375rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 50%;
    background: #70bf54;
    box-shadow: 0 0 0 0.25rem #70bf54;
  }
  .s-hero__ai {
    position: absolute;
    right: 0.9375rem;
    top: 24.875rem;
    width: 12.5rem;
    height: 12.5rem;
    filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.65));
  }
}
@media (min-width: 1200px) {
  .s-hero__title { font-size: 4.0625rem; }
}
@media (min-width: 1440px) {
  .s-hero__title {
    display: flex;
    align-items: center;
    min-height: 11.875rem;
  }
}
@media (min-width: 1024px) {
  /* Hero web 2026 — ajuste a Figma node 3001:11760 (canvas 1920px) */
  .s-hero { min-height: 43.75rem; }
  .s-hero__inner {
    grid-template-columns: minmax(0, 49rem) minmax(0, 49.4375rem);
    align-items: center;
    min-height: 43.75rem;
  }
  .s-hero__copy { max-width: 49rem; }
  /* H1 SEO sobre el titular (eyebrow). Visible pero secundario al titular grande. */
  .s-hero__eyebrow { font-size: 1.25rem; margin-bottom: 1rem; }
  .s-hero__title {
    font-size: 3.4375rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    min-height: 0;
    max-width: 49.0625rem;
    display: block;
  }
  .s-hero__lead {
    font-size: 1.5rem;
    line-height: normal;
    max-width: 45.25rem;
    margin: 1.875rem 0;
  }
  .s-hero .btn {
    width: 28.875rem;
    max-width: 100%;
    min-height: 3rem;
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1;
    border: 0.125rem solid #fff;
    border-radius: 5rem;
  }
  .s-hero__disclaimer { font-size: 1rem; opacity: 1; margin-top: 1.5rem; }
  /* Media pegado al borde inferior y derecho (Figma: visual bottom = section bottom) */
  .s-hero__media {
    max-width: 49.4375rem;
    align-self: end;
    justify-self: end;
  }
  .s-hero__visual { display: block; margin-bottom: -0.0625rem; }
  /* Marca de agua: isotipo PsicoAlianza (Figma 3001:11765) */
  .s-hero::before {
    background-image: url('../img/hero/iso-bg.svg');
    background-repeat: no-repeat;
    background-position: right -1.25rem top -7.5rem;
    background-size: auto 56rem;
  }
}

/* (Removido el override 1024–1199px de .s-hero__inner: con el escalado
   proporcional el layout base de 2 columnas escala en bloque sin necesidad
   de re-balancear las columnas a media resolución.) */

/* ---- pruebas-specific media: chips + AI graphic ---- */
.s-hero__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.s-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  background: #fff;
  color: var(--c-text);
  border: 0.0625rem solid var(--c-border);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-card);
}
.s-hero__chip img { width: 1.5rem; height: 1.5rem; }
@media (max-width: 1023px) {
  .s-hero__ai {
    width: 100%;
    max-width: 30rem;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .s-hero__chips {
    position: absolute;
    left: 0.9375rem;
    top: 4.9375rem;
    display: block;
    width: 35rem;
    height: 32.5rem;
    margin: 0;
    z-index: 2;
  }
  .s-hero__chips::before {
    content: "";
    position: absolute;
    left: -0.9375rem;
    top: -4.9375rem;
    width: 50.9375rem;
    height: 42.25rem;
    background: url('../img/hero/hero-blob.svg') center/contain no-repeat;
    opacity: 1;
    z-index: -1;
  }
  .s-hero__chip {
    position: absolute;
    min-height: 4.1875rem;
    padding: 0 1.375rem;
    border: 0;
    border-radius: 2.8125rem;
    box-shadow: none;
    color: #fff;
    font-size: 1.625rem;
    line-height: 1.5625rem;
    font-weight: 900;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
  .s-hero__chip:nth-child(1) {
    top: 0;
    left: 9.125rem;
    width: 18.5rem;
    height: 5.125rem;
    background: url('../img/hero/chip-personalidad-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(2) {
    top: 8.25rem;
    left: 1.5625rem;
    width: 18.75rem;
    height: 5.125rem;
    background: url('../img/hero/chip-valores-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(3) {
    top: 16.5rem;
    left: 2.6875rem;
    width: 17.4375rem;
    height: 4.1875rem;
    background: url('../img/hero/chip-inteligencia-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(4) {
    top: 23.75rem;
    left: 9.125rem;
    width: 25.5rem;
    height: 5.125rem;
    background: linear-gradient(270deg, #283c80 0%, #61308c 100%);
  }
  .s-hero__chip img {
    position: absolute;
    left: -1.6875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3.3125rem;
    height: 3.3125rem;
  }
}

/* ============================================================
   SECTION: VIDEO (Figma node 3001:11792 — port de landing_ats)
   ============================================================ */
.s-video {
  background: var(--c-bg) url('../img/video/video-bg.svg') center/cover no-repeat;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.s-video__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.s-video__player {
  position: relative;
  border-radius: 0.9375rem;
  overflow: hidden;
  aspect-ratio: 1029 / 578;
  background: var(--c-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.s-video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-video__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.s-video__play::before {
  content: "";
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 0.125rem solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}
.s-video__play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 1.375rem solid #fff;
  border-top: 0.875rem solid transparent;
  border-bottom: 0.875rem solid transparent;
  margin-left: 0.375rem;
}
.s-video__player:hover .s-video__play::before,
.s-video__player:focus-visible .s-video__play::before {
  background: rgba(255, 255, 255, 0.3);
}
.s-video__title {
  color: var(--c-primary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.s-video__title strong { color: var(--c-primary); font-weight: 900; }
.s-video__rule {
  width: 8.5rem;
  height: 0.3125rem;
  background: var(--c-primary);
  margin: 0 0 1.5rem;
}
.s-video__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45rem;
  height: 0.625rem;
  border-radius: 0 6.25rem 6.25rem 0;
  background: linear-gradient(270deg, #A92345 1.46%, #8C2753 13.44%, #612C68 34.14%, #472F75 49.39%, #3D307A 59.19%, #343E84 68.99%, #1D619E 89.69%, #008EBF 110.38%);
}
@media (min-width: 768px) {
  .s-video { padding: 4.5rem 0; }
  .s-video__inner { gap: 2rem; }
  .s-video__title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .s-video { padding: 0; min-height: 43.75rem; }
  .s-video__inner {
    grid-template-columns: minmax(0, 50.3125rem) 31.25rem;
    gap: 9.1875rem;
    justify-content: center;
    align-items: center;
    min-height: 43.75rem;
  }
  .s-video__title { font-size: 2.8125rem; line-height: 1.08; margin-bottom: 1.75rem; }
  .s-video__rule { margin-bottom: 1.875rem; }
  .s-video .btn {
    width: auto;
    min-height: 3rem;
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1;
    border: 0.125rem solid #fff;
    border-radius: 5rem;
  }
}

/* ============================================================
   SECTION: STATS — impacto de malas decisiones (Figma 3028:3245)
   ============================================================ */
.s-stats {
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
/* Marca de agua: isotipo PsicoAlianza detrás de texto e imagen (Figma 3028:3146) */
.s-stats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/stats/marca-agua.svg') no-repeat left top;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 0;
}
.s-stats__inner { position: relative; z-index: 1; }
.s-stats__title {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  max-width: 62rem;
  margin: 0 auto 2.5rem;
}
.s-stats__grid { display: grid; gap: 2rem; align-items: center; }
.s-stats__list { list-style: none; margin: 0; padding: 0; }
.s-stats__item {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-top: 0.0625rem solid #e2e2e2;
}
.s-stats__list .s-stats__item:last-child { border-bottom: 0.0625rem solid #e2e2e2; }
.s-stats__num { font-weight: 900; font-size: 3rem; line-height: 1; }
.s-stats__pre { display: block; font-size: 1.125rem; font-weight: 900; line-height: 1.1; }
.s-stats__desc { font-weight: 700; font-size: 1.125rem; line-height: 1.25; margin: 0; }
.s-stats__cite { font-style: italic; font-size: 0.875rem; line-height: 1.3; color: var(--c-text); opacity: 0.5; margin: 0; }
.s-stats__item--1 .s-stats__num, .s-stats__item--1 .s-stats__desc { color: var(--c-primary-300); }
.s-stats__item--2 .s-stats__num, .s-stats__item--2 .s-stats__desc { color: var(--c-primary); }
.s-stats__item--3 .s-stats__num, .s-stats__item--3 .s-stats__desc { color: var(--c-purple); }
.s-stats__media img { display: block; width: 100%; max-width: 36.75rem; height: auto; margin: 0 auto; }
.s-stats__foot { margin-top: 2rem; display: grid; gap: 1.5rem; justify-items: center; text-align: center; }
.s-stats__note { font-size: 1.125rem; line-height: 1.35; margin: 0; color: var(--c-text); }
.s-stats__note strong { font-weight: 900; }
@media (min-width: 768px) {
  .s-stats__title { font-size: 2.25rem; }
  .s-stats__note { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .s-stats { padding: 0; min-height: 45.5625rem; display: flex; align-items: center; }
  .s-stats__inner { width: 100%; }
  .s-stats__grid {
    grid-template-columns: minmax(0, 49.1875rem) minmax(0, 36.75rem);
    justify-content: space-between;
    gap: 3rem;
  }
  .s-stats__item {
    grid-template-columns: 8.8125rem 16.0625rem 14.125rem;
    justify-content: start;
    align-items: center;
    column-gap: 1.25rem;
    row-gap: 0.25rem;
    padding: 0.9375rem 0;
  }
  .s-stats__num { font-size: 4.375rem; }
  .s-stats__pre { font-size: 1.25rem; }
  .s-stats__desc { font-size: 1.25rem; }
  .s-stats__cite { font-size: 1rem; }
  .s-stats__foot {
    grid-template-columns: minmax(0, 49.1875rem) minmax(0, 36.75rem);
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
  }
  .s-stats .btn { font-size: 1.25rem; min-height: 3rem; padding: 0.5rem 2rem; border-radius: 5rem; }
}
/* Mobile/tablet: número a la izquierda, descripción + cita a la derecha (Figma mobile 3078:5221) */
@media (max-width: 1023px) {
  .s-stats__item {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1rem;
    align-items: center;
  }
  .s-stats__num { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .s-stats__desc { grid-column: 2; grid-row: 1; align-self: end; }
  .s-stats__cite { grid-column: 2; grid-row: 2; align-self: start; }
}

/* ============================================================
   SECTION: CATEGORÍAS — soluciones (Figma 3028:3246)
   ============================================================ */
.s-categorias {
  background: var(--c-bg-soft);
  padding: 3.5rem 0;
}
.s-categorias__title {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 2.5rem;
}
.s-categorias__grid {
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-categorias__card { margin: 0 0 2rem; }
.s-categorias__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}
.s-categorias__media {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease;
}
.s-categorias__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 454 / 611;
  object-fit: cover;
}
.s-categorias__link:hover { transform: translateY(-0.375rem); }
.s-categorias__link:hover .s-categorias__media { box-shadow: var(--shadow-card-lg); }
.s-categorias__body { display: block; padding: 1rem 0.25rem 0; text-align: center; }
.s-categorias__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.s-categorias__desc {
  display: block;
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}
/* Slick dots (carrusel mobile <1024): tema claro, oculta los números crudos */
.s-categorias .slick-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 0.625rem; list-style: none; padding: 0; margin: 0.25rem 0 0;
}
.s-categorias .slick-dots li { width: auto; height: auto; margin: 0; }
.s-categorias .slick-dots button {
  width: 0.75rem; height: 0.75rem; padding: 0;
  border-radius: 50%; border: 0.125rem solid var(--c-border);
  background: transparent; color: transparent; font-size: 0; line-height: 0; cursor: pointer;
}
.s-categorias .slick-dots button::before { content: none; }
.s-categorias .slick-dots .slick-active button { background: var(--c-primary); border-color: var(--c-primary); }
@media (min-width: 768px) {
  .s-categorias__title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .s-categorias { padding: 4.5rem 0; }
  .s-categorias .container { width: 100%; }
  .s-categorias__title { font-size: 2.25rem; margin-bottom: 3rem; }
  .s-categorias__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5rem;
  }
  .s-categorias__card { margin: 0; }
  .s-categorias__name { font-size: 1.5rem; }
  .s-categorias__desc { font-size: 1.125rem; }
}

/* ============================================================
   SECTION: PLATAFORMA — ecosistema 6 tabs (Figma 3003:5848 / variantes 3003:5849)
   Image-swap: el shot trae el layout; hotspots transparentes sobre los tabs.
   ============================================================ */
.s-plataforma {
  background: #fff;
  padding: 3.5rem 0;
}
.s-plataforma__sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.s-plataforma__title {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 1.5rem;
}
.s-plataforma__stage { width: 100%; }

/* --- Nav de tabs (mobile: fila scrollable) --- */
.s-plataforma__tabs {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.s-plataforma__tabs::-webkit-scrollbar { display: none; }
.s-plataforma__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.625rem 1rem;
  background: #fff;
  border: 0.0625rem solid var(--c-border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  color: var(--c-text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.s-plataforma__tab-ico {
  width: 1.375rem;
  height: 1.375rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .18s ease;
}
.s-plataforma__tab.is-active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.s-plataforma__tab.is-active .s-plataforma__tab-ico { stroke: #fff; }
.s-plataforma__tab:focus-visible { outline: 0.1875rem solid var(--c-primary-300); outline-offset: 0.125rem; }

/* --- Paneles --- */
.s-plataforma__panels { position: relative; }
.plat-panel { display: none; }
.plat-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.plat-panel__body {
  background: #fff;
  border: 0.0625rem solid var(--c-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem;
}
.plat-panel__icon { display: inline-flex; margin-bottom: 0.875rem; }
.plat-panel__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plat-panel__title {
  color: var(--c-text);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.plat-panel__lead { font-weight: 700; color: var(--c-text); margin: 0 0 0.75rem; line-height: 1.45; }
.plat-panel__lead--mixed { font-weight: 400; } /* solo el <strong> en negrita (Figma tab 4) */
.plat-panel__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.plat-panel__list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  color: var(--c-text);
  font-size: 1rem;
}
.plat-panel__list li strong { color: var(--c-text); }
.plat-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/plataforma/bullet-check.svg") center / contain no-repeat;
}
.plat-panel__list--compact { gap: 0.65rem; }
.plat-panel__list--compact li { font-weight: 400; color: var(--c-text); }
.plat-panel__foot { margin: 1rem 0 0; line-height: 1.5; color: var(--c-text); font-size: 1rem; }
.plat-panel__foot-accent { color: var(--c-primary); font-weight: 700; }
.plat-panel__shot { min-width: 0; }
.plat-panel__shot img { width: 100%; height: auto; border-radius: var(--radius-card); }

.s-plataforma__cta { display: flex; width: fit-content; margin: 1.75rem auto 0; }

@media (min-width: 768px) {
  .s-plataforma__title { font-size: 2.25rem; }
  .plat-panel__title { font-size: 1.625rem; }
  .plat-panel__list li, .plat-panel__foot { font-size: 1.0625rem; }
}
@media (min-width: 1024px) {
  .s-plataforma { padding: 4rem 0; }
  .s-plataforma .container { width: 100%; max-width: var(--container); }
  .s-plataforma__title { font-size: 2.5rem; margin-bottom: 2.5rem; } /* Figma 40px */
  .s-plataforma__stage {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
  }
  /* Nav vertical en desktop */
  .s-plataforma__tabs {
    flex-direction: column;
    gap: 0.875rem;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .s-plataforma__tab {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.25rem;
    font-size: 1.25rem;   /* Figma 20px */
  }
  .s-plataforma__tab-ico { width: 1.625rem; height: 1.625rem; }
  /* La card es el panel: [texto | imagen] adentro, esquinas e imagen recortadas */
  .plat-panel.is-active {
    display: grid;
    grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 0;
    border-radius: 1.375rem;        /* 22px */
    box-shadow: var(--shadow-card-lg);
    overflow: hidden;
  }
  .plat-panel__body {
    background: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;        /* texto centrado vertical */
  }
  .plat-panel__icon svg { width: 3rem; height: 3rem; }
  .plat-panel__title { font-size: 1.375rem; margin-bottom: 1rem; } /* Figma 22px */
  .plat-panel__list li, .plat-panel__foot { font-size: 1rem; }     /* Figma 16px */
  .plat-panel__shot {
    margin: 0;
    min-width: 0;
    display: flex;
  }
  .plat-panel__shot img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
  }
  /* Footer: línea gris a la izquierda + botón a la derecha, alineado con la card */
  .s-plataforma__foot {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-left: calc(22rem + 2.5rem); /* ancho de la columna de tabs + gap del stage */
  }
  .s-plataforma__foot::before {
    content: "";
    flex: 1 1 auto;
    height: 0.0625rem;
    background: var(--c-border);
  }
  .s-plataforma__cta {
    margin: 0;
    font-size: 1.25rem;
    min-height: 3rem;
    padding: 0.5rem 2rem;
    border-radius: 5rem;
  }
}

/* ============================================================
   SECTION: CTA BANNER — Empieza a tomar decisiones (Figma 3028:3247)
   ============================================================ */
.s-cta-banner {
  background: var(--c-blue-deep);
  color: #fff;
  padding: 3rem 0;
}
.s-cta-banner__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.s-cta-banner__media { text-align: center; }
.s-cta-banner__media img { display: inline-block; width: 100%; max-width: 29rem; height: auto; }
.s-cta-banner__title { font-size: 1.75rem; font-weight: 700; line-height: 1.15; margin: 0 0 1rem; }
.s-cta-banner__lead { font-size: 1.125rem; line-height: 1.4; margin: 0 0 1.5rem; color: #fff; }
.s-cta-banner__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.s-cta-banner__rule { display: none; height: 0.125rem; background: #fff; width: 23rem; max-width: 100%; }
@media (min-width: 768px) {
  .s-cta-banner__title { font-size: 2.25rem; }
  .s-cta-banner__lead { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .s-cta-banner { padding: 0; min-height: 31.5625rem; display: flex; align-items: center; }
  .s-cta-banner .container { width: 100%; }
  .s-cta-banner__inner {
    grid-template-columns: minmax(0, 30rem) minmax(0, 44rem);
    justify-content: space-between;
    gap: 4rem;
    min-height: 31.5625rem;
  }
  .s-cta-banner__title { font-size: 2.25rem; max-width: 34rem; }
  .s-cta-banner__lead { font-size: 1.5rem; max-width: 44rem; }
  .s-cta-banner__rule { display: block; }
  .s-cta-banner .btn { font-size: 1.25rem; min-height: 3rem; padding: 0.5rem 2rem; border-radius: 5rem; white-space: nowrap; }
}

/* ============================================================
   SECTION: ETAPAS — Evaluar nunca fue tan simple (Figma 3003:9267 / variantes 3003:2692)
   Carrusel image-swap: el shot se recorta a la banda de contenido; chrome en vivo.
   ============================================================ */
.s-etapas {
  background: var(--c-bg-dark);
  color: #fff;
  padding: 3rem 0;
  overflow: hidden;
  text-align: center;
}
.s-etapas__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.etapas-carousel { position: relative; margin: 0; }
.etapa-slide { display: grid !important; gap: 1.25rem; align-items: center; text-align: left; }
.etapa-slide__copy { padding: 0 0.25rem; }
.etapa-slide__tag {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.etapa-slide__title { font-size: 1.875rem; font-weight: 300; line-height: 1.08; margin: 0 0 1rem; }
.etapa-slide__desc { font-size: 1rem; line-height: 1.5; max-width: 30rem; opacity: 0.95; margin: 0; }
.etapa-slide__shot {
  display: block;
  position: relative;
  aspect-ratio: 770 / 510;
  overflow: hidden;
  border-radius: 0.75rem;
}
.etapa-slide__shot img {
  display: block;
  width: 249.35%;
  max-width: none;
  height: auto;
  transform: translate(-44.27%, -25.56%);   /* recorta para mostrar solo el mockup del variant */
}
.s-etapas__cta { display: inline-flex; margin-top: 1.5rem; }
/* Slick: stepper (dots) + flechas en tema oscuro */
.s-etapas .slick-dots {
  position: static;
  display: flex; justify-content: center; align-items: center;
  gap: 0.75rem; list-style: none; padding: 0; margin: 1.5rem 0 0;
}
.s-etapas .slick-dots li { width: auto; height: auto; margin: 0; }
.s-etapas .slick-dots button {
  width: 0.875rem; height: 0.875rem; padding: 0;
  border-radius: 50%; border: 0.125rem solid rgba(255, 255, 255, 0.5);
  background: transparent; color: transparent; cursor: pointer;
}
.s-etapas .slick-dots button::before { content: none; }
.s-etapas .slick-dots .slick-active button { background: var(--c-primary-300); border-color: var(--c-primary-300); }
.s-etapas .slick-prev, .s-etapas .slick-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; z-index: 2;
  border-radius: 50%; border: 0.0625rem solid rgba(255, 255, 255, 0.5); background: transparent;
}
.s-etapas .slick-prev { left: 0; }
.s-etapas .slick-next { right: 0; }
.s-etapas .slick-prev::before, .s-etapas .slick-next::before {
  font-family: inherit; opacity: 1; color: #fff; font-size: 1.75rem; line-height: 1;
}
.s-etapas .slick-prev::before { content: "\2039"; }
.s-etapas .slick-next::before { content: "\203A"; }
@media (min-width: 768px) {
  .s-etapas__title { font-size: 2.25rem; }
  .etapa-slide__title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .s-etapas { padding: 4rem 0; }
  .s-etapas .container { width: 100%; }
  .s-etapas__title { font-size: 2.25rem; margin-bottom: 2.5rem; }
  .etapas-carousel { padding: 0 4rem; }
  .etapa-slide { grid-template-columns: minmax(0, 26rem) minmax(0, 1fr); gap: 4rem; }
  .etapa-slide__title { font-size: 2.75rem; }
  .etapa-slide__desc { font-size: 1.25rem; }
  .s-etapas .btn { font-size: 1.25rem; min-height: 3rem; padding: 0.5rem 2rem; border-radius: 5rem; }
}

/* ============================================================
   SECTION: TESTIMONIOS (carrusel)
   ============================================================ */
.s-testimonios {
  padding: 4rem 0 3.5rem;
  background: var(--c-bg);
}
.s-testimonios .h-section {
  text-align: center;
  color: var(--c-primary);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 43.75rem;
}
.s-testimonios .h-section strong {
  display: inline;
  font-weight: 900;
}
.s-testimonios__stage {
  position: relative;
  margin-top: 4.75rem;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 76.8125rem;
  margin-left: auto;
  margin-right: auto;
}
/* Slick aplica overflow:hidden en .slick-list y recorta el avatar (top:-76px)
   y el footer (bottom:-36px). Le damos padding interno con margen negativo
   para conservar el layout pero exponer esos elementos absolutos. */
.s-testimonios .slick-list {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  margin-top: -5rem;
  margin-bottom: -3.75rem;
}
@media (min-width: 768px) {
  .testimonios-grid { grid-template-columns: 1fr; }
}
.testimonio-card {
  position: relative;
  background: #fff;
  border: 0.125rem solid #0071BC;
  border-radius: 1rem;
  padding: 6.25rem 4rem 4rem;
  min-height: 18.125rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonio-card__avatar {
  position: absolute;
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.5rem;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-shadow: none;
  z-index: 3;
}
.testimonio-card__quote {
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.22;
  color: var(--c-text);
  opacity: 0.5;
  letter-spacing: 0.045rem;
  margin: 0 auto 2.125rem;
  max-width: 63.25rem;
}
.testimonio-card__quote-mark {
  position: absolute;
  left: calc(50% + 5.75rem);
  top: -1.625rem;
  width: 3.5rem;
  height: 3.3125rem;
  pointer-events: none;
  opacity: 0.95;
}
.testimonio-card__footer {
  position: absolute;
  left: 50%;
  bottom: -2.25rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-size: 1.25rem;
  color: var(--c-text);
  white-space: nowrap;
}
.testimonio-card__country {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0.375rem #fff;
  position: relative;
  z-index: 1;
}
.testimonio-card__name {
  color: var(--c-primary);
  font-size: 1.5rem;
  font-weight: 400;
  background: #fff;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
.testimonio-card__name strong { font-weight: 900; }
.testimonio-card__divider {
  display: inline-block;
  width: 0.0625rem;
  height: 2rem;
  background: rgba(0, 113, 188, 0.55);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1.125rem #fff;
}
.testimonio-card__role {
  color: var(--c-text);
  font-weight: 400;
  background: #fff;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
.testimonio-card__role strong { color: var(--c-text); font-weight: 900; }
.testimonio-card__logo-wrap {
  width: 13.125rem;
  height: 4.8125rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  overflow: hidden;
}
.testimonio-card__logo {
  max-height: 3.75rem;
  max-width: 7.5rem;
  width: auto;
  object-fit: contain;
}
.testimonio-card__footer--no-logo {
  bottom: -1.3125rem;
}
.s-testimonios__arrow {
  position: absolute;
  top: 50%;
  width: 4.875rem;
  height: 4.875rem;
  border-radius: 0;
  background: url('../img/carrusel/button.svg') center / contain no-repeat;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
}
.s-testimonios__arrow::before {
  content: "";
  position: absolute;
  left: 1.8125rem;
  top: 1.1875rem;
  width: 1.25rem;
  height: 2.5rem;
  background: url('../img/carrusel/arrow-left.svg') center / contain no-repeat;
}
.s-testimonios__arrow--prev {
  left: max(0, calc((100vw - 112.75rem) / 2));
}
.s-testimonios__arrow--prev::before {
  transform: rotate(180deg);
}
.s-testimonios__arrow--next {
  right: max(0, calc((100vw - 112.75rem) / 2));
}
.s-testimonios__arrow--next::before {
  transform: none;
}
.testimonio-card__logo--wide {
  max-width: 10.625rem;
}
.testimonio-card__logo-wrap--asset {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  width: 13.125rem;
  height: auto;
}
.testimonio-card__logo--card {
  width: 13.125rem;
  height: auto;
  max-width: none;
  max-height: none;
}
.testimonio-card__logo-wrap--compact {
  width: 6.875rem;
}
.testimonio-card__logo--seal {
  max-width: 4.875rem;
  max-height: 4.375rem;
}
@media (min-width: 1024px) {
  .s-testimonios {
    min-height: 41.5625rem;
    padding: 3.875rem 0 3.5625rem;
  }
  .s-testimonios .h-section {
    font-size: 2.25rem;
    line-height: 1.18;
  }
  /* Avatar y footer centrados sobre el borde de la card que tocan (Figma 1738:11786):
     el centro del elemento queda exactamente sobre el borde (mitad dentro, mitad fuera). */
  .testimonio-card__avatar {
    top: 0;
    transform: translate(-50%, -50%);
  }
  .testimonio-card__footer {
    bottom: 0;
    transform: translate(-50%, 50%);
  }
  /* Flechas pegadas al borde de la pantalla y separadas del slider centrado.
     Se posicionan respecto al centro del stage (≈ centro del viewport) y se empujan
     al borde con vw, dejando un pequeño margen. */
  .s-testimonios__arrow--prev {
    left: 50%;
    right: auto;
    transform: translate(calc(-50vw + clamp(0.75rem, 1.2vw, 2.5rem)), -50%);
  }
  .s-testimonios__arrow--next {
    left: auto;
    right: 50%;
    transform: translate(calc(50vw - clamp(0.75rem, 1.2vw, 2.5rem)), -50%);
  }
}
@media (max-width: 1023px) {
  /* Título completo en negrita (Figma mobile 1716:15899) */
  .s-testimonios .h-section {
    max-width: none;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    font-size: 1.1875rem;
    line-height: 1.18;
    font-weight: 900;
  }

  /* Foto un poco más compacta para dejar espacio a las flechas a los lados.
     Centrada sobre el borde superior de la card (el centro queda sobre el borde,
     independiente de la altura de la imagen), igual que en desktop. */
  .testimonio-card__avatar { width: 7.5rem; top: 0; transform: translate(-50%, -50%); }
  /* Imagen 2 (Camila): por la composición de su retrato queda visualmente baja;
     se sube 10px respecto al centrado. */
  .testimonio-card__avatar[src$="testimonio-2.webp"] { transform: translate(-50%, calc(-50% - 0.625rem)); }

  /* Flechas visibles, flanqueando la foto y por encima de la card */
  .s-testimonios__stage { margin-top: 5.75rem; }
  .s-testimonios__arrow {
    display: block !important;
    top: -4.375rem;
    bottom: auto;
    transform: none;
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid #0475A4;
    border-radius: 50%;
    background: transparent;
    z-index: 4;
  }
  .s-testimonios__arrow::before {
    content: "";
    left: 50%;
    top: 50%;
    width: 0.875rem;
    height: 0.875rem;
    background: transparent;
    border-top: 0.25rem solid #0475A4;
    border-right: 0.25rem solid #0475A4;
    transform: translate(-60%, -50%) rotate(45deg);
  }
  .s-testimonios__arrow--prev { left: clamp(0.625rem, calc(50% - 10.75rem), 1.5rem); right: auto; }
  .s-testimonios__arrow--prev::before { transform: translate(-40%, -50%) rotate(225deg); }
  .s-testimonios__arrow--next { right: clamp(0.625rem, calc(50% - 10.75rem), 1.5rem); left: auto; }
  .s-testimonios__arrow--next::before { transform: translate(-60%, -50%) rotate(45deg); }

  /* Cards de igual altura: el min-height común lo calcula equalizeTestimonios() en JS
     (la altura de la card del testimonio más largo). El testimonio se centra con margin auto.
     Slick aplica `.slick-initialized .slick-slide{display:block}`, así que reforzamos el flex
     con un selector más específico para poder centrar verticalmente. */
  .s-testimonios .slick-slide.testimonio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1.5rem 3rem;
  }
  .testimonio-card__quote {
    font-size: 1.125rem;
    letter-spacing: 0;
    max-width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }
  .testimonio-card__footer {
    position: static;
    transform: none;
    flex-wrap: wrap;
    margin-top: 0;
    white-space: normal;
  }
  .testimonio-card__logo-wrap {
    margin-left: 0;
  }
}

/* ============================================================
   SECTION: LOGOS CLIENTES (banderas + carrusel)
   Ported from landing_ats/assets/css/styles.css:640-729
   ============================================================ */
.s-logos {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 3.5rem 0 4rem;
}
/* Marca de agua: blobs del motivo de marca, detrás del contenido y delante del color
   de fondo. Se usa el blob como máscara para poder teñirlo (azul tenue sobre el fondo
   claro). Aproximación con el asset de marca; afinable contra el SVG exacto de Figma. */
.s-logos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(0, 113, 188, 0.12);
  -webkit-mask: url('../img/decor/blob-watermark.svg') no-repeat;
  mask: url('../img/decor/blob-watermark.svg') no-repeat;
  -webkit-mask-size: 81.25rem auto;
  mask-size: 81.25rem auto;
  -webkit-mask-position: center;
  mask-position: center;
}
.s-logos > .container { position: relative; z-index: 1; }
.s-logos__title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 0.75rem;
}
.s-logos__title strong { font-weight: 700; }
.s-logos__subtitle {
  display: none; /* oculto en mobile; se muestra en desktop (≥1024px) */
  text-align: center;
  color: #1d1d1d;
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0 auto 1.5rem;
  max-width: 45rem;
}
.logos-carousel { margin: 0 -0.5rem 1.75rem; }
.logos-carousel .slide { padding: 0 1rem; }
.s-logos .slick-slider { position: relative; }
.s-logos .slick-prev,
.s-logos .slick-next {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url('../img/logos/boton-flecha-2.svg') center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.s-logos .slick-prev { left: -0.75rem; }
.s-logos .slick-next { right: -0.75rem; }
.s-logos .slick-prev { transform: translateY(-50%) rotate(180deg); }
.s-logos .slick-prev:hover,
.s-logos .slick-next:hover {
  opacity: 0.82;
}
.logo-item {
  height: 4rem;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
}
.logo-item img {
  max-height: 3rem;
  width: auto;
  filter: none;
  opacity: 1;
}
.s-logos__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
  text-align: center;
}
.s-logos__flags {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.s-logos__flags-strip {
  width: min(100%, 74.8125rem);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}
.s-logos__caption {
  color: #1d1d1d;
  font-size: 0.8125rem;
  margin: 0;
  opacity: 0.7;
}
.s-logos__caption strong {
  color: inherit;
  font-weight: 700;
}

@media (min-width: 768px) {
  .s-logos { padding: 5.125rem 0 4.75rem; }
  .s-logos__title {
    font-size: 2.5rem;
    letter-spacing: -0.025rem;
    margin-bottom: 1rem;
  }
  .s-logos__subtitle {
    display: block;
    font-size: 1.75rem;
    line-height: normal;
    letter-spacing: -0.0175rem;
    margin-bottom: 3rem;
    max-width: 75rem;
  }
  .logos-carousel { margin-bottom: 2.375rem; }
  .logos-carousel .slide { padding: 0 1.75rem; }
  .s-logos .slick-prev,
  .s-logos .slick-next {
    width: 2.875rem;
    height: 2.875rem;
  }
  .s-logos .slick-prev { left: clamp(-2.625rem, calc((100vw - 80rem) / -2), -1rem); }
  .s-logos .slick-next { right: clamp(-2.625rem, calc((100vw - 80rem) / -2), -1rem); }
  .logo-item {
    width: 100%;
    height: 4.8125rem;
    border-radius: 1rem;
  }
  .s-logos__footer {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    margin-top: 2.75rem;
    text-align: left;
  }
  .s-logos__flags {
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: flex-end;
    padding-right: 1.375rem;
  }
  .s-logos__flags-strip { width: min(100%, 74.8125rem); }
  .s-logos__caption {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 1.375rem;
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  /* Título mobile (Figma mobile 1716:20201): debe ocupar 2 líneas. El texto es largo,
     así que se le da más ancho (margen horizontal negativo) y un tamaño que entre en 2. */
  .s-logos__title { font-size: 1.1875rem; line-height: 1.25; margin-left: -0.5rem; margin-right: -0.5rem; }
  /* 3 logos por vista: menos padding lateral por slide para que quepan. */
  .logos-carousel .slide { padding: 0 0.5rem; }
  .s-logos__footer {
    flex-direction: column;
    gap: 0.875rem;
    text-align: center;
  }
  .s-logos__flags,
  .s-logos__caption {
    flex: none;
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .s-logos__flags {
    justify-content: center;
  }
  /* Mobile (Figma): el texto "Más de 3.750 empresas…" va entre los logos y las
     banderas, así que el caption se muestra antes de la tira de banderas. */
  .s-logos__caption {
    order: -1;
  }
  /* En mobile el carrusel de clientes no lleva flechas (Figma): solo swipe/autoplay.
     Slick fija display:inline-block inline en los botones, por eso se necesita !important. */
  .s-logos .slick-prev,
  .s-logos .slick-next {
    display: none !important;
  }
}

/* ============================================================
  SECTION: MAPA LATAM
============================================================ */
.s-mapa {
  position: relative;
  padding: 4rem 0;
  background: var(--c-primary);
  color: #FFFFFF;
  overflow: hidden;
}
/* Marca de agua: mismos blobs de marca, en blanco muy tenue sobre el azul, detrás del
   contenido y delante del color de fondo. */
.s-mapa::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-mask: url('../img/decor/blob-watermark.svg') no-repeat;
  mask: url('../img/decor/blob-watermark.svg') no-repeat;
  -webkit-mask-size: 56.25rem auto;
  mask-size: 56.25rem auto;
  -webkit-mask-position: calc(100% + 7.5rem) center;
  mask-position: calc(100% + 7.5rem) center;
}
.s-mapa > .container { position: relative; z-index: 1; }
.s-mapa__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.s-mapa__media {
  margin: 0 auto;
  max-width: 45rem;
  width: 100%;
}
.s-mapa__media img {
  width: 100%;
  height: auto;
  display: block;
}
.s-mapa__bullets {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 0 0 1.5rem;
}
.s-mapa__bullets li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.s-mapa__bullets img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}
.s-mapa__bullets p {
  font-size: 1.0625rem;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
  padding-top: 0.375rem;
}
.s-mapa__close {
  font-size: 1.0625rem;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
}
.s-mapa__close strong {
  font-weight: 900;
}

@media (min-width: 1024px) {
  .s-mapa {
    min-height: 39.6875rem;
    padding: 0;
  }
  .s-mapa .container {
    max-width: min(100.5rem, 100%);
    padding: 0;
  }
  .s-mapa__inner {
    grid-template-columns: minmax(0, 52.4375rem) minmax(29.375rem, 39.125rem);
    gap: clamp(3rem, 7vw, 8.4375rem);
    align-items: center;
  }
  .s-mapa__media {
    max-width: none;
    width: 100%;
    overflow: hidden;
  }
  .s-mapa__media img { margin-bottom: -0.125rem; }
  .s-mapa__copy {
    max-width: 39.125rem;
  }
  .s-mapa__bullets { gap: 1.875rem; margin-bottom: 1.875rem; }
  .s-mapa__bullets img { width: 4.125rem; height: 4.125rem; }
  .s-mapa__bullets li { gap: 1.5rem; }
  .s-mapa__bullets p { padding-top: 0.5rem; }
  .s-mapa__bullets p,
  .s-mapa__close { font-size: 1.375rem; line-height: normal; }
}

@media (min-width: 1200px) {
  .s-mapa__bullets p,
  .s-mapa__close { font-size: 1.5rem; }
}

/* (Removido el override 1024–1599px de .s-mapa: con el escalado proporcional
   el layout base de 2 columnas escala en bloque a todo ancho desktop.) */
/* ============================================================
   SECTION: CUMPLIMIENTO
   ============================================================ */
.s-cumplimiento {
  background: #0A0A21 url('../img/cumplimiento/cumplimiento-background.png') center/cover no-repeat;
  color: #fff;
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.s-cumplimiento::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(45.0625rem, 42vw);
  height: 0.75rem;
  border-radius: 0 6.25rem 6.25rem 0;
  background: #FFFFFF;
}
.s-cumplimiento .container { position: relative; z-index: 1; }
.s-cumplimiento .h-section { color: #fff; }
.s-cumplimiento .lead { color: #fff; }
.s-cumplimiento .lead strong { color: #fff; font-weight: 900; }
.s-cumplimiento .cumplimiento-list li { color: #fff; }
.cumplimiento-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.cumplimiento-list { margin-top: 1rem; padding-left: 1.5rem; }
.cumplimiento-list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 2rem;
  border-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.cumplimiento-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  background: url('../img/cumplimiento/icono-bullet-normas.svg') center / contain no-repeat;
  opacity: 0.9;
}
.cumplimiento-list li strong { font-weight: 900; }
.cumplimiento-badges {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cumplimiento-badges img {
  background: transparent;
  border-radius: 0;
  padding: 0;
  max-height: none;
  object-fit: contain;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .s-cumplimiento {
    min-height: auto;
    padding: 5.125rem 0 4.375rem;
  }
  .cumplimiento-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  .s-cumplimiento .h-section {
    font-size: 2.625rem;
    font-weight: 900;
    letter-spacing: -0.0262rem;
    line-height: 1.02;
    margin-bottom: 1.75rem;
  }
  .s-cumplimiento .lead {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 1.875rem;
  }
  .s-cumplimiento .lead strong { font-weight: 900; }
  .cumplimiento-list li {
    font-size: 1.25rem;
    line-height: 1.2;
    padding-left: 3.875rem;
    margin: 1.3125rem 0;
  }
  .cumplimiento-list li::before {
    top: 0.25rem;
    left: 0;
    width: 1.0625rem;
    height: 1rem;
  }
  .cumplimiento-badges {
    justify-content: center;
    align-self: center;
    padding-bottom: 0;
    width: min(49.25rem, 100%);
    aspect-ratio: 788 / 421;
  }
  .cumplimiento-badges img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .s-cumplimiento {
    min-height: 42.875rem;
    padding: 0;
  }
  .cumplimiento-inner {
    width: min(99.75rem, calc(100% - 4rem));
    max-width: none;
    min-height: 42.875rem;
    padding: 0;
    grid-template-columns: minmax(26.875rem, 39.125rem) minmax(22.5rem, 49.25rem);
    gap: clamp(3rem, 9.48vw, 11.375rem);
    align-items: start;
    justify-content: center;
  }
  .cumplimiento-inner > div:first-child {
    padding-top: 6.25rem;
  }
  .s-cumplimiento .h-section {
    width: 34.75rem;
    max-width: 100%;
    margin-bottom: 2.25rem;
    font-size: 2.25rem;
    line-height: 1.01;
    letter-spacing: -0.0225rem;
  }
  .s-cumplimiento .lead {
    max-width: 39.125rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.22;
  }
  .cumplimiento-list {
    margin-top: 2rem;
    padding-left: 3.8125rem;
    max-width: 35.8125rem;
  }
  .cumplimiento-list li {
    padding: 0 0 0 2.75rem;
    margin: 0 0 1.3125rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .cumplimiento-list li:nth-child(2) { margin-bottom: 0.8125rem; }
  .cumplimiento-badges {
    justify-content: center;
    align-self: start;
    margin-top: 8.3125rem;
    width: 100%;
    max-width: 49.25rem;
  }
}

/* ============================================================
   SECTION: FAQ
============================================================ */
.s-faq { padding: 5rem 0; background: #fff; }
.s-faq .h-section {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--c-primary);
}
.s-faq__list {
  max-width: 97.4375rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.s-faq__item {
  position: relative;
  border: 0;
  background: transparent;
}
.s-faq__item::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 5.5rem;
  bottom: 0;
  height: 0.0625rem;
  background: #B0B0B0;
}
.s-faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.125rem 1.25rem 1.125rem 2rem;
  text-align: left;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  opacity: 0.65;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.s-faq__q span {
  display: block;
  max-width: 100%;
}
.s-faq__q img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.s-faq__item.is-open .s-faq__q img {
  transform: rotate(180deg);
}
.s-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 1.25rem 0 2rem;
}
.s-faq__item.is-open .s-faq__a {
  max-height: 31.25rem;
  padding: 0 1.25rem 1.25rem 2rem;
}
.s-faq__a p { color: var(--c-text-muted); margin: 0; }
@media (min-width: 1024px) {
  .s-faq .h-section {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.0225rem;
  }
  .s-faq__q {
    grid-template-columns: minmax(0, 1fr) 2.5rem;
    font-size: 1.5rem;
    padding: 1.375rem 1.25rem 1.375rem 9.75rem;
  }
  .s-faq__item::after {
    left: 9.75rem;
    right: 5.75rem;
  }
  .s-faq__q img { width: 2.5rem; height: 2.5rem; }
  .s-faq__a,
  .s-faq__item.is-open .s-faq__a { padding-left: 9.75rem; padding-right: 5.75rem; }
}
/* ============================================================
   SECTION: FORM
   ============================================================ */
.s-form {
  background: var(--c-primary);
  color: #fff;
  padding: 3.125rem 0 3.625rem;
}
.s-form .h-section {
  color: #fff;
  text-align: center;
  max-width: 21.25rem;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  line-height: 1.17;
  font-weight: 900;
}
.s-form .lead {
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-inline: auto;
  max-width: 21.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 300;
}
.demo-form {
  margin-top: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 21.25rem;
  margin-inline: auto;
}
.demo-form .input,
.demo-form .select,
.demo-form .select select {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  border: 0;
  background: #fff;
  color: var(--c-text);
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 300;
  line-height: normal;
}
.demo-form .input::placeholder {
  color: #9a9a9a;
  opacity: 1;
  font-weight: 300;
}
.demo-form .select {
  padding: 0;
  display: flex; align-items: center;
}
.demo-form .select .flag {
  margin-left: 0.875rem;
  width: 1.375rem; height: 1.375rem;
  border-radius: 50%;
  background: linear-gradient(#f8d12f 0 50%, #1f54a8 50% 75%, #c92f36 75%);
}
.demo-form .select select {
  background: transparent;
  border: none;
  padding: 0 1rem;
  flex: 1;
}
.demo-form .select select:invalid { color: #9a9a9a; }
.demo-form .select select option { color: var(--c-text); }
.demo-form .checkbox {
  display: flex; align-items: flex-start; gap: 0.625rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 300;
  opacity: 1;
}
.demo-form .checkbox a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.demo-form .checkbox input {
  appearance: none;
  flex: 0 0 auto;
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.0625rem;
  border: 0.0938rem solid #fff;
  border-radius: 0.1875rem;
  background: transparent;
  display: grid;
  place-items: center;
}
.demo-form .checkbox input::after {
  content: "";
  width: 0.4375rem;
  height: 0.25rem;
  border-left: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .12s ease;
}
.demo-form .checkbox input:checked::after { transform: rotate(-45deg) scale(1); }
/* El texto va al lado del checkbox (toma el ancho restante y, si hace falta, hace
   wrap dentro de su propia columna en vez de bajar a una línea bajo el checkbox). */
.demo-form .checkbox > span:not(.demo-form__error) { flex: 1 1 auto; min-width: 0; }
.demo-form__actions {
  display: grid;
  gap: 0.875rem;
}
/* ---- Field wrappers + inline validation errors ---- */
.demo-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.demo-form__error {
  display: none;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #ffd2d2;
  font-weight: 700;
}
.demo-form__field.has-error .demo-form__error,
.demo-form__captcha-wrap.has-error .demo-form__error,
.demo-form .checkbox.has-error .demo-form__error {
  display: block;
}
.demo-form .checkbox { flex-wrap: wrap; }
.demo-form .checkbox.has-error .demo-form__error { flex-basis: 100%; width: 100%; }
.demo-form__field.has-error .input,
.demo-form__field.has-error .select {
  outline: 0.125rem solid #ff6b6b;
  outline-offset: 0;
}

/* ---- Phone field (Figma 739:10350): UNA sola caja blanca con bandera + caret a la
   izquierda y el número a continuación; sin texto "+57" ni cajas separadas. ---- */
.demo-form__phone {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 0.5rem;
  height: 2.75rem;
}
.demo-form .demo-form__phone .demo-form__phone-number {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0 1rem 0 0.125rem;
}
.demo-form .select--cargo { display: block; padding: 0; }
.demo-form .select--cargo select { width: 100%; padding: 0 1rem; }

/* ---- Dropdown de código de país con bandera (.phone-cc) ---- */
.phone-cc { position: relative; flex: 0 0 auto; min-width: 0; }
.phone-cc__btn {
  display: flex; align-items: center; gap: 0.5rem;
  height: 100%; min-height: 2.75rem;
  padding: 0 0.5rem 0 0.875rem;
  background: transparent;
  border: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  color: var(--c-text);
  font-size: 0.9375rem;
  font-weight: 300;
  font-family: inherit;
  cursor: pointer;
}
.phone-cc__flag {
  width: 1.625rem; height: 1.625rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* Figma: el selector muestra solo bandera + caret (sin el código "+57"). */
.phone-cc__code { display: none; }
.phone-cc__caret {
  margin-left: 0;
  width: 0; height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.375rem solid #5a5a5a;
  transition: transform .15s ease;
}
.phone-cc.is-open .phone-cc__caret { transform: rotate(180deg); }
.phone-cc__menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  z-index: 30;
  min-width: 15.625rem;
  max-height: 17.5rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.375rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card-lg);
  display: none;
}
.phone-cc.is-open .phone-cc__menu { display: block; }
.phone-cc__opt {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.5625rem 0.625rem;
  border-radius: 0.375rem;
  cursor: pointer;
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 300;
  white-space: nowrap;
}
.phone-cc__opt:hover { background: var(--c-bg-soft); }
.phone-cc__opt.is-selected { background: rgba(0, 113, 188, 0.08); }
.phone-cc__opt img {
  width: 1.375rem; height: 1.375rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.phone-cc__opt-name { flex: 1 1 auto; }
.phone-cc__opt-code { color: var(--c-text-muted); font-weight: 700; }

/* ---- Captcha: Google reCAPTCHA v2 (widget oficial, 304x78) ---- */
.demo-form .g-recaptcha {
  display: inline-block;
  line-height: 0;
  /* El widget de reCAPTCHA es un iframe de tamaño fijo (304×78px) que no escala
     con el rem. Lo escalamos con la misma tasa que el layout (--cap-scale lo
     setea initCaptchaScale() en app.js: vw/1920 en desktop, 1 en mobile) para
     que ocupe exactamente su wrapper de 19rem y no pise el botón. */
  transform: scale(var(--cap-scale, 1));
  transform-origin: top left;
}

/* ---- Mensaje de estado del envío (error de /api/contact) ---- */
.demo-form__status {
  display: none;
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffd2d2;
}
.demo-form__status.is-error { display: block; }
.demo-form__submit {
  justify-self: center;
  min-width: 16.25rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}
.s-hero .btn,
.demo-form__submit {
  letter-spacing: 0;
}
.form-success {
  display: none;
  margin-top: 1rem;
  text-align: center;
  padding: 0.875rem 1.125rem;
  background: rgba(21,195,154,0.18);
  border: 0.0625rem solid rgba(21,195,154,0.5);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.form-success.is-visible { display: block; }
@media (min-width: 768px) {
  .s-form {
    min-height: 37.8125rem;
    padding: 6.6875rem 0 5.125rem;
  }
  .s-form .h-section {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 900;
    max-width: none;
    margin-bottom: 1.375rem;
  }
  .s-form .lead {
    max-width: 51.3125rem;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 2.625rem;
  }
  .demo-form {
    grid-template-columns: 1fr 1fr;
    gap: 1.1875rem 1.8125rem;
    max-width: 79.5625rem;
    margin-top: 0;
  }
  .demo-form .span-2 { grid-column: 1 / -1; }
  .demo-form .input,
  .demo-form .select,
  .demo-form .select select {
    height: 2.75rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-weight: 300;
  }
  .demo-form__field--nombre { grid-column: 1 / -1; order: 1; }
  .demo-form__field--email { order: 2; }
  .demo-form__field--telefono { order: 3; }
  .demo-form__field--empresa { order: 4; }
  .demo-form__field--cargo { order: 5; }
  .demo-form .demo-form__phone .demo-form__phone-number { padding: 0 1.25rem 0 0.25rem; }
  .demo-form .select--cargo select { padding: 0 1.25rem; }
  .phone-cc__btn {
    padding-left: 1rem;
    font-size: 1.125rem;
  }
  .phone-cc__flag {
    width: 1.75rem;
    height: 1.75rem;
  }
  .demo-form__actions {
    order: 6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.9375rem;
  }
  .demo-form .checkbox {
    width: 23.8125rem;
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 300;
  }
  .demo-form .checkbox input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.1875rem;
  }
  /* Caja del captcha = tamaño escalado del iframe (304×78px × --cap-scale).
     19rem = 304px y 4.875rem = 78px a root 16px; ambos escalan con el rem, así
     que el iframe escalado por transform llena exactamente el wrapper. */
  .demo-form__captcha-wrap { width: 19rem; height: 4.875rem; overflow: hidden; }
  .demo-form__submit {
    width: 30.8125rem;
    justify-self: stretch;
    align-self: center;
    min-height: 3rem;
    font-size: 1.25rem;
  }
  .form-success { order: 7; }
}

/* ============================================================
   FORM — landing_pruebas overrides (real flag <img> instead of CSS span)
   ============================================================ */
.demo-form .select img.flag {
  margin-left: 0.875rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   SUCCESS POPUP — Solicitud enviada (Figma 739:9584)
   ============================================================ */
.s-success { position: fixed; inset: 0; z-index: 1000; }
.s-success[hidden] { display: none; }
body.is-modal-open { overflow: hidden; }
.s-success__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 33, 0.55);
}
.s-success__card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(60.4375rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #f5f5f5;
  border-radius: 1.25rem;
  padding: 3.5rem 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-card-lg);
}
.s-success__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.s-success__icon { display: inline-flex; margin-bottom: 1rem; }
.s-success__icon svg { display: block; }
.s-success__title {
  color: #16bf9c;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.125rem;
}
.s-success__text {
  color: #1d1d1d;
  font-size: 1.125rem;
  line-height: 1.4;
  max-width: 52.9375rem;
  margin: 0 auto 1.125rem;
}
.s-success__note {
  color: #1d1d1d;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.4;
  max-width: 39.0625rem;
  margin: 0 auto 1.875rem;
}
.s-success__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.s-success__btn {
  min-height: 3rem;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s-success__btn--ghost { background: #fff; color: #0071bc; }
.s-success__btn--solid { background: #16bf9c; color: #fff; border: 0.125rem solid #fff; }

@media (max-width: 767px) {
  .s-success__card { padding: 2.75rem 1.375rem 2rem; }
  .s-success__title { font-size: 1.25rem; }
  .s-success__text { font-size: 1rem; }
  .s-success__note { font-size: 0.875rem; }
  .s-success__actions { flex-direction: column; }
  .s-success__btn { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 1.75rem;
}
.site-footer__inner {
  display: grid;
  gap: 1.75rem;
}
.site-footer__brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 700; font-size: 1.125rem;
}
.site-footer__brand img { width: min(25.0625rem, 100%); height: auto; }
.site-footer__brand span {
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0.625rem;
}
.site-footer__brand strong {
  font-size: 2.75rem;
  letter-spacing: 0;
  font-weight: 900;
}
.site-footer h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
  color: var(--c-primary-300);
  margin-bottom: 0.75rem;
  font-weight: 900;
}
.site-footer ul li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  opacity: 0.85;
}
.site-footer ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.site-footer ul img {
  width: 1.125rem;
  height: 1.125rem;
}
.socials {
  display: flex; gap: 0.75rem;
  margin-top: 0.25rem;
}
.socials a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.socials a:hover { background: transparent; }
.socials img { width: 1.125rem; height: 1.125rem; }
.site-footer__legal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; opacity: 0.7;
}
@media (min-width: 768px) {
  .site-footer {
    min-height: 28.625rem;
    padding: 6.0625rem 0 3.5625rem;
  }
  .site-footer__inner {
    grid-template-columns: 20rem 13rem 16rem 18rem;
    justify-content: start;
    column-gap: 4.5rem;
    row-gap: 2rem;
    align-items: start;
  }
  .site-footer__brand { gap: 1.5rem; }
  .site-footer h3 { font-size: 1.75rem; margin-bottom: 1.375rem; }
  .site-footer__inner > div:nth-child(2) h3 { font-size: 1.625rem; }
  .site-footer ul li { font-size: 1.375rem; }
  .site-footer ul img {
    width: 1.75rem;
    height: 1.75rem;
  }
  .socials { gap: 1.75rem; }
  .socials a {
    width: 2.9375rem;
    height: 2.9375rem;
    background: transparent;
  }
  .socials img { width: 2.9375rem; height: 2.9375rem; }
  .site-footer__legal {
    margin-top: 9.0625rem;
    padding-top: 1.375rem;
    border-top: 0.1875rem solid var(--c-primary-300);
    font-size: 1.125rem;
    opacity: 1;
  }
}

/* ============================================================
   GLOBAL: WhatsApp sticky
============================================================ */
.wa-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(to left, #16BF9C 0%, #1BCE97 0.01%, #007DAE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: transform .15s ease;
}
.wa-sticky:hover { transform: scale(1.05); }
.wa-sticky img { width: 3rem; height: 3rem; }

@media (max-width: 767px) {
  .wa-sticky { width: 4rem; height: 4rem; bottom: 1rem; right: 1rem; }
  .wa-sticky img { width: 2.25rem; height: 2.25rem; }
}

/* ============================================================
   RESPONSIVE GUARDRAILS — Figma mobile node 1585:14353
   ------------------------------------------------------------
   The codebase is mobile-first: rules above are the mobile
   baseline; `@media (min-width: 768px|1024px)` scale UP to
   tablet/desktop. This block adds *additive* protections at
   narrow widths and locks desktop-only chrome (e.g. nav links)
   so it never leaks into mobile.
   Do NOT modify rules above this line — fix bugs in their
   section. This block is for cross-cutting overrides only.
============================================================ */

/* ---------- Tablet + mobile (≤ 1023px) ---------- */
@media (max-width: 1023px) {
  /* Logos flags: tighter wrap so banner row never overflows */
  .s-logos__flags { flex-wrap: wrap; gap: 0.5rem; }

  /* Mapa LATAM: stack vertical, image first then bullets */
  .s-mapa__inner { grid-template-columns: 1fr; }

  /* Cumplimiento: stack copy + badges, full-width grid item */
  .cumplimiento-inner { grid-template-columns: 1fr; }

  /* Form: single-column inputs, full-width submit */
  .demo-form { grid-template-columns: 1fr; }
  .demo-form__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  /* Orden invertido en mobile (Figma 1585): primero captcha, luego política.
     Ambos centrados horizontalmente; el botón va full-width al final. */
  .demo-form__captcha-wrap {
    order: 1;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .demo-form .checkbox {
    order: 2;
    width: auto;
    max-width: 21.25rem;
    justify-content: center;
    text-align: center;
  }
  .demo-form__submit {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  /* Footer: stack columns vertically */
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Mobile only (≤ 767px) ---------- */
@media (max-width: 767px) {
  /* Tighter container padding edge-to-edge */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile Figma: secciones de logos y mapa sin marca de agua de fondo. */
  .s-logos::before,
  .s-mapa::before {
    content: none;
  }

  /* Header mobile: logo izquierda + hamburguesa derecha (Figma 3044-8764). */
  .site-header__inner {
    height: 4.375rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header__logo-img { width: 9rem; }

  /* Hero: Figma mobile composition isolated from the desktop artwork. */
  .s-hero {
    min-height: 37.5rem;
    background: #0a0a21;
  }
  .s-hero .container {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
  .s-hero__inner {
    display: block;
    min-height: 37.5rem;
    padding-top: 3rem;
    padding-bottom: 0;
  }
  .s-hero__copy {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .s-hero__title {
    display: block;
    min-height: 0;
    max-width: 19.375rem;
    margin: 0 auto;
    font-size: 1.75rem;
    line-height: 1.18;
  }
  .s-hero__lead {
    max-width: 20.375rem;
    margin: 0.9375rem auto 1rem;
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .s-hero .btn {
    width: 100%;
    max-width: 21.5rem;
    min-height: 2.1875rem;
    padding: 0.375rem 1.25rem;
    font-size: 1rem;
    line-height: 1;
  }
  .s-hero__disclaimer--mobile {
    display: block;
    margin: 0.9375rem auto 0;
    font-size: 0.625rem;
    line-height: 1.2;
    opacity: 1;
  }
  .s-hero__media {
    width: 100vw;
    min-height: 20.375rem;
    margin-top: 0.375rem;
    margin-left: calc(50% - 50vw);
  }
  .s-hero__media::before {
    content: none;
  }
  .s-hero__visual {
    width: 100%;
    max-width: 25.75rem;
    height: auto;
    margin: 0 auto;
  }
  .s-hero__chips,
  .s-hero__person,
  .s-hero__circle-person,
  .s-hero__ai {
    display: none;
  }

  /* Logos: caption + flags stack */
  .s-logos__footer { text-align: center; }

  /* Mapa bullets: tighter gap to keep section short on mobile */
  .s-mapa__copy { order: 1; }
  .s-mapa__media { order: 2; }
  .s-mapa__bullets { gap: 1rem; }

  /* Cumplimiento: title scale + bottom-padding cushion under bg image */
  .s-cumplimiento {
    padding: 3.5625rem 0 4.375rem;
  }
  .s-cumplimiento::after {
    width: 70%;
    height: 0.5rem;
  }
  .s-cumplimiento .container {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
  .cumplimiento-inner {
    gap: 2.125rem;
    text-align: center;
  }
  .s-cumplimiento .h-section {
    max-width: 20rem;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: center;
  }
  .s-cumplimiento .lead {
    max-width: 19.875rem;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.28;
    text-align: center;
  }
  .cumplimiento-list {
    max-width: 19.875rem;
    margin: 1.5rem auto 0;
    padding-left: 0;
    text-align: left;
  }
  .cumplimiento-list li {
    padding: 0.4375rem 0 0.4375rem 1.75rem;
    font-size: 0.8125rem;
    line-height: 1.35;
  }
  .cumplimiento-list li::before {
    top: 0.625rem;
    width: 0.875rem;
    height: 0.875rem;
  }
  .cumplimiento-badges {
    width: 100%;
    max-width: 19.875rem;
    margin: 0 auto;
    border-radius: 0.75rem;
  }

  /* FAQ question padding tighter on phones */
  .s-faq__item::after {
    left: -1rem;
    right: -1rem;
  }
  .s-faq__q {
    grid-template-columns: minmax(0, 1fr) 2.125rem;
    padding: 1rem 1.25rem;
    gap: 1.125rem;
  }
  .s-faq__q img {
    width: 2.125rem;
    height: 2.125rem;
  }

  /* Footer mobile (Figma 3044:8746): 4 columnas → stack.
     DOM: (1)=brand  (2)=Pruebas psicotécnicas  (3)=Habla con nosotros  (4)=redes.
     Orden visual: contacto → pruebas → línea azul → logo → redes → legal.
     Columnas de texto alineadas a la IZQUIERDA; logo, redes y legal centrados. */
  .site-footer { padding: 3.5625rem 0 4.875rem; }
  .site-footer .container {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1.75rem;
  }
  .site-footer__inner > div:nth-child(3) { order: 1; }   /* contacto */
  .site-footer__inner > div:nth-child(2) { order: 2; }   /* pruebas psicotécnicas */
  .site-footer__inner > div:nth-child(1) {               /* brand + línea divisora */
    order: 3;
    position: relative;
    width: 100%;
    padding-top: 1.6875rem;
    margin-top: 0.25rem;
  }
  .site-footer__inner > div:nth-child(4) { order: 4; }   /* redes */

  /* Línea divisora azul entre los links y el logo */
  .site-footer__inner > div:nth-child(1)::before {
    content: "";
    display: block;
    width: 8.6875rem;
    height: 0.1875rem;
    background: var(--c-primary);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Columnas de texto: alineadas a la izquierda */
  .site-footer h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 1.125rem;
  }
  .site-footer ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0;
  }
  .site-footer ul li {
    width: 100%;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.25;
    opacity: 1;
  }
  .site-footer ul a {
    width: max-content;
    max-width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .site-footer ul img {
    width: 1.4375rem;
    height: 1.4375rem;
  }

  /* Logo centrado */
  .site-footer__brand {
    justify-content: center;
    width: 100%;
  }
  .site-footer__brand img {
    width: min(17.4375rem, 100%);
  }

  /* Redes: ocultar h3 (Figma no lo muestra) y centrar iconos */
  .site-footer__inner > div:nth-child(4) h3 { display: none; }
  .socials {
    justify-content: center;
    gap: 1.125rem;
    margin-top: 0;
  }
  .socials a { width: 2.25rem; height: 2.25rem; }
  .socials img { width: 2.25rem; height: 2.25rem; }

  /* Footer legal: stack centrado */
  .site-footer__legal {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 17.875rem;
    margin: 1rem auto 0;
    font-size: 0.8125rem;
    line-height: 1.3;
    text-align: center;
    border-top: 0;
    padding-top: 0;
  }

  /* WhatsApp sticky already handled by .wa-sticky rule above. */
}
