/* ── FONTS ───────────────────────────────────────────────── */
@font-face {
  font-family: 'Agrandir';
  src: url('fonts/Agrandir-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Agrandir';
  src: url('fonts/Agrandir-TextBold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:     #F3F8F8;
  --bg2:    #FFFFFF;
  --card:   #FFFFFF;
  --card-h: #EEF6F6;
  --line:   #DFF0F0;
  --line2:  #B8DEDE;
  --teal:   #1A9090;
  --teal-d: #0D6B6B;
  --teal-l: #E8F5F5;
  --teal-b: rgba(26,144,144,0.22);
  --teal-g: rgba(26,144,144,0.07);
  --gold:   #E8A820;
  --ink:    #0B1A1A;
  --ink2:   #1D3535;
  --muted:  #527070;
  --subtle: #8AAEAE;
  /* text on dark sections */
  --wd2: rgba(255,255,255,0.65);
  --wd4: rgba(255,255,255,0.15);
  /* easing */
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r:   12px;
  --r-l: 18px;
  --r-f: 9999px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
blockquote { font-style: normal; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 80px 64px; }

/* scroll-margin para anclas bajo nav fijo (~68px) */
#pricing, #faq { scroll-margin-top: 80px; }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--teal); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-size: 0.85rem; font-weight: 600; z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-h {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  line-height: 1.18; color: var(--ink);
  margin-bottom: 16px; text-wrap: balance;
}
.section-sub {
  font-size: 0.96rem; color: var(--muted);
  line-height: 1.72; max-width: 560px; margin-bottom: 52px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600;
  border-radius: var(--r-f); border: none; cursor: pointer;
  text-decoration: none; touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--bounce), box-shadow 0.2s, background 0.15s;
}
.btn-pill:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.btn-pill-primary {
  background: var(--teal); color: #fff; padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(26,144,144,0.28);
}
.btn-pill-primary:hover {
  background: var(--teal-d); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,144,144,0.38);
}
.btn-lg { padding: 14px 30px; font-size: 1rem; }

.btn-pill-white {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--teal-d);
  padding: 14px 30px; font-size: 1rem; font-weight: 600;
  border-radius: var(--r-f); border: none; cursor: pointer;
  touch-action: manipulation;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transition: transform 0.25s var(--bounce), box-shadow 0.2s;
}
.btn-pill-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.22); }
.btn-pill-white:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.btn-outline-dark {
  display: block; text-align: center;
  font-size: 0.88rem; font-weight: 600;
  border-radius: var(--r-f); padding: 11px 20px;
  border: 1.5px solid var(--line2); color: var(--muted);
  background: transparent; cursor: pointer; touch-action: manipulation;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal-d); background: var(--teal-l); }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--spring), transform 0.6s var(--spring);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* FIX: hero cards preserve their rotation through the reveal animation */
.hg-card.reveal {
  opacity: 0;
  transform: translateY(calc(var(--ty, 0px) + 16px)) rotate(var(--rot, 0deg));
}
.hg-card.reveal.in {
  opacity: 1;
  transform: translateY(var(--ty, 0px)) rotate(var(--rot, 0deg));
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hg-card.reveal { transition: none; opacity: 1; transform: none; }
  .hg-card.reveal.in { transform: translateY(var(--ty,0px)) rotate(var(--rot,0deg)); }
  .hero-glow, .cta-glow { display: none; }
  .pill-dot { animation: none; }
  .ticker-track { animation: none; }
}

/* ── CARDS ───────────────────────────────────────────────── */
.dark-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.dark-card:hover {
  border-color: var(--line2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,26,26,0.07);
}
.dark-card--accent {
  border-color: var(--teal-b);
  background: linear-gradient(135deg, #fff 0%, var(--teal-l) 100%);
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 52px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); margin-top: 52px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(243,248,248,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { background: rgba(255,255,255,0.92); border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 16px 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 32px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 0.85rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--ink); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding-top: calc(68px + 72px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 80px; right: -60px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(26,144,144,0.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* SPLIT LAYOUT: text left, grid right */
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.pill-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-l); border: 1px solid var(--teal-b);
  color: var(--teal-d); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-f); margin-bottom: 28px;
}
.pill-dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

.hero-h1 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 20px; text-wrap: pretty;
}
.hero-h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.05rem; color: var(--ink2); line-height: 1.65; margin-bottom: 12px;
}
.hero-sub-note {
  font-size: 0.85rem; color: var(--subtle); line-height: 1.6; margin-bottom: 32px;
}
.hero-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line);
  width: 100%;
}
.hero-price {
  font-family: 'Agrandir', sans-serif; font-size: 2.4rem;
  color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1;
}
.hero-price-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-price-meta span { font-size: 0.75rem; color: var(--muted); }
.hero-price-meta s    { font-size: 0.72rem; color: var(--subtle); }
.hero-actions { margin-bottom: 24px; }
.hero-cta-row { flex-wrap: wrap; } /* safeguard en pantallas muy estrechas */
.hero-trust { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hero-trust li { font-size: 0.75rem; color: var(--subtle); font-weight: 500; }

/* ── HERO 2×2 PHOTO GRID ─────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative; z-index: 1;
}
.hg-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--card);
  /* Layered floating shadow */
  box-shadow:
    0 2px 4px  rgba(11,26,26,0.04),
    0 8px 20px rgba(11,26,26,0.07),
    0 24px 48px rgba(11,26,26,0.1);
  border: 1px solid rgba(11,26,26,0.05);
  /* Transition only on transform/opacity — not box-shadow (cheaper) */
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}
.hg-card:hover {
  box-shadow:
    0 4px 8px   rgba(11,26,26,0.06),
    0 16px 32px rgba(11,26,26,0.1),
    0 40px 72px rgba(11,26,26,0.13);
}
.hg-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  transition: transform 0.6s var(--spring); display: block;
}
.hg-card:hover img { transform: scale(1.04); }
.hg-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 14px 12px;
  background: linear-gradient(to top, rgba(11,26,26,0.6) 0%, transparent 100%);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 13px 0;
  white-space: nowrap; user-select: none;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 18px;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track span {
  font-size: 0.69rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--subtle);
}
.td { color: var(--line2) !important; }

/* Pause on hover */
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── STATS ───────────────────────────────────────────────── */
.stats { background: var(--bg2); }
.stats-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat { padding: 28px 16px; text-align: center; }
.stat-sep { width: 1px; height: 32px; background: var(--line); }
.stat-n {
  display: block; font-family: 'Agrandir', sans-serif;
  font-size: 1.75rem; color: var(--teal-d); line-height: 1;
  margin-bottom: 5px; font-variant-numeric: tabular-nums;
}
.stat-l { font-size: 0.73rem; color: var(--muted); font-weight: 500; }

/* ── AUDIENCE ────────────────────────────────────────────── */
.audience { background: var(--bg); }
.aud-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.aud-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink2);
  font-size: 0.8rem; font-weight: 500; padding: 7px 14px; border-radius: var(--r-f);
  transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: default;
}
.aud-pill:hover { border-color: var(--teal-b); background: var(--teal-l); color: var(--teal-d); }
.aud-pill svg { color: var(--teal); flex-shrink: 0; }
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.aud-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 18px;
  transition: border-color 0.2s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.aud-item:hover { border-color: var(--line2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,26,26,0.06); }
.aud-tag { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.aud-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: var(--bg2); }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-q { font-size: 0.9rem; color: var(--ink2); line-height: 1.72; margin-bottom: 22px; font-style: italic; }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-l); border: 1.5px solid var(--teal-b);
  color: var(--teal-d); font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-who strong { display: block; font-size: 0.84rem; color: var(--ink); }
.review-who span   { display: block; font-size: 0.72rem; color: var(--subtle); margin-top: 2px; }

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits { background: var(--bg); }
.bc-num {
  font-family: 'Agrandir', sans-serif; font-size: 2rem;
  color: var(--line2); line-height: 1; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.dark-card--accent .bc-num { color: var(--teal-b); }
.dark-card h3 { font-size: 0.96rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.dark-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── HOW ─────────────────────────────────────────────────── */
.how { background: var(--bg2); }
.how .section-h { margin-bottom: 52px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 22px; left: 44px; right: calc(100%/3 + 22px);
  height: 1px; background: var(--line);
}
.step { display: flex; flex-direction: column; align-items: flex-start; padding-right: 40px; position: relative; }
.step:last-child { padding-right: 0; }
.step-n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-l); border: 1.5px solid var(--teal-b);
  color: var(--teal-d); font-family: 'Agrandir', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0; position: relative; z-index: 2;
}
.step-body h3 { font-size: 0.96rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-body p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── GALLERY — full-width photo strip ────────────────────── */
.gallery { overflow: hidden; background: var(--bg); padding: 0; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gi { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gi img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--spring); display: block;
}
.gi:hover img { transform: scale(1.04); }
.gi-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(11,26,26,0.62) 0%, transparent 100%);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* ── PRICING — wider layout ──────────────────────────────── */
.pricing { background: var(--bg); }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* featured card gets 60% */
  gap: 18px;
}
.price-card { position: relative; }
.price-card--feat {
  border-color: var(--teal-b);
  background: linear-gradient(150deg, #fff 0%, var(--teal-l) 100%);
  box-shadow: 0 0 0 1px var(--teal-b), 0 20px 48px rgba(26,144,144,0.12);
}
.feat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--r-f); white-space: nowrap;
}
.price-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.price-num {
  font-family: 'Agrandir', sans-serif; font-size: 2.4rem; color: var(--ink2);
  line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums;
}
.price-num span { font-size: 0.72rem; font-weight: 400; color: var(--subtle); margin-left: 4px; }
.price-num--feat { font-size: 2.8rem; color: var(--teal-d); }
.price-num--feat span { color: var(--muted); }
.price-save { font-size: 0.76rem; font-weight: 700; color: var(--gold); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 24px; }
.price-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.price-list svg { flex-shrink: 0; color: var(--teal); }
.price-list .gold { color: var(--ink2); }
.price-list .gold svg { color: var(--gold); }
.risk-line {
  display: flex; align-items: center; gap: 7px; margin-top: 28px;
  font-size: 0.76rem; color: var(--subtle);
}
.risk-line svg { color: var(--teal); flex-shrink: 0; }

/* ── PROMOS ──────────────────────────────────────────────── */
.promos { background: var(--bg2); }
.promo-icon {
  width: 44px; height: 44px; background: var(--teal-l); border-radius: 10px;
  border: 1px solid var(--teal-b); display: flex; align-items: center;
  justify-content: center; color: var(--teal-d); margin-bottom: 16px;
}
.tag-chip {
  display: inline-block; background: var(--teal-l); border: 1px solid var(--teal-b);
  color: var(--teal-d); font-size: 0.71rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--r-f); margin-top: 14px;
}

/* ── LOCATIONS ───────────────────────────────────────────── */
.locations { background: var(--bg); }
.loc-icon {
  width: 40px; height: 40px; background: var(--teal-l); border-radius: 8px;
  border: 1px solid var(--teal-b); display: flex; align-items: center;
  justify-content: center; color: var(--teal-d); margin-bottom: 14px;
}
.loc-note { font-size: 0.84rem; color: var(--muted); margin-top: 20px; }
.text-link { color: var(--teal-d); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--bg2); }
.faq-list { max-width: 700px; display: flex; flex-direction: column; gap: 6px; margin-top: 48px; }
.faq-item {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--line2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 20px; background: none; border: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--ink2); text-align: left;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent; transition: color 0.2s;
}
.faq-q:hover { color: var(--teal-d); }
.faq-q[aria-expanded="true"] { color: var(--teal-d); }
.faq-q:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; }
.faq-chev { flex-shrink: 0; color: var(--subtle); transition: transform 0.35s var(--spring), color 0.2s; }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); color: var(--teal); }
.faq-a { padding: 0 20px 16px; font-size: 0.87rem; color: var(--muted); line-height: 1.72; }

/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(140deg, var(--teal-d) 0%, var(--teal) 100%);
  text-align: center; padding: 120px 48px; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-final .eyebrow { color: rgba(255,255,255,0.55); }
.cta-final h2 {
  font-family: 'Agrandir', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff;
  line-height: 1.13; margin-bottom: 18px; text-wrap: balance;
}
.cta-final p {
  font-size: 0.97rem; color: rgba(255,255,255,0.62);
  line-height: 1.72; max-width: 420px; margin: 0 auto 36px;
}
.cta-risk {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px !important; font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
.cta-risk svg { flex-shrink: 0; opacity: 0.7; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-logo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.4; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-right p { font-size: 0.74rem; color: var(--wd4); }
.footer-right nav { display: flex; gap: 16px; }
.footer-right nav a { font-size: 0.74rem; color: var(--wd4); transition: color 0.2s; }
.footer-right nav a:hover { color: var(--wd2); }

/* ── WHATSAPP ────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4); color: #fff;
  transition: transform 0.3s var(--bounce), box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,0.55); }
.wa-float:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.wa-float svg { width: 26px; height: 26px; }
.wa-tip {
  position: absolute; right: 62px; background: var(--ink);
  color: #fff; font-size: 0.73rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── STICKY MOBILE ───────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  /* safe-area-inset-bottom para iPhone X+ — evita superposición con home indicator */
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center; justify-content: space-between; z-index: 300;
  box-shadow: 0 -4px 16px rgba(11,26,26,0.07);
}
.sticky-bar.show { display: flex; }
.sticky-price {
  font-family: 'Agrandir', sans-serif; font-size: 1.15rem;
  color: var(--teal-d); font-variant-numeric: tabular-nums;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wrap         { padding: 64px 40px; }
  .nav-inner    { padding: 15px 40px; }
  .hero-inner   { padding: 0 40px; gap: 40px; }
  .stats-inner  { padding: 0 40px; }
  .footer-inner { padding: 0 40px; }
}

@media (max-width: 860px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 40px; padding: 0 28px; }
  .hero-content { order: 1; } /* texto primero en móvil — mejor conversión */
  .hero-grid    { order: 2; max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-h1      { font-size: clamp(2.2rem, 6vw, 3rem); }
  .cards-grid   { grid-template-columns: 1fr 1fr; }
  .cards-grid--2{ grid-template-columns: 1fr; }
  .aud-grid     { grid-template-columns: 1fr 1fr; }
  .steps        { grid-template-columns: 1fr; gap: 28px; }
  .steps::before{ display: none; }
  .step         { padding-right: 0; }
  .gallery-strip{ grid-template-columns: 1fr 1fr; }
  .gi           { aspect-ratio: 3/2; }
  .price-grid   { grid-template-columns: 1fr; }
  .price-card--feat { order: -1; }
  .stats-inner  { padding: 0 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-inner    { padding: 13px 20px; }
  .nav-logo     { height: 28px; }
  .nav-link     { display: none; }
  .hero         { padding-top: calc(62px + 48px); }
  .hero-inner   { padding: 0 20px; gap: 32px; }
  .hero-grid    { max-width: 100%; }
  .wrap         { padding: 52px 20px; }
  .stats-inner  { padding: 0 20px; grid-template-columns: 1fr 1fr; }
  .stat-sep     { display: none; }
  .stat         { padding: 20px 8px; }
  .stat-n       { font-size: 1.4rem; }
  .cards-grid   { grid-template-columns: 1fr; }
  .aud-grid     { grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: 1fr 1fr; gap: 4px; }
  .cta-final    { padding: 80px 24px; }
  .footer-inner { padding: 0 20px; }
  .wa-float     { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}
