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

  --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:      16px;
  --radius-btn:       999px;
  --radius-sm:        8px;

  --shadow-card:      0 6px 24px rgba(11, 25, 55, 0.08);
  --shadow-card-lg:   0 12px 40px rgba(11, 25, 55, 0.15);

  --container:        1584px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
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 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

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

/* ---------- Headings & utilities ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.h-section {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}
.h-section strong { color: var(--c-primary-500); }
.lead {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.text-center { text-align: center; }
@media (min-width: 768px) {
  .h-section { font-size: 36px; }
  .lead { font-size: 17px; }
}
@media (min-width: 1200px) {
  .h-section { font-size: 44px; }
}
/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--g-hero);
  color: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}
.site-header__logo-img {
  display: none;
  width: 184px;
  height: auto;
}
.site-header__logo .logo-mark {
  width: 32px; height: 32px;
  background: #fff;
  -webkit-mask: url('../img/icons/logo-mark.svg') center/contain no-repeat;
          mask: url('../img/icons/logo-mark.svg') center/contain no-repeat;
}
.nav-toggle {
  width: 40px; height: 40px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-toggle .bar {
  display: block;
  position: relative;
  width: 22px; height: 2px;
  background: #fff;
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform .2s ease;
}
.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after  { top:  7px; }
.site-header.is-open .nav-toggle .bar { background: transparent; }
.site-header.is-open .nav-toggle .bar::before { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle .bar::after  { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
}
.site-nav ul {
  display: flex;
  gap: 28px;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
.site-nav a:hover { opacity: 1; }
@media (min-width: 1024px) {
  .site-header {
    position: sticky;
    background: #fff;
    color: var(--c-text);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }
  .site-header__inner {
    height: 111px;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header__logo {
    width: 184px;
    height: 49px;
  }
  .site-header__logo-img {
    display: block;
    width: 184px;
  }
  .site-header__logo .logo-mark,
  .site-header__logo-text,
  .site-nav,
  .nav-toggle {
    display: none;
  }
}
/* ============================================================
   SECTION: HERO
   ============================================================ */
.s-hero {
  background: var(--c-bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 811px;
}
.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.s-hero__inner {
  position: relative;
  display: grid;
  gap: 28px;
  padding-top: 48px;
  padding-bottom: 60px;
  min-height: inherit;
}
.s-hero__title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}
.s-hero__title small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
  margin-bottom: 12px;
}
.s-hero__lead {
  font-size: 15px;
  opacity: 1;
  margin: 20px 0 28px;
  max-width: 540px;
}
.s-hero__disclaimer {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 14px;
}
.s-hero__disclaimer--mobile { display: none; }
.s-hero__media {
  position: relative;
  min-height: 280px;
  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; }

@media (min-width: 768px) {
  .s-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 80px;
  }
  .s-hero__copy {
    align-self: center;
    margin-top: 0;
    max-width: 720px;
  }
  .s-hero__title { font-size: 48px; letter-spacing: -0.48px; max-width: 720px; }
  .s-hero__title small { font-size: 32px; letter-spacing: -0.32px; line-height: 1.05; margin-bottom: 20px; }
  .s-hero__lead { font-size: 21px; line-height: 1.25; letter-spacing: -0.21px; margin: 28px 0 30px; }
  .s-hero .btn { min-height: 48px; padding: 8px 32px; font-size: 20px; }
  .s-hero__disclaimer { font-size: 16px; letter-spacing: -0.16px; margin-top: 22px; }
  .s-hero__media { display: none; }
}
@media (min-width: 1024px) {
  .s-hero { min-height: 743px; }
  .s-hero .container {
    max-width: none;
    padding-left: clamp(86px, 8.4375vw, 162px);
    padding-right: clamp(86px, 8.4375vw, 162px);
  }
  .s-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 743px;
  }
  .s-hero__copy {
    align-self: start;
    margin-top: 72px;
    max-width: 783px;
  }
  .s-hero__title { font-size: 65px; line-height: 70px; letter-spacing: -0.65px; max-width: 671px; }
  .s-hero__title small { font-size: 40px; letter-spacing: -0.4px; line-height: 1; margin-bottom: 24px; }
  .s-hero__lead { font-size: 24px; line-height: 1.2; letter-spacing: 0; margin: 30px 0 30px; max-width: 671px; }
  .s-hero .btn {
    width: 359px;
    min-height: 50px;
    padding: 8px 32px;
    font-size: 28px;
    line-height: 1;
  }
  .s-hero__media {
    display: block;
    position: absolute;
    top: 73px;
    right: -15px;
    width: 815px;
    height: 676px;
    min-height: 0;
    transform-origin: right top;
  }
  .s-hero__person {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 580px;
    height: 664px;
    object-fit: cover;
    object-position: center;
  }
  .s-hero__circle-person {
    position: absolute;
    left: 340px;
    top: 243px;
    width: 151px;
    height: 151px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 50%;
    background: #70bf54;
    box-shadow: 0 0 0 4px #70bf54;
  }
  .s-hero__ai {
    position: absolute;
    right: 15px;
    top: 398px;
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.65));
  }
}
@media (min-width: 1200px) {
  .s-hero__title { font-size: 65px; }
}
@media (min-width: 1024px) and (max-width: 1595px) {
  .s-hero__media {
    transform: scale(0.78);
  }
}

/* ---- pruebas-specific media: chips + AI graphic ---- */
.s-hero__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.s-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-card);
}
.s-hero__chip img { width: 24px; height: 24px; }
@media (max-width: 1023px) {
  .s-hero__ai {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .s-hero__chips {
    position: absolute;
    left: 15px;
    top: 79px;
    display: block;
    width: 560px;
    height: 520px;
    margin: 0;
    z-index: 2;
  }
  .s-hero__chips::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -79px;
    width: 815px;
    height: 676px;
    background: url('../img/hero/hero-blob.svg') center/contain no-repeat;
    opacity: 1;
    z-index: -1;
  }
  .s-hero__chip {
    position: absolute;
    min-height: 67px;
    padding: 0 22px;
    border: 0;
    border-radius: 45px;
    box-shadow: none;
    color: #fff;
    font-size: 26px;
    line-height: 25px;
    font-weight: 900;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
  .s-hero__chip:nth-child(1) {
    top: 0;
    left: 146px;
    width: 296px;
    height: 82px;
    background: url('../img/hero/chip-personalidad-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(2) {
    top: 132px;
    left: 25px;
    width: 300px;
    height: 82px;
    background: url('../img/hero/chip-valores-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(3) {
    top: 264px;
    left: 43px;
    width: 279px;
    height: 67px;
    background: url('../img/hero/chip-inteligencia-bg.png') center/100% 100% no-repeat;
  }
  .s-hero__chip:nth-child(4) {
    top: 380px;
    left: 146px;
    width: 408px;
    height: 82px;
    background: linear-gradient(270deg, #283c80 0%, #61308c 100%);
  }
  .s-hero__chip img {
    position: absolute;
    left: -27px;
    top: 50%;
    transform: translateY(-50%);
    width: 53px;
    height: 53px;
  }
}

/* ============================================================
   SECTION: CATÁLOGO DE PRUEBAS (tabs + detail panel)
============================================================ */
.s-catalogo {
  padding: 80px 0;
  background: #F5F5F5;
  scroll-margin-top: 111px;
}
.s-catalogo__title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  color: var(--c-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.s-catalogo__title strong { font-weight: 900; }

.s-catalogo__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.s-catalogo__hint img { width: 22px; height: 22px; }
.s-catalogo__rule {
  flex: 1;
  height: 1px;
  background: rgba(0, 113, 188, 0.25);
  max-width: 220px;
  display: none;
}

.s-catalogo__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.s-catalogo__tab {
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 113, 188, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, padding .25s ease;
  overflow: hidden;
  flex-shrink: 0;
}
.s-catalogo__tab.is-active {
  width: 320px;
  background: linear-gradient(90deg, #0071BC 0%, #00A9E4 100%);
  justify-content: flex-start;
  padding: 0 18px;
  gap: 14px;
}
.s-catalogo__tab-logo {
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.s-catalogo__tab-text {
  display: none;
  flex-direction: column;
  color: #fff;
  text-align: left;
  line-height: 1.15;
}
.s-catalogo__tab.is-active .s-catalogo__tab-text {
  display: flex;
}
.s-catalogo__tab-text strong { font-size: 18px; font-weight: 900; }
.s-catalogo__tab-text span { font-size: 13px; opacity: 0.95; margin-top: 4px; }

.s-catalogo__panels {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 32px 24px;
  min-height: 360px;
  position: relative;
}
.catalogo-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.catalogo-panel.is-active {
  display: grid;
}
.catalogo-panel__copy h3 {
  font-size: 22px;
  font-weight: 900;
  color: #21B0EB;
  margin-bottom: 14px;
}
.catalogo-panel__copy p {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.45;
  margin-bottom: 20px;
}
.catalogo-panel__copy p strong { font-weight: 900; color: rgba(0, 0, 0, 0.85); }
.catalogo-panel__report {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 16px;
}
.catalogo-panel__report img { width: 22px; height: 22px; }

.catalogo-panel__visual--tendisc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 12px;
  justify-items: center;
}
.catalogo-panel__visual--tendisc .perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.catalogo-panel__visual--tendisc .perfil__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 6px;
}
.catalogo-panel__visual--tendisc .perfil__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalogo-panel__visual--tendisc .perfil strong { font-size: 13px; font-weight: 900; }
.catalogo-panel__visual--tendisc .perfil span { font-size: 12px; color: #1d1d1d; font-style: italic; }
.perfil--dominancia strong { color: #9258CC; }
.perfil--influencia strong { color: #EF7E3E; }
.perfil--serenidad strong { color: #7DC1E5; }
.perfil--cumplimiento strong { color: #68D493; }

.s-catalogo__cta {
  display: block;
  width: max-content;
  margin: 28px auto 0;
}

/* Mobile-only panel head (logo + nombre + subtítulo de la prueba activa). Oculto en desktop. */
.catalogo-panel__head { display: none; }

/* Desktop layout */
@media (min-width: 768px) {
  .s-catalogo__rule { display: block; }
  .s-catalogo__title { font-size: 34px; }
  .s-catalogo__hint { font-size: 18px; margin-bottom: 32px; }
  .s-catalogo__tab { width: 96px; height: 96px; }
  .s-catalogo__tab.is-active { width: 340px; }
  .s-catalogo__panels { padding: 36px; }
  .catalogo-panel {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .catalogo-panel__copy h3 { font-size: 24px; }
  .catalogo-panel__copy p { font-size: 18px; }
  .catalogo-panel__visual--tendisc { gap: 24px 18px; }
  .catalogo-panel__visual--tendisc .perfil__avatar { width: 108px; height: 108px; }
  .catalogo-panel__visual--tendisc .perfil strong { font-size: 14px; }
  .catalogo-panel__visual--tendisc .perfil span { font-size: 13px; }
}
@media (min-width: 1024px) {
  .s-catalogo { padding: 100px 0; }
  .s-catalogo__title { font-size: 40px; }
  .s-catalogo__tab { width: 104px; height: 104px; }
  .s-catalogo__tab.is-active { width: 366px; padding: 0 20px; }
  .s-catalogo__tab-logo { max-width: 64px; max-height: 64px; }
  .s-catalogo__tab-text strong { font-size: 20px; }
  .s-catalogo__tab-text span { font-size: 16px; }
  .s-catalogo__panels { padding: 40px 80px; min-height: 482px; }
  .catalogo-panel { gap: 48px; }
  .catalogo-panel__copy { padding-right: 24px; }
  .catalogo-panel__copy p { font-size: 20px; }
  .catalogo-panel__visual--tendisc {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

/* Figma desktop alignment for catalogo tabs + per-tab slides */
.catalogo-slide {
  display: none;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.catalogo-slide.is-active {
  display: grid;
}
.catalogo-slide--figma.is-active {
  display: block;
}
.catalogo-slide--figma img {
  display: block;
  width: 100%;
  min-height: 482px;
  border-radius: 20px;
  object-fit: fill;
}
.catalogo-panel__arrow,
.catalogo-panel__progress {
  display: none;
}
.catalogo-benefits {
  display: grid;
  gap: 18px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 17px;
}
.catalogo-benefits li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  vertical-align: -5px;
  background: url('../img/catalogo/icon-reporte.svg') center / contain no-repeat;
}
.catalogo-panel__visual--metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
}
.catalogo-report-card,
.metric,
.catalogo-panel__visual--summary,
.catalogo-panel__visual--ethikos span {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 113, 188, 0.16);
  padding: 16px;
}
.catalogo-report-card {
  grid-row: span 2;
  display: grid;
  place-content: center;
  text-align: center;
}
.catalogo-report-card strong {
  color: var(--c-primary);
  font-size: 40px;
}
.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(0, 0, 0, 0.62);
}
.metric strong { color: var(--c-primary); }
.catalogo-panel__visual--summary {
  display: grid;
  place-content: center;
  min-height: 210px;
  text-align: center;
}
.catalogo-panel__visual--summary span {
  color: rgba(0, 0, 0, 0.55);
  font-size: 20px;
}
.catalogo-panel__visual--summary strong {
  color: var(--c-primary);
  font-size: 32px;
}
.catalogo-panel__visual--ethikos {
  position: relative;
  display: grid;
  gap: 18px;
  justify-content: center;
  align-content: center;
  min-height: 250px;
}
.catalogo-panel__visual--ethikos::before {
  content: "";
  position: absolute;
  inset: 20px 20% 0;
  border-radius: 50%;
  background: rgba(117, 36, 42, 0.08);
}
.catalogo-panel__visual--ethikos span {
  position: relative;
  min-width: 180px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .s-catalogo {
    min-height: 921px;
    padding: 63px 0 51px;
  }
  .s-catalogo .container {
    max-width: 1762px;
    padding-left: 0;
    padding-right: 0;
  }
  .s-catalogo__title {
    margin-bottom: 35px;
    line-height: 1.2;
  }
  .s-catalogo__tabs {
    flex-wrap: nowrap;
    gap: 19px;
    margin-bottom: 25px;
  }
  .s-catalogo__tab {
    width: 104px;
    height: 104px;
    padding: 13px;
    border-radius: 10px;
    overflow: hidden;
  }
  .s-catalogo__tab-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 78px;
    max-height: 78px;
    object-fit: contain;
  }
  .s-catalogo__tab-logo--wide {
    width: 78px;
    aspect-ratio: 69 / 26;
  }
  .s-catalogo__tab-logo--square {
    width: 76px;
    aspect-ratio: 55 / 56;
  }
  .s-catalogo__tab-logo--horizontal {
    width: 78px;
    aspect-ratio: 70 / 43;
  }
  .s-catalogo__tab-logo--tall {
    height: 78px;
    aspect-ratio: 33 / 39;
  }
  .s-catalogo__tab.is-active {
    width: 366px;
    height: 104px;
    padding: 17px 18px;
    gap: 26px;
    background: linear-gradient(90deg, #21B0EB 0%, #0475A4 100%);
  }
  .s-catalogo__tab[data-target="1"].is-active { background: linear-gradient(90deg, #75242A 0%, #B93442 100%); }
  .s-catalogo__tab[data-target="2"].is-active { background: linear-gradient(90deg, #2AB296 0%, #4BD3B6 100%); }
  .s-catalogo__tab[data-target="3"].is-active { background: linear-gradient(90deg, #343E84 0%, #61308C 100%); }
  .s-catalogo__tab[data-target="4"].is-active { background: linear-gradient(90deg, #D8003D 0%, #FF4B73 100%); }
  .s-catalogo__tab[data-target="5"].is-active { background: linear-gradient(90deg, #1D2B69 0%, #324694 100%); }
  .s-catalogo__tab[data-target="6"].is-active { background: linear-gradient(90deg, #F2A01B 0%, #F58A2A 100%); }
  .s-catalogo__tab.is-active .s-catalogo__tab-logo {
    max-width: 78px;
    max-height: 78px;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
  }
  .s-catalogo__tab-text {
    width: 217px;
  }
  .s-catalogo__tab-text strong { font-size: 20px; }
  .s-catalogo__tab-text span { font-size: 16px; line-height: 1.18; }
  .s-catalogo__hint {
    display: grid;
    grid-template-columns: minmax(160px, 582px) auto auto minmax(160px, 582px);
    gap: 14px;
    align-items: center;
    margin: 0 auto 40px;
    max-width: 1600px;
    font-size: 18px;
  }
  .s-catalogo__hint img {
    width: 30px;
    height: 30px;
  }
  .s-catalogo__rule {
    display: block;
    max-width: none;
    background: #B0B0B0;
  }
  .s-catalogo__panels {
    width: min(1595px, calc(100% - 128px));
    min-height: 482px;
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
  }
  .catalogo-panel {
    display: none;
    min-height: 482px;
    padding: 130px 162px 100px;
    grid-template-columns: 1fr;
    position: relative;
  }
  .catalogo-panel[data-tab="0"][data-slide="1"].is-active,
  .catalogo-panel[data-tab="0"][data-slide="2"].is-active,
  .catalogo-panel[data-tab="1"].is-active,
  .catalogo-panel[data-tab="2"].is-active,
  .catalogo-panel[data-tab="3"].is-active,
  .catalogo-panel[data-tab="4"].is-active,
  .catalogo-panel[data-tab="5"].is-active,
  .catalogo-panel[data-tab="6"].is-active {
    padding: 0;
    overflow: hidden;
  }
  .catalogo-panel.is-active {
    display: block;
  }
  .catalogo-slide {
    grid-template-columns: 471px 1fr;
    gap: 118px;
    min-height: 250px;
  }
  .catalogo-panel__copy {
    padding-right: 0;
  }
  .catalogo-panel__copy h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 28px;
  }
  .catalogo-panel__copy p {
    font-size: 20px;
    line-height: 1.22;
    margin-bottom: 0;
  }
  .catalogo-panel__visual--tendisc {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 58px;
  }
  .catalogo-panel__visual--tendisc .perfil:nth-child(2),
  .catalogo-panel__visual--tendisc .perfil:nth-child(4) {
    margin-top: -42px;
  }
  .catalogo-panel__visual--tendisc .perfil__avatar {
    width: 109px;
    height: 109px;
    background: #F1F5FA;
  }
  .catalogo-panel__visual--tendisc .perfil--dominancia .perfil__avatar { background: linear-gradient(180deg, #E6D7F5 0%, #B079D8 100%); }
  .catalogo-panel__visual--tendisc .perfil--influencia .perfil__avatar { background: linear-gradient(180deg, #FFE0BF 0%, #F28A3F 100%); }
  .catalogo-panel__visual--tendisc .perfil--serenidad .perfil__avatar { background: linear-gradient(180deg, #DFF2FB 0%, #7FC5EC 100%); }
  .catalogo-panel__visual--tendisc .perfil--cumplimiento .perfil__avatar { background: linear-gradient(180deg, #DDF8E7 0%, #72D48C 100%); }
  .catalogo-panel__visual--tendisc .perfil strong,
  .catalogo-panel__visual--tendisc .perfil span {
    font-size: 15px;
  }
  .catalogo-panel__report {
    position: absolute;
    right: 72px;
    bottom: 31px;
    width: calc(25% - 34px);
    justify-content: flex-end;
    font-size: 22px;
    white-space: nowrap;
  }
  .catalogo-panel__report img {
    width: 32px;
    height: 32px;
  }
  .catalogo-panel__progress {
    position: absolute;
    left: 68px;
    bottom: 33px;
    display: grid;
    width: calc(75% - 126px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 27px;
  }
  .catalogo-panel__progress button {
    height: 8px;
    border-radius: 999px;
    background: #D9D9D9;
  }
  .catalogo-panel__progress button.is-active {
    background: linear-gradient(90deg, #21B0EB 0%, #0475A4 100%);
  }
  .catalogo-panel[data-tab="0"][data-slide="1"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="0"][data-slide="1"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="0"][data-slide="2"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="0"][data-slide="2"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="1"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="1"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="2"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="2"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="3"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="3"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="4"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="4"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="5"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="5"].is-active ~ .catalogo-panel__progress,
  .catalogo-panel[data-tab="6"].is-active ~ .catalogo-panel__report,
  .catalogo-panel[data-tab="6"].is-active ~ .catalogo-panel__progress {
    opacity: 0;
  }
  .catalogo-panel__arrow {
    position: absolute;
    top: 50%;
    display: block;
    width: 78px;
    height: 78px;
    border: 2px solid var(--c-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
  .catalogo-panel__arrow::before {
    content: "";
    position: absolute;
    inset: 21px 27px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    color: var(--c-primary);
  }
  .catalogo-panel__arrow--prev {
    left: -106px;
  }
  .catalogo-panel__arrow--prev::before {
    transform: rotate(-135deg);
  }
  .catalogo-panel__arrow--next {
    right: -106px;
  }
  .catalogo-panel__arrow--next::before {
    transform: rotate(45deg);
  }
  .s-catalogo__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 452px;
    height: 48px;
    margin-top: 33px;
    padding: 0;
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(90deg, #2D95C8 0%, #283B80 100%);
    border-color: #fff;
  }
}

@media (min-width: 1024px) and (max-width: 1855px) {
  .s-catalogo__panels {
    width: min(1595px, calc(100% - 240px));
  }
  .catalogo-slide {
    grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
    gap: 72px;
  }
  .catalogo-panel__visual--tendisc {
    gap: 38px;
  }
  .catalogo-panel__visual--tendisc .perfil__avatar {
    width: 96px;
    height: 96px;
  }
  .catalogo-panel__arrow--prev {
    left: -99px;
  }
  .catalogo-panel__arrow--next {
    right: -99px;
  }
  .catalogo-panel__progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .s-catalogo__tabs {
    justify-content: flex-start;
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .s-catalogo__tabs::-webkit-scrollbar {
    display: none;
  }
  .s-catalogo__panels {
    width: calc(100% - 160px);
  }
  .catalogo-panel {
    padding-left: 86px;
    padding-right: 86px;
  }
  .catalogo-slide {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 42px;
  }
  .catalogo-panel__visual--tendisc {
    grid-template-columns: repeat(2, 96px);
    justify-content: center;
    gap: 20px 28px;
  }
  .catalogo-panel__visual--tendisc .perfil:nth-child(2),
  .catalogo-panel__visual--tendisc .perfil:nth-child(4) {
    margin-top: 0;
  }
  .catalogo-panel__arrow--prev {
    left: -70px;
  }
  .catalogo-panel__arrow--next {
    right: -70px;
  }
  .catalogo-panel__report {
    font-size: 17px;
    gap: 5px;
  }
  .catalogo-panel__report img {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   SECTION: LOGOS CLIENTES (banderas + carrusel)
   Ported from landing_ats/assets/css/styles.css:640-729
   ============================================================ */
.s-logos {
  background: var(--c-bg-soft);
  padding: 56px 0 64px;
}
.s-logos__title {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.s-logos__title strong { font-weight: 900; }
.s-logos__subtitle {
  text-align: center;
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 auto 24px;
  max-width: 720px;
}
.logos-carousel { margin: 0 -8px 28px; }
.logos-carousel .slide { padding: 0 16px; }
.logo-item {
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
}
.logo-item img {
  max-height: 48px;
  width: auto;
  filter: none;
  opacity: 1;
}
.s-logos__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}
.s-logos__flags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.s-logos__flags img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.s-logos__caption {
  color: #1d1d1d;
  font-size: 13px;
  margin: 0;
  opacity: 0.7;
}
.s-logos__caption strong {
  color: inherit;
  font-weight: 700;
}

@media (min-width: 768px) {
  .s-logos { padding: 82px 0 76px; }
  .s-logos__title {
    font-size: 40px;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }
  .s-logos__subtitle {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 48px;
    max-width: 1200px;
  }
  .logos-carousel { margin-bottom: 38px; }
  .logos-carousel .slide { padding: 0 28px; }
  .logo-item {
    width: 100%;
    height: 77px;
    border-radius: 16px;
  }
  .s-logos__footer {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 44px;
    text-align: left;
  }
  .s-logos__flags { gap: 8px; flex-shrink: 0; }
  .s-logos__flags img { width: 30px; height: 30px; }
  .s-logos__caption {
    font-size: 20px;
    font-style: italic;
    opacity: 0.7;
  }
}

/* ============================================================
   SECTION: MAPA LATAM
============================================================ */
.s-mapa {
  padding: 64px 0;
  background: var(--c-primary);
  color: #FFFFFF;
  overflow: hidden;
}
.s-mapa__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.s-mapa__media {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}
.s-mapa__media img {
  width: 100%;
  height: auto;
  display: block;
}
.s-mapa__bullets {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 0 24px;
}
.s-mapa__bullets li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.s-mapa__bullets img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.s-mapa__bullets p {
  font-size: 17px;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
  padding-top: 6px;
}
.s-mapa__close {
  font-size: 17px;
  line-height: 1.45;
  color: #FFFFFF;
  margin: 0;
}
.s-mapa__close strong {
  font-weight: 900;
}

@media (min-width: 1024px) {
  .s-mapa {
    min-height: 635px;
    padding: 0;
  }
  .s-mapa .container {
    max-width: min(1608px, 100%);
    padding: 0;
  }
  .s-mapa__inner {
    grid-template-columns: minmax(0, 839px) minmax(470px, 626px);
    gap: clamp(48px, 7vw, 135px);
    align-items: start;
  }
  .s-mapa__media {
    max-width: none;
    width: 100%;
  }
  .s-mapa__copy {
    max-width: 626px;
    padding-top: 90px;
  }
  .s-mapa__bullets { gap: 30px; margin-bottom: 30px; }
  .s-mapa__bullets img { width: 66px; height: 66px; }
  .s-mapa__bullets li { gap: 24px; }
  .s-mapa__bullets p { padding-top: 8px; }
  .s-mapa__bullets p,
  .s-mapa__close { font-size: 22px; }
}

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

@media (min-width: 1024px) and (max-width: 1599px) {
  .s-mapa .container {
    padding: 0 40px;
  }
  .s-mapa__inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  }
  .s-mapa__copy {
    padding-top: clamp(48px, 5vw, 90px);
  }
}
/* ============================================================
   SECTION: TESTIMONIOS (carrusel)
   ============================================================ */
.s-testimonios {
  padding: 64px 0 56px;
  background: var(--c-bg);
}
.s-testimonios .h-section {
  text-align: center;
  color: var(--c-primary);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 700px;
}
.s-testimonios .h-section strong {
  display: inline;
  font-weight: 900;
}
.s-testimonios__stage {
  position: relative;
  margin-top: 76px;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1229px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .testimonios-grid { grid-template-columns: 1fr; }
}
.testimonio-card {
  position: relative;
  background: #fff;
  border: 2px solid #0071BC;
  border-radius: 16px;
  padding: 100px 64px 64px;
  min-height: 290px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonio-card__avatar {
  position: absolute;
  top: -76px;
  left: 50%;
  transform: translateX(-50%);
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 7%;
  background: var(--c-primary);
  box-shadow: none;
}
.testimonio-card__quote {
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.22;
  color: var(--c-text);
  opacity: 0.5;
  letter-spacing: 0.72px;
  margin: 0 auto 34px;
  max-width: 1012px;
}
.testimonio-card__quote-mark {
  position: absolute;
  left: calc(50% + 92px);
  top: -26px;
  width: 56px;
  height: 53px;
  pointer-events: none;
  opacity: 0.95;
}
.testimonio-card__footer {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  color: var(--c-text);
  white-space: nowrap;
}
.testimonio-card__country {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 6px #fff;
  position: relative;
  z-index: 1;
}
.testimonio-card__name {
  color: var(--c-primary);
  font-weight: 400;
  background: #fff;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.testimonio-card__name strong { font-weight: 900; }
.testimonio-card__divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: var(--c-primary);
  opacity: 0.55;
}
.testimonio-card__role {
  color: var(--c-text);
  font-weight: 400;
  background: #fff;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.testimonio-card__role strong { color: var(--c-text); font-weight: 900; }
.testimonio-card__logo-wrap {
  width: 210px;
  height: 77px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  overflow: hidden;
}
.testimonio-card__logo {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.s-testimonios__arrow {
  position: absolute;
  top: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-primary);
  transform: translateY(-50%);
  z-index: 2;
}
.s-testimonios__arrow::before {
  content: "";
  position: absolute;
  inset: 22px 26px;
  border-top: 3px solid var(--c-primary);
  border-right: 3px solid var(--c-primary);
}
.s-testimonios__arrow--prev {
  left: max(0px, calc((100vw - 1804px) / 2));
}
.s-testimonios__arrow--prev::before {
  transform: rotate(-135deg);
}
.s-testimonios__arrow--next {
  right: max(0px, calc((100vw - 1804px) / 2));
}
.s-testimonios__arrow--next::before {
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .s-testimonios {
    min-height: 665px;
    padding: 62px 0 57px;
  }
  .s-testimonios .h-section {
    font-size: 36px;
    line-height: 1.18;
  }
}
@media (max-width: 1023px) {
  .s-testimonios__arrow { display: none; }
  .testimonio-card {
    padding: 86px 24px 48px;
  }
  .testimonio-card__quote {
    font-size: 18px;
    letter-spacing: 0;
  }
  .testimonio-card__footer {
    position: static;
    transform: none;
    flex-wrap: wrap;
    margin-top: 4px;
    white-space: normal;
  }
  .testimonio-card__logo-wrap {
    margin-left: 0;
  }
}

/* ============================================================
   SECTION: PLANES — Plan Unidades + Plan Ilimitado (pruebas)
   Layout 2-col desktop: tabla de paquetes + ilimitado options
   ============================================================ */
.s-planes {
  padding: 64px 0 80px;
  background: #F5F5F5;
}
.s-planes__title {
  text-align: center;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}
.s-planes__lead {
  text-align: center;
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin: 0 auto 32px;
  max-width: 1200px;
}

.s-planes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Tabs móviles: ocultos en desktop por defecto (override en @media max-width:1023px) */
.s-planes__tabs,
.plan-card__subtabs { display: none; }

/* ---- Card base ---- */
.plan-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 88px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.plan-card--ilimitado {
  background: var(--c-bg-dark);
  color: #F5F5F5;
}

.plan-card__head {
  margin-bottom: 18px;
}
.plan-card__name {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--c-text);
  margin: 0;
}
.plan-card--ilimitado .plan-card__name { color: #F5F5F5; }
.plan-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.plan-card__lead {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  opacity: 0.85;
}

.plan-card__body {
  flex: 1;
}

/* ---- Plan Unidades: tabla paquetes ---- */
.s-planes__paquetes {
  margin-bottom: 22px;
}
.s-planes__paquetes-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--c-primary);
  text-align: center;
  margin: 0 0 16px;
}
.s-planes__paquetes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 280px;
  margin: 0 auto;
}
.s-planes__paquetes-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  font-size: 16px;
  line-height: 1.1;
}
.s-planes__paquetes-list .paquete-unit {
  text-align: right;
  font-weight: 900;
  color: var(--c-primary);
}
.s-planes__paquetes-list .paquete-price {
  font-weight: 300;
  color: var(--c-text);
}
.s-planes__paquetes-list li.is-especial {
  border: 1px solid var(--c-accent);
  border-radius: 5px;
  position: relative;
  padding-right: 28px;
}
.s-planes__paquetes-list li.is-especial .paquete-unit {
  color: var(--c-accent);
}
.s-planes__paquetes-list .paquete-flag {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

/* ---- Plan Unidades: benefits checklist ---- */
.plan-card__benefits {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-card__benefits li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}
.plan-card__benefits li p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.16px;
  color: var(--c-text);
  opacity: 0.85;
  margin: 0;
}
.plan-card__benefits li small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--c-text);
  opacity: 0.75;
}

/* ---- Plan Ilimitado: beneficios pill + options ---- */
.ilimitado-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(245, 245, 245, 0.1);
  border-radius: 20px;
  padding: 12px 24px;
  margin: 22px 0 24px;
}
.ilimitado-benefits img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.ilimitado-benefits span {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.16px;
  opacity: 0.95;
}

.ilimitado-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
.ilimitado-opt {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 20px 16px 26px;
  text-align: center;
  color: var(--c-text);
  overflow: hidden;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ilimitado-opt__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}
.ilimitado-opt__label {
  margin: 0;
  opacity: 0.85;
  line-height: 1;
}
.ilimitado-opt__prefix {
  display: inline;
  font-size: 16px;
  font-weight: 900;
}
.ilimitado-opt__period {
  display: inline;
  font-size: 22px;
  font-weight: 300;
  margin-left: 4px;
}
.ilimitado-opt::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}
.ilimitado-opt--popular {
  padding-bottom: 38px;
}
.ilimitado-opt--popular::after {
  display: none;
}
.ilimitado-opt .badge--popular {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, #16BF9C 0%, #1BCE97 50%, #007DAE 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  padding: 7px 8px;
  line-height: 1.2;
}

/* ---- Plan card CTA (anchored to bottom) ---- */
.plan-card__cta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  min-height: 48px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.plan-card__cta--outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.plan-card__cta--solid {
  background: var(--c-accent);
  color: #fff;
  border: 2px solid #fff;
}

/* ---- Tablet ---- */
@media (min-width: 768px) {
  .s-planes { padding: 80px 0 96px; }
  .s-planes__title { font-size: 36px; }
  .s-planes__lead { font-size: 22px; margin-bottom: 40px; }
  .plan-card { padding: 32px 32px 100px; }
  .plan-card__name { font-size: 36px; }
  .plan-card__icon { width: 48px; height: 48px; }
  .ilimitado-options {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .plan-card__cta { left: 32px; right: 32px; font-size: 16px; }
}

/* ---- Desktop (BREAK_DESKTOP = 1024px) ---- */
@media (min-width: 1024px) {
  .s-planes { padding: 100px 0 120px; }
  .s-planes__title { font-size: 42px; letter-spacing: -0.42px; }
  .s-planes__lead { font-size: 24px; letter-spacing: -0.24px; margin-bottom: 56px; }

  .s-planes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1560px;
    margin: 0 auto;
  }

  .plan-card {
    min-height: 567px;
    padding: 36px 50px 100px;
  }
  .plan-card__name { font-size: 40px; letter-spacing: -0.4px; }
  .plan-card__icon { width: 49px; height: 49px; }
  .plan-card__lead { font-size: 20px; letter-spacing: -0.2px; }

  /* Plan Unidades — 2 cols: head + paquetes a la izquierda, benefits a la derecha
     alineado verticalmente con el logo (head) per Figma 740:5955 */
  .plan-card--unidades {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 36px;
    row-gap: 18px;
  }
  .plan-card--unidades .plan-card__head {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .plan-card--unidades .plan-card__body {
    display: contents;
  }
  .plan-card--unidades .s-planes__paquetes {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
  }
  .plan-card--unidades .plan-card__benefits {
    grid-column: 2;
    grid-row: 1 / span 2;
    padding: 25px 28px;
    align-self: start;
  }

  /* Plan Ilimitado: cards lado a lado */
  .plan-card--ilimitado .ilimitado-options {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card--ilimitado .ilimitado-opt { min-height: 156px; }

  .plan-card__cta {
    left: 50px;
    right: 50px;
    font-size: 18px;
  }
}

/* ============================================================
   SECTION: CUMPLIMIENTO
   ============================================================ */
.s-cumplimiento {
  background: #0A0A21 url('../img/cumplimiento/cumplimiento-background.png') center/cover no-repeat;
  color: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.s-cumplimiento::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(721px, 42vw);
  height: 12px;
  border-radius: 0 100px 100px 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: 32px;
  align-items: center;
}
.cumplimiento-list { margin-top: 16px; padding-left: 24px; }
.cumplimiento-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cumplimiento-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  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: 20px;
  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: 82px 0 70px;
  }
  .cumplimiento-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  .s-cumplimiento .h-section {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.42px;
    line-height: 1.02;
    margin-bottom: 28px;
  }
  .s-cumplimiento .lead {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 30px;
  }
  .s-cumplimiento .lead strong { font-weight: 900; }
  .cumplimiento-list li {
    font-size: 20px;
    line-height: 1.2;
    padding-left: 62px;
    margin: 21px 0;
  }
  .cumplimiento-list li::before {
    top: 4px;
    left: 0;
    width: 17px;
    height: 16px;
  }
  .cumplimiento-badges {
    justify-content: center;
    align-self: center;
    padding-bottom: 0;
    width: min(788px, 100%);
    aspect-ratio: 788 / 421;
  }
  .cumplimiento-badges img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .s-cumplimiento {
    min-height: 686px;
    padding: 0;
  }
  .cumplimiento-inner {
    width: min(1596px, calc(100% - 64px));
    max-width: none;
    min-height: 686px;
    padding: 0;
    grid-template-columns: minmax(430px, 626px) minmax(360px, 788px);
    gap: clamp(48px, 9.48vw, 182px);
    align-items: start;
    justify-content: center;
  }
  .cumplimiento-inner > div:first-child {
    padding-top: 100px;
  }
  .s-cumplimiento .h-section {
    width: 556px;
    max-width: 100%;
    margin-bottom: 36px;
    font-size: 36px;
    line-height: 1.01;
    letter-spacing: -0.36px;
  }
  .s-cumplimiento .lead {
    max-width: 626px;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.22;
  }
  .cumplimiento-list {
    margin-top: 32px;
    padding-left: 61px;
    max-width: 573px;
  }
  .cumplimiento-list li {
    padding: 0 0 0 44px;
    margin: 0 0 21px;
    font-size: 20px;
    line-height: 1.2;
  }
  .cumplimiento-list li:nth-child(2) { margin-bottom: 13px; }
  .cumplimiento-badges {
    justify-content: center;
    align-self: start;
    margin-top: 133px;
    width: 100%;
    max-width: 788px;
  }
}

/* ============================================================
   SECTION: FAQ
============================================================ */
.s-faq { padding: 80px 0; background: #fff; }
.s-faq .h-section { text-align: center; margin-bottom: 48px; color: var(--c-primary); }
.s-faq__list {
  max-width: 1559px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.s-faq__item {
  border: 0;
  border-bottom: 1px solid #B0B0B0;
  background: transparent;
}
.s-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px 18px 32px;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  opacity: 0.65;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.s-faq__q img {
  width: 24px;
  height: 24px;
  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 20px 0 32px;
}
.s-faq__item.is-open .s-faq__a {
  max-height: 500px;
  padding: 0 20px 20px 32px;
}
.s-faq__a p { color: var(--c-text-muted); margin: 0; }
@media (min-width: 1024px) {
  .s-faq__q {
    font-size: 24px;
    padding: 22px 20px 22px 156px;
  }
  .s-faq__q img { width: 28px; height: 28px; }
  .s-faq__a,
  .s-faq__item.is-open .s-faq__a { padding-left: 156px; padding-right: 20px; }
}
/* ============================================================
   SECTION: FORM
   ============================================================ */
.s-form {
  background: var(--c-primary);
  color: #fff;
  padding: 64px 0 72px;
}
.s-form .h-section { color: #fff; text-align: center; }
.s-form .lead { color: rgba(255,255,255,0.9); text-align: center; margin-inline: auto; max-width: 540px; }
.demo-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-inline: auto;
}
.demo-form .input,
.demo-form .select,
.demo-form .select select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  color: var(--c-text);
  font-size: 15px;
  font-family: inherit;
}
.demo-form .input::placeholder { color: #b0b0b0; }
.demo-form .select {
  padding: 0;
  display: flex; align-items: center;
}
.demo-form .select .flag {
  margin-left: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(#f8d12f 0 50%, #1f54a8 50% 75%, #c92f36 75%);
}
.demo-form .select select {
  background: transparent;
  border: none;
  padding: 14px 18px;
  flex: 1;
}
.demo-form .select select option { color: var(--c-primary); }
.demo-form .checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  opacity: 1;
}
.demo-form .checkbox input { margin-top: 4px; }
.demo-form__actions {
  display: grid;
  gap: 14px;
}
.recaptcha-placeholder {
  background: #fff url('../img/figma/form-recaptcha.svg') right center/auto 100% no-repeat;
  border: 0;
  border-radius: 0;
  padding: 14px 110px 14px 18px;
  font-size: 13px;
  color: #1d1d1d;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 12px;
  min-height: 74px;
}
.demo-form__submit { justify-self: center; min-width: 260px; }
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  padding: 14px 18px;
  background: rgba(21,195,154,0.18);
  border: 1px solid rgba(21,195,154,0.5);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.form-success.is-visible { display: block; }
@media (min-width: 768px) {
  .s-form {
    min-height: 605px;
    padding: 107px 0 82px;
  }
  .s-form .h-section {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 22px;
  }
  .s-form .lead {
    max-width: 821px;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 42px;
  }
  .demo-form {
    grid-template-columns: 1fr 1fr;
    gap: 19px 29px;
    max-width: 1273px;
    margin-top: 0;
  }
  .demo-form .span-2 { grid-column: 1 / -1; }
  .demo-form .input,
  .demo-form .select,
  .demo-form .select select {
    height: 44px;
    padding: 0 20px;
    font-size: 18px;
  }
  .demo-form input[name="nombre"] { grid-column: 1 / -1; order: 1; }
  .demo-form input[name="email"] { order: 2; }
  .demo-form .select { order: 3; }
  .demo-form input[name="empresa"] { order: 4; }
  .demo-form input[name="cargo"] { order: 5; }
  .demo-form__actions {
    order: 6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  .demo-form .checkbox {
    width: 381px;
    font-size: 20px;
    white-space: nowrap;
  }
  .recaptcha-placeholder {
    width: 309px;
    height: 74px;
    min-height: 0;
    padding: 0;
  }
  .demo-form__submit {
    width: 493px;
    justify-self: stretch;
    align-self: center;
    min-height: 48px;
    font-size: 20px;
  }
  .form-success { order: 7; }
}

/* ============================================================
   FORM — landing_pruebas overrides (real flag <img> instead of CSS span)
   ============================================================ */
.demo-form .select img.flag {
  margin-left: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  color: #fff;
  padding: 48px 0 28px;
}
.site-footer__inner {
  display: grid;
  gap: 28px;
}
.site-footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px;
}
.site-footer__brand img { width: min(401px, 100%); height: auto; }
.site-footer__brand span {
  font-size: 32px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 10px;
}
.site-footer__brand strong {
  font-size: 44px;
  letter-spacing: 0;
  font-weight: 900;
}
.site-footer h4 {
  font-size: 20px;
  letter-spacing: 0;
  color: var(--c-primary-300);
  margin-bottom: 12px;
  font-weight: 900;
}
.site-footer ul li {
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.85;
}
.site-footer ul a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer ul img {
  width: 18px;
  height: 18px;
}
.socials {
  display: flex; gap: 12px;
  margin-top: 4px;
}
.socials a {
  width: 36px; height: 36px;
  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: 18px; height: 18px; }
.site-footer__legal {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; opacity: 0.7;
}
@media (min-width: 768px) {
  .site-footer {
    min-height: 458px;
    padding: 97px 0 57px;
  }
  .site-footer__inner {
    grid-template-columns: 401px 303px 347px;
    justify-content: space-between;
    gap: 0;
    align-items: start;
  }
  .site-footer__brand { gap: 24px; }
  .site-footer h4 { font-size: 28px; margin-bottom: 22px; }
  .site-footer ul li { font-size: 22px; }
  .site-footer ul img {
    width: 28px;
    height: 28px;
  }
  .socials { gap: 28px; }
  .socials a {
    width: 47px;
    height: 47px;
    background: transparent;
  }
  .socials img { width: 47px; height: 47px; }
  .site-footer__legal {
    margin-top: 145px;
    padding-top: 22px;
    border-top: 3px solid var(--c-primary-300);
    font-size: 18px;
    opacity: 1;
  }
}

/* ============================================================
   GLOBAL: WhatsApp sticky
============================================================ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 90;
  transition: transform .15s ease;
}
.wa-sticky:hover { transform: scale(1.05); }
.wa-sticky img { width: 48px; height: 48px; }

@media (max-width: 767px) {
  .wa-sticky { width: 64px; height: 64px; bottom: 16px; right: 16px; }
  .wa-sticky img { width: 36px; height: 36px; }
}

/* ============================================================
   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) {
  /* Header: nav links hidden, hamburger visible (mobile baseline already
     hides .site-nav and shows .nav-toggle, but lock it here defensively
     so any future desktop rule doesn't accidentally bleed down). */
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Hero: chips force 2 cols on tablet so they don't stretch full-width */
  .s-hero__chips { grid-template-columns: 1fr 1fr; }

  /* Catálogo: tabs wrap, active tab spans full row */
  .s-catalogo__tabs { flex-wrap: wrap; }

  /* Catálogo panel: force single column even if a future desktop rule
     adds a 2-col grid to .catalogo-panel.is-active above. */
  .catalogo-panel.is-active { grid-template-columns: 1fr; }

  /* Logos flags: tighter wrap so banner row never overflows */
  .s-logos__flags { flex-wrap: wrap; gap: 8px; }

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

  /* Pricing: stack cards, paquetes table scrolls horizontally if narrow */
  .s-planes__grid { grid-template-columns: 1fr; gap: 0; }

  /* ---- Planes tabs móviles (Figma 1716:18933) ----
     Top tabs (Unidades / Licencia ilimitada) + sub-tabs (Beneficios / Precios) en Unidades.
     Solo se muestra una card a la vez en mobile. */
  .s-planes__tabs {
    display: flex;
    max-width: 412px;
    margin: 24px auto 0;
  }
  .s-planes__tab {
    flex: 1;
    height: 124px;
    background: #EDEDED;
    border: 0;
    border-radius: 12px 12px 0 0;
    padding: 23px 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 900;
    color: var(--c-bg-dark);
    opacity: 0.5;
    cursor: pointer;
    text-align: center;
    line-height: 1.1;
  }
  .s-planes__tab img { width: 49px; height: 49px; flex-shrink: 0; }
  .s-planes__tab.is-active { opacity: 1; }
  .s-planes__tab[data-plan="unidades"].is-active { background: #fff; }
  .s-planes__tab[data-plan="ilimitado"].is-active { background: var(--c-bg-dark); color: #fff; }

  /* Quitar el h3 name en mobile (el tab ya hace ese rol).
     En Ilimitado conservamos el head para que muestre el lead "Diseñado para empresas…".
     En Unidades el head solo tiene el name, así que se oculta completo. */
  .plan-card__name { display: none; }
  .plan-card--unidades .plan-card__head { display: none; }
  .plan-card--ilimitado .plan-card__head { margin-bottom: 12px; padding-top: 4px; }
  .plan-card--ilimitado .plan-card__lead { margin-top: 0; text-align: center; }

  /* Solo el plan activo se muestra; pegado a las tabs (sin radius arriba) */
  .s-planes__grid > .plan-card { display: none; border-radius: 0 0 20px 20px; max-width: 412px; margin: 0 auto; }
  .s-planes__grid > .plan-card.is-active-plan { display: flex; }

  /* Sub-tabs (Beneficios / Precios) — solo en Unidades */
  .plan-card--unidades .plan-card__subtabs {
    display: flex;
    gap: 40px;
    justify-content: center;
    border-bottom: 1px solid #D0D2D3;
    padding: 0 0 8px;
    margin: 12px 24px 16px;
  }
  .plan-card__subtab {
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 20px;
    font-weight: 900;
    color: #D0D2D3;
    cursor: pointer;
    padding: 4px 0;
    letter-spacing: -0.2px;
  }
  .plan-card__subtab.is-active-tab {
    color: var(--c-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* Ocultar panes no activos dentro de Unidades — solo el CONTENIDO (.plan-card__body),
     NO los botones de subtab que también tienen data-pane */
  .plan-card--unidades .plan-card__body [data-pane]:not(.is-active-pane) { display: none; }

  /* 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 {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .demo-form .checkbox,
  .demo-form__submit,
  .recaptcha-placeholder {
    width: 100%;
  }
  .demo-form__submit { min-width: 0; }

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

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

  /* Header mobile: Figma uses the centered brand on white chrome. */
  .site-header {
    background: #fff;
    color: var(--c-text);
  }
  .site-header__inner {
    height: 70px;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header__logo {
    width: 154px;
    height: auto;
  }
  .site-header__logo-img {
    display: block;
    width: 154px;
  }
  .site-header__logo .logo-mark,
  .site-header__logo-text,
  .nav-toggle {
    display: none;
  }

  /* Hero: Figma mobile composition isolated from the desktop artwork. */
  .s-hero {
    min-height: 600px;
    background: #0a0a21;
  }
  .s-hero .container {
    padding-left: 34px;
    padding-right: 34px;
  }
  .s-hero__inner {
    display: block;
    min-height: 600px;
    padding-top: 48px;
    padding-bottom: 0;
  }
  .s-hero__copy {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .s-hero__title {
    max-width: 310px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.18;
  }
  .s-hero__lead {
    max-width: 326px;
    margin: 15px auto 16px;
    font-size: 12px;
    line-height: 1.25;
  }
  .s-hero .btn {
    width: 100%;
    max-width: 344px;
    min-height: 35px;
    padding: 6px 20px;
    font-size: 16px;
    line-height: 1;
  }
  .s-hero__disclaimer--mobile {
    display: block;
    margin: 15px auto 0;
    font-size: 10px;
    line-height: 1.2;
    opacity: 1;
  }
  .s-hero__media {
    width: 100vw;
    min-height: 326px;
    margin-top: 6px;
    margin-left: calc(50% - 50vw);
  }
  .s-hero__media::before {
    content: "";
    display: block;
    width: 100%;
    height: 326px;
    background: url('../img/hero/hero-mobile-visual.png') center top / 412px 326px no-repeat;
  }
  .s-hero__chips,
  .s-hero__person,
  .s-hero__circle-person,
  .s-hero__ai {
    display: none;
  }

  /* Catálogo: smaller tab tiles to fit ~3 per row on a 360–430 phone */
  .s-catalogo__title { font-size: 24px; line-height: 1.2; }
  .s-catalogo__tab { width: 88px; height: 88px; }

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

  /* Mapa bullets: tighter gap to keep section short on mobile */
  .s-mapa__bullets { gap: 16px; }

  /* Pricing card chrome: shrink popular badge so it never overflows */
  .ilimitado-opt .badge--popular {
    font-size: 9px;
    padding: 3px 10px;
  }

  /* Cumplimiento: title scale + bottom-padding cushion under bg image */
  .s-cumplimiento .h-section { font-size: 24px; }

  /* FAQ question padding tighter on phones */
  .s-faq__q { padding: 16px 20px; }

  /* Footer mobile: reordenar columnas según Figma 1773:18365
     orden: contacto → línea azul → logo → redes → legal */
  .site-footer { padding: 57px 16px 78px; }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  /* nth-child(1)=brand, (2)=contacto, (3)=redes */
  .site-footer__inner > div:nth-child(1) { order: 2; position: relative; padding-top: 20px; }
  .site-footer__inner > div:nth-child(2) { order: 1; }
  .site-footer__inner > div:nth-child(3) { order: 3; }
  /* Línea divisora azul entre contacto y logo */
  .site-footer__inner > div:nth-child(1)::before {
    content: "";
    display: block;
    width: 139px;
    height: 3px;
    background: var(--c-primary);
    margin: 0 auto 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  /* Ocultar h4 de "Síguenos en nuestras redes" (Figma no lo muestra) */
  .site-footer__inner > div:nth-child(3) h4 { display: none; }
  /* Centrar contenido del bloque contacto */
  .site-footer__inner > div:nth-child(2) { width: 100%; }
  .site-footer ul {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0;
  }
  .site-footer h4 { text-align: center; }
  /* Centrar redes */
  .socials { justify-content: center; }

  /* Footer legal: stack lines, reduce font size */
  .site-footer__legal {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    text-align: center;
    border-top: 0;
    margin-top: 12px;
    padding-top: 0;
  }

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

  /* ---- Catálogo mobile (Figma 1733:7455) ----
     La tarjeta usa assets mobile por slide; tabs, dots, reporte y CTA
     se mantienen como controles HTML encima de la composición visual. */
  .s-catalogo {
    padding: 82px 0 56px;
    overflow: hidden;
  }
  .s-catalogo .container {
    padding-left: 0;
    padding-right: 0;
  }
  .s-catalogo__title {
    max-width: 360px;
    margin: 0 auto 24px;
    padding: 0 24px;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .s-catalogo__hint { display: none; }
  .s-catalogo__tabs {
    width: min(414px, 100vw);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    gap: 0;
    margin: 0 auto 20px;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .s-catalogo__tabs::-webkit-scrollbar { display: none; }
  .s-catalogo__tab,
  .s-catalogo__tab.is-active {
    width: 59.14px;
    height: 59.14px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 10px;
    box-shadow: 0 0 4.55px rgba(0, 113, 188, 0.25);
  }
  .s-catalogo__tab.is-active { background: linear-gradient(90deg, #21B0EB 0%, #0475A4 100%); }
  .s-catalogo__tab[data-target="1"].is-active { background: linear-gradient(90deg, #75242A 0%, #B93442 100%); }
  .s-catalogo__tab[data-target="2"].is-active { background: linear-gradient(90deg, #2AB296 0%, #4BD3B6 100%); }
  .s-catalogo__tab[data-target="3"].is-active { background: linear-gradient(90deg, #343E84 0%, #61308C 100%); }
  .s-catalogo__tab[data-target="4"].is-active { background: linear-gradient(90deg, #D8003D 0%, #FF4B73 100%); }
  .s-catalogo__tab[data-target="5"].is-active { background: linear-gradient(90deg, #1D2B69 0%, #324694 100%); }
  .s-catalogo__tab[data-target="6"].is-active { background: linear-gradient(90deg, #F2A01B 0%, #F58A2A 100%); }
  .s-catalogo__tab-text,
  .s-catalogo__tab.is-active .s-catalogo__tab-text { display: none; }
  .s-catalogo__tab-logo,
  .s-catalogo__tab.is-active .s-catalogo__tab-logo {
    width: 44.36px;
    height: 44.36px;
    max-width: 44.36px;
    max-height: 44.36px;
    object-fit: contain;
  }
  .s-catalogo__tab.is-active .s-catalogo__tab-logo {
    filter: brightness(0) invert(1);
  }

  .s-catalogo__panels {
    width: 342px;
    min-height: 534px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
  }
  .catalogo-panel,
  .catalogo-panel.is-active {
    min-height: 534px;
    padding: 0;
    display: none;
    position: relative;
  }
  .catalogo-panel.is-active { display: block; }
  .catalogo-slide,
  .catalogo-slide.is-active {
    min-height: 534px;
    display: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 342px 534px;
  }
  .catalogo-slide.is-active { display: block; }
  .catalogo-slide > * { display: none !important; }
  .catalogo-panel__head,
  .catalogo-panel__arrow { display: none; }

  .catalogo-panel__report {
    position: absolute;
    right: 38px;
    bottom: 33px;
    z-index: 4;
    width: 160px;
    height: 24px;
    opacity: 0;
  }
  .catalogo-panel__progress {
    position: absolute;
    left: 36px;
    bottom: 34px;
    z-index: 4;
    display: grid;
    width: 86px;
    grid-template-columns: repeat(3, 20px);
    gap: 8px;
  }
  .catalogo-panel__progress button {
    width: 20px;
    height: 20px;
    opacity: 0;
  }

  .catalogo-panel[data-tab="0"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/tendisc-slide-1.png'); }
  .catalogo-panel[data-tab="0"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/tendisc-slide-2.png'); }
  .catalogo-panel[data-tab="0"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/tendisc-slide-3.png'); }
  .catalogo-panel[data-tab="1"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/ethikos-slide-1.png'); }
  .catalogo-panel[data-tab="1"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/ethikos-slide-2.png'); }
  .catalogo-panel[data-tab="1"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/ethikos-slide-3.png'); }
  .catalogo-panel[data-tab="2"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/iq-slide-1.png'); }
  .catalogo-panel[data-tab="2"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/iq-slide-2.png'); }
  .catalogo-panel[data-tab="2"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/iq-slide-3.png'); }
  .catalogo-panel[data-tab="3"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/potencial-slide-1.png'); }
  .catalogo-panel[data-tab="3"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/potencial-slide-2.png'); }
  .catalogo-panel[data-tab="3"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/potencial-slide-3.png'); }
  .catalogo-panel[data-tab="4"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/competencias-slide-1.png'); }
  .catalogo-panel[data-tab="4"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/competencias-slide-2.png'); }
  .catalogo-panel[data-tab="4"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/competencias-slide-3.png'); }
  .catalogo-panel[data-tab="5"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/horeca-slide-1.png'); }
  .catalogo-panel[data-tab="5"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/horeca-slide-2.png'); }
  .catalogo-panel[data-tab="5"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/horeca-slide-3.png'); }
  .catalogo-panel[data-tab="6"] .catalogo-slide:nth-child(1) { background-image: url('../img/catalogo/mobile-cards/vp-slide-1.png'); }
  .catalogo-panel[data-tab="6"] .catalogo-slide:nth-child(2) { background-image: url('../img/catalogo/mobile-cards/vp-slide-2.png'); }
  .catalogo-panel[data-tab="6"] .catalogo-slide:nth-child(3) { background-image: url('../img/catalogo/mobile-cards/vp-slide-3.png'); }

  .s-catalogo__cta {
    display: flex;
    width: 342px;
    height: 35px;
    margin: 25px auto 0;
    padding: 0 24px;
    background: transparent;
    border: 2px solid #2B307C;
    color: var(--c-primary);
    font-size: 16px;
    line-height: 1;
  }
}
