/* ============================================================
   YES! KIOSCOS ÚNICOS — Franquicias
   Design system
   ============================================================ */

:root {
  /* Brand */
  --red:        #ED1C24;
  --red-deep:   #C2141B;
  --red-ink:    #7E0D11;
  --lime:       #46CC00;
  --lime-neon:  #3CFF00;
  --olive:      #7AA718;

  /* Neutrals (warm) */
  --ink:    #17120F;
  --ink-2:  #463E39;
  --muted:  #8A7F77;
  --line:   #EBE2DA;
  --paper:  #FFFFFF;
  --cream:  #FFF6F0;
  --cream-2:#FBEDE4;

  /* Type */
  --display: 'Fredoka', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-lg: 34px;

  --shadow-sm: 0 2px 10px rgba(126,13,17,.06);
  --shadow:    0 18px 50px -18px rgba(126,13,17,.28);
  --shadow-red:0 22px 60px -20px rgba(237,28,36,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime-neon); color: var(--ink); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -.01em; color: var(--ink); }
.display {
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.02em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-2); }
.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}
.eyebrow.on-red { color: #fff; }
.eyebrow.on-red::before { background: var(--lime-neon); }
.text-red { color: var(--red); }
.text-lime { color: var(--lime); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--cream { background: var(--cream); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), transform .4s var(--ease);
}
.nav--hidden { transform: translateY(-130%); }
.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -22px rgba(126,13,17,.4);
  padding-block: 9px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; }
.nav__logo img { height: 92px; width: auto; transition: height .35s var(--ease); filter: drop-shadow(0 6px 12px rgba(126,13,17,.25)); }
.nav.scrolled .nav__logo img { height: 80px; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 600; font-size: .94rem; color: #fff; padding: 9px 14px; border-radius: 100px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav__links a:hover { background: rgba(255,255,255,.16); color: #fff; }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav.scrolled .nav__links a:hover { background: var(--cream-2); color: var(--red); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; width: 46px; height: 46px; border: none; background: var(--ink); color: #fff; border-radius: 14px; cursor: pointer; align-items: center; justify-content: center; }
.nav__burger svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--body); font-weight: 800; font-size: 1rem;
  padding: 15px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--red:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -16px rgba(237,28,36,.7); }
.btn--lime { background: var(--lime); color: #fff; box-shadow: 0 18px 40px -16px rgba(70,204,0,.6); }
.btn--lime:hover { transform: translateY(-3px); background: #3eb800; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); transform: translateY(-2px); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 16px 36px -14px rgba(37,211,102,.7); }
.btn--wa:hover { transform: translateY(-3px); }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; }
.btn--on-red { background: #fff; color: var(--red); }
.btn--on-red:hover { transform: translateY(-3px); background: var(--lime-neon); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--red);
  color: #fff; overflow: hidden;
  padding-top: 140px;
  padding-bottom: clamp(48px, 7vh, 96px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__photo {
  position: absolute; right: -4%; bottom: 0; height: 104%; width: auto; max-width: none;
  object-fit: contain; mix-blend-mode: multiply; opacity: .92;
  filter: saturate(1.1) contrast(1.05);
  animation: heroFloat 9s var(--ease) infinite alternate;
}
@keyframes heroFloat { from { transform: translateY(0); } to { transform: translateY(-18px); } }
.hero__grad { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 12% 50%, rgba(194,20,27,.0) 30%, rgba(126,13,17,.55) 100%),
  linear-gradient(90deg, var(--red) 38%, rgba(237,28,36,0) 72%); }
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.hero__content { max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.18); border: 1.5px solid rgba(255,255,255,.35);
  padding: 9px 16px 9px 12px; border-radius: 100px; font-weight: 800; font-size: .82rem;
  letter-spacing: .04em; margin-bottom: 26px; backdrop-filter: blur(4px);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime-neon); box-shadow: 0 0 0 0 rgba(60,255,0,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(60,255,0,.65);} 70%{box-shadow:0 0 0 12px rgba(60,255,0,0);} 100%{box-shadow:0 0 0 0 rgba(60,255,0,0);} }
.hero h1 { color: #fff; text-shadow: 0 10px 40px rgba(126,13,17,.45); line-height: .96; }
.hero h1 .yell { color: var(--lime-neon); display: inline-block; }
.hero__sub { font-size: clamp(1.1rem, 1.7vw, 1.5rem); margin-top: 16px; max-width: 540px; color: rgba(255,255,255,.92); font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; gap: 38px; margin-top: 28px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem,4vw,3.2rem); line-height: 1; color: var(--lime-neon); }
.hero__stat .l { font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: 6px; }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--lime-neon); border-radius: 3px; animation: scrolly 1.6s infinite; }
@keyframes scrolly { 0%{opacity:0;transform:translate(-50%,0);} 40%{opacity:1;} 100%{opacity:0;transform:translate(-50%,12px);} }

/* ============================================================
   SPEECH-BUBBLE motif (brand logo silhouette)
   ============================================================ */
.bubble-tag {
  position: relative; display: inline-block; background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 700; padding: 10px 20px; border-radius: 18px;
  box-shadow: 0 0 0 4px var(--lime-neon);
}
.bubble-tag::after { content:""; position: absolute; left: 26px; bottom: -12px; width: 22px; height: 22px; background: var(--red); box-shadow: 4px 4px 0 -1px var(--lime-neon); border-radius: 0 0 0 6px; transform: rotate(0deg); clip-path: polygon(0 0, 100% 0, 0 100%); }

/* ============================================================
   GENERIC blocks
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }
.center .eyebrow { justify-content: center; }

/* Intro split (Somos YES!) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.split--rev { grid-template-columns: .95fr 1.05fr; }
.split__media { position: relative; }
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--cream-2);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4/5; }
.frame--wide { aspect-ratio: 4/3; }
.media-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: 20px; padding: 16px 20px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.media-badge .big { font-family: var(--display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--red); }
.media-badge .sm { font-size: .82rem; font-weight: 700; color: var(--ink-2); line-height: 1.2; }
.media-badge--br { right: -18px; bottom: -18px; }
.media-badge--tl { left: -18px; top: -18px; }

/* deco speech blob */
.blob { position: absolute; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; z-index: -1; filter: blur(2px); opacity: .5; }

/* ============================================================
   STATS strip
   ============================================================ */
.stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.stats-strip .cell { background: #fff; padding: 38px 28px; text-align: center; }
.stats-strip .n { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem,4vw,3.6rem); color: var(--red); line-height: 1; }
.stats-strip .l { margin-top: 8px; font-weight: 600; color: var(--ink-2); font-size: .95rem; }

/* ============================================================
   FORTALEZAS grid (icons)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat::before { content:""; position:absolute; left:0; top:0; height:4px; width:0; background: var(--lime-neon); transition: width .35s var(--ease); }
.feat:hover::before { width: 100%; }
.feat__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--cream); display: grid; place-items: center; margin-bottom: 18px; transition: background .3s; }
.feat:hover .feat__ic { background: var(--red); }
.icon-mask { width: 30px; height: 30px; background: var(--red); transition: background .3s; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.feat:hover .icon-mask { background: #fff; }
.feat h3 { font-size: 1.18rem; font-weight: 600; }

/* ============================================================
   CARACTERÍSTICAS — numbered
   ============================================================ */
.numbered { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.caracteristicas { display: grid; grid-template-columns: 1fr .62fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.numbered--col { grid-template-columns: 1fr; gap: 18px; }
.caracteristicas__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--red); }
.caracteristicas__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.numbered__item {
  display: flex; gap: 22px; padding: 30px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s;
}
.numbered__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.numbered__n {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; flex: 0 0 auto;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--red); color: #fff; box-shadow: 0 0 0 5px rgba(237,28,36,.12);
}
.numbered__item p { color: var(--ink-2); font-size: 1.02rem; }

/* ============================================================
   GALLERY (por dentro / por fuera)
   ============================================================ */
.gallery-tabs { display: inline-flex; background: var(--cream-2); border-radius: 100px; padding: 6px; gap: 6px; margin-bottom: 40px; }
.gallery-tabs button { border: none; background: transparent; font-family: var(--body); font-weight: 800; font-size: .98rem; padding: 12px 26px; border-radius: 100px; cursor: pointer; color: var(--ink-2); transition: all .25s var(--ease); }
.gallery-tabs button.active { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 16px; }
.gallery-grid .g {
  border-radius: var(--radius); overflow: hidden; position: relative; background: var(--cream-2);
  box-shadow: var(--shadow-sm); opacity: 0; transform: scale(.96);
  animation: gIn .5s var(--ease) forwards;
}
@keyframes gIn { to { opacity: 1; transform: scale(1); } }
.gallery-grid .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid .g:hover img { transform: scale(1.06); }
.gallery-grid .g--big { grid-row: span 2; }
.gallery-grid .g--wide { grid-column: span 2; }

/* ============================================================
   FRANQUICIA explainer (red full bleed)
   ============================================================ */
.section--red { background: var(--red); color: #fff; overflow: hidden; position: relative; }
.section--red h2, .section--red h3 { color: #fff; }
.section--red .lead { color: rgba(255,255,255,.92); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.bigquote { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.06; }
.bigquote .hl { color: var(--lime-neon); }
.dots { position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle, #fff 1.4px, transparent 1.6px); background-size: 26px 26px; pointer-events: none; }

/* ============================================================
   VIDEO BAND
   ============================================================ */
.video-band { background: var(--cream); }
.video-frame {
  position: relative; margin: 0 auto; max-width: 1120px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: #000; aspect-ratio: 16 / 9;
  outline: 6px solid #fff; outline-offset: -6px;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(60,255,0,.0); border-radius: var(--radius-lg);
}
.video-sound {
  position: absolute; right: 18px; bottom: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: rgba(23,18,15,.55); color: #fff; border: 1px solid rgba(255,255,255,.3);
  padding: 10px 16px 10px 12px; border-radius: 100px; font-family: var(--body); font-weight: 800;
  font-size: .85rem; backdrop-filter: blur(8px); transition: background .25s, transform .25s;
}
.video-sound:hover { background: var(--red); transform: translateY(-2px); }
.video-sound svg { width: 18px; height: 18px; }

/* ============================================================
   VÍNCULO diagram (gráfico original del brochure)
   ============================================================ */
.vinculo-figure { margin: clamp(8px,2vw,24px) 0 0; }
.vinculo-figure img {
  width: 100%; max-width: 1040px; margin: 0 auto; height: auto; display: block;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -28px rgba(126,13,17,.45);
}

/* ============================================================
   POR QUÉ ELEGIRNOS — big numbered cards
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why {
  background: #fff; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s;
}
.why:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why__n { font-family: var(--display); font-weight: 700; font-size: 4.5rem; line-height: .8; color: var(--cream-2); position: absolute; right: 24px; top: 18px; transition: color .3s; }
.why:hover .why__n { color: rgba(237,28,36,.12); }
.why h3 { font-size: 1.5rem; margin-bottom: 12px; position: relative; }
.why p { color: var(--ink-2); position: relative; }
.why .pill { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); background: rgba(70,204,0,.1); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }

/* ============================================================
   PERFIL — trait chips
   ============================================================ */
.traits { display: flex; flex-wrap: wrap; gap: 14px; }
.perfil { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.perfil__figure { position: absolute; top: 0; left: 0; bottom: 0; width: clamp(440px, 58%, 1100px); z-index: 1; }
.perfil__figure img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; }
.perfil__figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(237,28,36,0) 52%, rgba(237,28,36,.55) 74%, var(--red) 100%); }
.perfil__inner { position: relative; z-index: 2; display: flex; justify-content: flex-end; align-items: center; min-height: 56vh; }
.perfil__content { width: 100%; max-width: 520px; }
.perfil .lead { color: rgba(255,255,255,.92); }
.perfil .trait { background: #fff; border-color: transparent; color: var(--ink); box-shadow: 0 10px 24px -14px rgba(126,13,17,.6); }
.trait {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  padding: 14px 22px 14px 16px; border-radius: 100px; font-weight: 600; transition: all .25s var(--ease);
}
.trait:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.trait .check { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; }
.trait .check svg { width: 16px; height: 16px; color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
/* ---------- FAQ page hero ---------- */
.faq-hero { position: relative; background: var(--red); color: #fff; overflow: hidden; padding: clamp(130px, 16vw, 200px) 0 clamp(48px, 7vw, 88px); }
.faq-hero__inner { position: relative; z-index: 2; max-width: 860px; }
.faq-hero h1 { color: #fff; text-shadow: 0 10px 40px rgba(126,13,17,.4); }
.faq-hero p { font-size: clamp(1.05rem, 1.6vw, 1.35rem); margin-top: 20px; max-width: 560px; color: rgba(255,255,255,.92); font-weight: 500; }
.faq-back { display: flex; width: fit-content; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 22px; opacity: .9; transition: opacity .2s, gap .2s; }
.faq-back:hover { opacity: 1; gap: 12px; }
/* ---------- Generic page hero (red band) ---------- */
.page-hero { position: relative; background: var(--red); color: #fff; overflow: hidden; padding: clamp(130px, 16vw, 200px) 0 clamp(48px, 7vw, 88px); }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; text-shadow: 0 10px 40px rgba(126,13,17,.4); }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.35rem); margin-top: 20px; max-width: 620px; color: rgba(255,255,255,.92); font-weight: 500; }
.page-hero--prensa { background-image: linear-gradient(95deg, var(--red-ink) 0%, rgba(126,13,17,.97) 26%, rgba(160,16,22,.7) 52%, rgba(194,20,27,.28) 100%), url('assets/prensa-header.webp'); background-size: cover; background-position: center; }
.page-hero--fortalezas { background-image: linear-gradient(95deg, var(--red-ink) 0%, rgba(126,13,17,.96) 28%, rgba(126,13,17,.6) 56%, rgba(126,13,17,.32) 100%), url('assets/fortalezas-header.webp'); background-size: cover; background-position: center; }
.page-hero--vinculo { background-image: linear-gradient(95deg, var(--red-ink) 0%, rgba(126,13,17,.96) 28%, rgba(160,16,22,.66) 56%, rgba(194,20,27,.3) 100%), url('assets/vinculo-header.webp'); background-size: cover; background-position: center 38%; }
/* ---------- ¿Por qué elegirnos? — image hero ---------- */
.why-section { position: relative; background: var(--red); color: #fff; overflow: hidden; padding-top: clamp(48px, 6vw, 84px); }
.why-grid2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.why-section__content { max-width: 560px; }
.why-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 34px 70px -26px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.16); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 32%; display: block; }
.why-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 5px rgba(255,255,255,.08); border-radius: var(--radius-lg); pointer-events: none; }
.why-list { margin-top: clamp(26px, 4vw, 40px); display: grid; gap: 0; }
.why-row { display: flex; gap: 22px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.22); }
.why-row:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.why-row__n { font-family: var(--display); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--lime-neon); flex: 0 0 auto; width: 44px; }
.why-row__body .pill { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: var(--lime-neon); padding: 4px 11px; border-radius: 100px; margin-bottom: 10px; }
.why-row__body h3 { font-size: 1.2rem; color: #fff; margin-bottom: 5px; }
.why-row__body p { color: rgba(255,255,255,.86); font-size: .98rem; }
.why-hero { position: relative; }
.why-video-wrap { position: relative; z-index: 3; margin-top: clamp(40px, 6vw, 70px); }
.why-video__head { max-width: 900px; margin: 0 auto 16px; }
.why-video__head .eyebrow { color: #fff; }
.why-video { max-width: 900px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq__q { width: 100%; text-align: left; border: none; background: none; cursor: pointer; padding: 26px 28px; display: flex; align-items: center; gap: 18px; font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); }
.faq__q .qm { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 12px; background: var(--cream); color: var(--red); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.3rem; transition: all .3s; }
.faq__item.open .qm { background: var(--red); color: #fff; }
.faq__q .arw { margin-left: auto; transition: transform .35s var(--ease); flex: 0 0 auto; }
.faq__item.open .arw { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 28px 26px 84px; color: var(--ink-2); }

/* ============================================================
   VARIABLES
   ============================================================ */
.vars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.var {
  display: flex; gap: 16px; align-items: center; padding: 24px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); transition: all .3s var(--ease);
}
.var:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.var__ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: rgba(60,255,0,.16); display: grid; place-items: center; }
.var__ic .icon-mask { background: var(--lime-neon); width: 28px; height: 28px; }
.var span { font-weight: 600; font-size: 1rem; }

/* ============================================================
   FICHA TÉCNICA
   ============================================================ */
.ficha { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.ficha__hero {
  background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px,4vw,52px);
  display: flex; flex-direction: column; justify-content: flex-start; position: relative; overflow: hidden;
  box-shadow: var(--shadow-red);
}
.ficha__hero .lbl { font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; opacity: .85; }
.ficha__hero .amt { font-family: var(--display); font-weight: 700; font-size: clamp(3.4rem,8vw,5.6rem); line-height: .9; margin: 10px 0; }
.ficha__hero .amt small { font-size: 1.4rem; vertical-align: top; opacity: .85; font-weight: 600; }
.ficha__fees { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.ficha__fee { background: rgba(0,0,0,.16); border: 1px solid rgba(255,255,255,.25); border-radius: 14px; padding: 12px 16px; font-size: .9rem; font-weight: 600; }
.ficha__fee b { display: block; font-family: var(--display); font-size: 1.2rem; }
.ficha__recovery { margin-top: 26px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.ficha__recovery .ch { color: var(--lime-neon); }
.ficha__hero-img { margin-top: auto; padding-top: 28px; }
.ficha__hero-img figure, .ficha__hero-img { position: relative; z-index: 2; }
.ficha__hero-img .pic { border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.28); box-shadow: 0 20px 44px -20px rgba(0,0,0,.6); position: relative; }
.ficha__hero-img .pic img { width: 100%; height: clamp(150px, 19vw, 200px); object-fit: cover; display: block; }
.ficha__hero-img .tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: var(--lime-neon); color: var(--ink); font-family: var(--display); font-weight: 700; font-size: .92rem; padding: 7px 14px; border-radius: 100px; }
.ficha__hero > .lbl, .ficha__hero > .amt, .ficha__fees, .ficha__recovery { position: relative; z-index: 2; }
.ficha__table { display: grid; gap: 0; align-content: start; }
.ficha__row { display: flex; justify-content: space-between; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.ficha__row:last-child { border-bottom: none; }
.ficha__row .k { color: var(--muted); font-weight: 600; }
.ficha__row .v { font-weight: 700; text-align: right; font-family: var(--display); }

/* ============================================================
   PASOS (timeline)
   ============================================================ */
.steps { position: relative; display: grid; gap: 0; }
.steps::before { content:""; position: absolute; left: 31px; top: 28px; bottom: 28px; width: 3px; background: linear-gradient(var(--red), var(--lime)); border-radius: 3px; }
.step { display: flex; gap: 26px; padding: 16px 0; position: relative; }
.step__n {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 3px solid var(--red);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--red);
  z-index: 2; transition: all .3s var(--ease); box-shadow: 0 0 0 6px var(--paper);
}
.step:hover .step__n { background: var(--red); color: #fff; transform: scale(1.06); }
.step__body { padding-top: 14px; }
.step__body h3 { font-size: 1.25rem; }
/* ---------- Stepper (7 pasos interactivo) ---------- */
.stepper { max-width: 720px; margin-inline: auto; }
.pasos-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px,4vw,56px); align-items: start; max-width: 1000px; margin-inline: auto; }
.pasos-grid .stepper { max-width: none; margin: 0; }
.roadmap { list-style: none; position: relative; padding: 4px 0; }
.roadmap::before { content: ""; position: absolute; left: 19px; top: 30px; bottom: 30px; width: 2px; background: var(--line); }
.roadmap__item { display: flex; gap: 16px; align-items: flex-start; padding: 9px 0; cursor: pointer; position: relative; }
.roadmap__n { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--muted); z-index: 1; transition: all .3s var(--ease); }
.roadmap__t { font-size: 1rem; font-weight: 600; color: var(--ink-2); padding-top: 9px; transition: color .25s; }
.roadmap__item:hover .roadmap__n { border-color: var(--red); color: var(--red); }
.roadmap__item.done .roadmap__n { background: var(--lime); border-color: var(--lime); color: #fff; }
.roadmap__item.on .roadmap__n { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.12); box-shadow: 0 0 0 5px rgba(237,28,36,.14); }
.roadmap__item.on .roadmap__t { color: var(--ink); font-weight: 700; }
.stepper__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.stepper__count { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--red); }
.stepper__count i { color: var(--muted); font-style: normal; font-weight: 600; }
.stepper__dots { display: flex; gap: 7px; flex-wrap: wrap; }
.stepper__dots span { width: 30px; height: 6px; border-radius: 100px; background: var(--cream-2); transition: background .3s; }
.stepper__dots span.done { background: rgba(70,204,0,.5); }
.stepper__dots span.on { background: var(--lime); }
.stepper__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3.5vw,44px); display: flex; gap: clamp(18px,3vw,28px); align-items: center; box-shadow: var(--shadow); min-height: 150px; }
.stepper__card[data-anim] { animation: stepIn .4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.stepper__n { flex: 0 0 auto; width: 70px; height: 70px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 2.1rem; box-shadow: 0 0 0 7px rgba(237,28,36,.12); }
.stepper__card p { font-size: clamp(1.15rem,1.9vw,1.5rem); font-weight: 600; color: var(--ink); line-height: 1.2; }
.stepper__nav { display: flex; gap: 12px; justify-content: flex-end; align-items: center; margin-top: 22px; }
.stepper__back { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 1rem; color: var(--ink-2); padding: 10px 8px; transition: color .2s; }
.stepper__back:hover { color: var(--red); }
.stepper__back[disabled] { opacity: .35; pointer-events: none; }
/* ---------- Prensa cards ---------- */
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.press-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.press-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.press-card--featured { grid-column: 1 / -1; background: var(--red); border-color: transparent; color: #fff; box-shadow: var(--shadow-red); }
.press-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.press-card__media { font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--red); }
.press-card--featured .press-card__media { color: #fff; }
.press-card__date { font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.press-card--featured .press-card__date { color: rgba(255,255,255,.75); }
.press-card__date::before { content: "·"; margin-right: 10px; color: var(--line); }
.press-card--featured .press-card__date::before { color: rgba(255,255,255,.4); }
.press-card__tag { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--lime-neon); padding: 4px 10px; border-radius: 100px; }
.press-card h3 { font-size: 1.22rem; font-weight: 600; line-height: 1.25; color: var(--ink); margin-bottom: 10px; }
.press-card--featured h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.15; }
.press-card p { color: var(--ink-2); font-size: .98rem; flex: 1; }
.press-card--featured p { color: rgba(255,255,255,.92); max-width: 760px; font-size: 1.05rem; }
.press-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 700; color: var(--red); font-size: .95rem; transition: gap .2s; align-self: flex-start; }
.press-card--featured .press-card__link { color: var(--lime-neon); }
.press-card__link:hover { gap: 13px; }
.press-card__link svg { width: 16px; height: 16px; }
/* ---------- Stepper v2 (7 pasos) ---------- */
.stepper2 { max-width: 880px; margin-inline: auto; }
.stepper2__track { list-style: none; display: flex; justify-content: space-between; position: relative; margin: 0 0 clamp(26px, 4vw, 38px); padding: 0; }
.stepper2__track::before { content: ""; position: absolute; left: 22px; right: 22px; top: 21px; height: 4px; background: var(--cream-2); border-radius: 4px; }
.stepper2__track::after { content: ""; position: absolute; left: 22px; top: 21px; height: 4px; width: calc((100% - 44px) * var(--p, 0)); background: linear-gradient(90deg, var(--red), var(--lime)); border-radius: 4px; transition: width .45s var(--ease); }
.stepper2__node { position: relative; z-index: 1; }
.stepper2__dot { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2.5px solid var(--cream-2); color: var(--muted); font-family: var(--display); font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all .3s var(--ease); }
.stepper2__dot svg { width: 20px; height: 20px; }
.stepper2__node:hover .stepper2__dot { border-color: var(--red); color: var(--red); }
.stepper2__node.done .stepper2__dot { background: var(--lime); border-color: var(--lime); color: #fff; }
.stepper2__node.on .stepper2__dot { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.16); box-shadow: 0 0 0 6px rgba(237,28,36,.14); }
.stepper2__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(28px, 4vw, 46px); display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 38px); align-items: center; }
.stepper2__card[data-anim] { animation: stepIn .4s var(--ease); }
.stepper2__num { font-family: var(--display); font-weight: 700; font-size: clamp(3.4rem, 8vw, 6rem); line-height: .75; color: var(--red); opacity: .16; }
.stepper2__kicker { display: inline-block; font-family: var(--body); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; color: var(--red); background: rgba(237,28,36,.09); padding: 6px 13px; border-radius: 100px; margin-bottom: 14px; }
.stepper2__main h3 { font-size: clamp(1.3rem, 2.3vw, 1.85rem); font-weight: 600; color: var(--ink); line-height: 1.15; }
.stepper2__nav { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 6px; padding-top: 24px; border-top: 1px solid var(--line); }
.stepper2__back { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 1rem; color: var(--ink-2); padding: 8px 4px; transition: color .2s; }
.stepper2__back:hover { color: var(--red); }
.stepper2__back[disabled] { opacity: .35; pointer-events: none; }
.stepper2__next, .stepper2__nav .btn { gap: 8px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; background: var(--red); color: #fff; overflow: hidden; }
.cta-final__figure { position: absolute; top: 0; right: 0; bottom: 0; width: clamp(440px, 50%, 880px); z-index: 1; }
.cta-final__figure img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.cta-final__figure::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, var(--red) 0%, rgba(237,28,36,.42) 8%, rgba(237,28,36,0) 22%); }
.cta-final__inner { position: relative; z-index: 3; display: flex; align-items: center; min-height: 58vh; }
.cta-final__copy { max-width: 540px; }
.cta-final h2 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .92; }
.cta-final h2 .hl { color: var(--lime-neon); }
.cta-final__phone { display: inline-flex; align-items: center; gap: 14px; font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem,3vw,2.2rem); margin-top: 24px; }
.cta-final__phone .ic { width: 54px; height: 54px; border-radius: 16px; background: rgba(0,0,0,.18); display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.3); }

/* ---------- Form ---------- */
.lead-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px,3vw,40px); box-shadow: var(--shadow); }
.lead-form h3 { font-size: 1.6rem; color: var(--ink); margin-bottom: 6px; }
.lead-form p.sub { color: var(--ink-2); font-size: .95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .85rem; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; padding: 14px 16px; border-radius: 14px;
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; animation: gIn .4s var(--ease); }
.form-ok .big { font-family: var(--display); font-weight: 700; font-size: 1.8rem; color: var(--lime); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.9); padding: 70px var(--gutter) 36px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo img { height: 64px; width: auto; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--body); font-weight: 800; letter-spacing: .04em; }
.footer a { display: block; padding: 6px 0; transition: color .2s; }
.footer a:hover { color: var(--lime-neon); }
.footer__bottom { max-width: var(--maxw); margin: 30px auto 0; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer__legal { flex-basis: 100%; text-align: center; color: rgba(255,255,255,.8); }
.footer__legal a { display: inline; padding: 0; color: rgba(255,255,255,.92); }
.footer__legal a:hover { color: var(--lime-neon); }
.footer__credit { flex-basis: 100%; text-align: center; padding: 0 0 16px !important; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.footer__credit b { color: rgba(255,255,255,.8); font-weight: 700; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 62px; height: 62px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 14px 36px -8px rgba(37,211,102,.7); transition: transform .3s var(--ease); animation: pulse-wa 2.6s infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse-wa { 0%{ box-shadow: 0 14px 36px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 14px 36px -8px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 14px 36px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0);} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (max-height: 820px) {
  .hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__photo { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .split, .split--rev, .ficha { grid-template-columns: 1fr; }
  .perfil__figure { position: relative; width: 100%; height: 300px; }
  .perfil__figure img { object-position: 50% 28%; }
  .perfil__figure::after { background: linear-gradient(0deg, var(--red) 0%, rgba(237,28,36,0) 50%); }
  .perfil__inner { min-height: 0; justify-content: flex-start; }
  .perfil__content { max-width: none; }
  .split--rev .split__media { order: -1; }
  .feat-grid, .vars-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .numbered { grid-template-columns: 1fr; }
  .pasos-grid { grid-template-columns: 1fr; }
  .stepper2__dot { width: 38px; height: 38px; font-size: .95rem; }
  .stepper2__track::before, .stepper2__track::after { left: 19px; top: 18px; }
  .stepper2__track::after { width: calc((100% - 38px) * var(--p, 0)); }
  .stepper2__card { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .stepper2__num { font-size: 3.2rem; }
  .why-grid2 { grid-template-columns: 1fr; }
  .why-photo { aspect-ratio: 4 / 3; max-height: 62vh; }
  .why-photo img { object-position: 64% 26%; }
  .why-section__content { max-width: none; }
  .caracteristicas { grid-template-columns: 1fr; }
  .caracteristicas__media img { height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .g { aspect-ratio: 4/3; }
  .gallery-grid .g--big, .gallery-grid .g--wide { grid-row: auto; grid-column: auto; }
  .cta-final__figure { position: relative; width: 100%; height: 300px; }
  .cta-final__figure img { object-position: 50% 28%; }
  .cta-final__figure::before { background: linear-gradient(0deg, var(--red) 0%, rgba(237,28,36,0) 45%); }
  .cta-final__inner { min-height: 0; }
  .cta-final__copy { max-width: none; }
}
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
  .nav__burger { display: flex; }
  .nav__links.mobile-open {
    display: flex; flex-direction: column; position: fixed; inset: 70px 14px auto 14px;
    background: #fff; border-radius: 24px; padding: 16px; box-shadow: var(--shadow); gap: 4px; z-index: 99;
  }
  .nav__links.mobile-open a { width: 100%; color: var(--ink); }
  .nav__links.mobile-open a:hover { background: var(--cream-2); color: var(--red); }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .hero__photo { opacity: .4; right: -30%; }
  .hero__stats { gap: 24px; }
  .feat-grid, .vars-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .vinculo__poles { flex-direction: column; gap: 10px; align-items: center; }
  .step__n { width: 54px; height: 54px; font-size: 1.2rem; }
  .steps::before { left: 26px; }
}
