/* ============================================================
   EL CAMINO DEL CAMBIO — v3
   Identidad: rosa salmón + rojo gradiente · Satoshi + Inter
   ============================================================ */

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
  scroll-padding-top: 120px; /* status bar + nav */
  overflow-x: hidden; /* prevent horizontal scrollbar from overflowing children */
  max-width: 100%;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
/* Interactive primitives */
a, button, summary, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Section anchor offset so sticky nav doesn't cover headings */
[id="top"], [id="testimonios"], [id="como"], [id="equipo"], [id="oferta"], [id="faq"] {
  scroll-margin-top: 120px;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
em { font-style: italic; }
::selection { background: var(--accent); color: #fff; }

/* --- Tokens --------------------------------------------------- */
:root {
  /* palette */
  --bg: #fff8f9;
  --bg-2: #ffeff1;
  --bg-3: #f3d8db;
  --paper: #ffffff;
  --ink: #5c4649;
  --ink-soft: rgba(92, 70, 73, 0.78);
  --ink-faint: rgba(92, 70, 73, 0.55);
  --rule: rgba(92, 70, 73, 0.16);

  --accent: #e2483f;
  --accent-deep: #c4342c;
  --accent-light: #ff696f;
  --accent-pink: #ffdad8;

  --grad: linear-gradient(90deg, #ea2f35 0%, #ff696f 100%);
  --grad-reverse: linear-gradient(90deg, #ff696f 0%, #ea2f35 100%);

  --dark: #523c3f;
  --dark-2: #47383a;
  --dark-3: #3f2b2e;
  --cream-on-dark: #f6faff;

  /* typography */
  --serif: 'Satoshi', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* layout */
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad: clamp(64px, 9vw, 128px);

  /* effects */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(92,70,73,.06), 0 8px 16px rgba(92,70,73,.06);
  --shadow-md: 0 4px 8px rgba(92,70,73,.08), 0 16px 32px rgba(92,70,73,.10);
  --shadow-lg: 0 8px 20px rgba(0,0,0,.08), 0 30px 60px rgba(0,0,0,.12);

  /* radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* --- Layout container ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --- Section heads -------------------------------------------- */
.section-head {
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 760px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-2);
  border: 1px solid rgba(226, 72, 63, 0.18);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.section-eyebrow .dot,
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.section-eyebrow--accent {
  background: var(--paper);
  border-color: rgba(226, 72, 63, 0.3);
}
.section-eyebrow--accent-invert {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #ffd8d4;
}
.section-eyebrow--accent-invert .dot { background: #ffd8d4; }

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.6; }
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title--dark { color: #fff; }
.section-lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 68ch;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

.accent { color: var(--accent); }
.accent-italic {
  color: var(--accent);
  font-style: italic;
}
.accent-warm { color: #ff9b90; }

.eyebrow-sm {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.eyebrow-sm--accent { color: var(--accent); }

/* --- Status bar ----------------------------------------------- */
.status-bar {
  background: var(--grad);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.status-bar__inner {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
}
.status-bar__pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s infinite;
}
.status-bar__count {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  padding: 2px 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 6px;
}

/* --- Nav ------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 249, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.nav__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
}
.nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a { transition: color 0.2s; position: relative; }
.nav__links a:hover { color: var(--accent); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav__links a:hover::after { width: 100%; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
}

/* --- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  position: relative;
  overflow: hidden;
}
.btn__arrow {
  transition: transform 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 14px;
  line-height: 1;
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(226, 72, 63, 0.3);
}
.btn--primary:hover {
  background: var(--grad-reverse);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(226, 72, 63, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--ghost .btn__arrow { background: rgba(92,70,73,0.12); color: var(--ink); }
.btn--ghost:hover .btn__arrow { background: rgba(255,255,255,0.2); color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--xl { padding: 20px 32px; font-size: 16px; }

/* ---- Locked / pre-sale button ---- */
.btn--locked {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
  filter: grayscale(0.15);
}
.btn__lock {
  font-size: 1em;
  margin-right: 4px;
  vertical-align: middle;
}
.btn-locked-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.btn-wa-doubt {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: currentColor;
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.btn-wa-doubt:hover { opacity: 1; }

/* ---- WhatsApp green button ---- */
.btn--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover {
  background: linear-gradient(135deg, #2be371 0%, #0f7a6d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}
.btn__wa-icon {
  font-size: 1.1em;
  margin-right: 4px;
  vertical-align: middle;
}

/* ---- Row layout for side-by-side buttons ---- */
.btn-locked-wrap--row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

/* ---- Equal-width stacked buttons (videos & final card) ---- */
.videos__btn-wrap,
.final__card .btn-locked-wrap {
  align-items: stretch;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.videos__btn-wrap .btn,
.final__card .btn-locked-wrap .btn {
  width: 100%;
  justify-content: center;
}

.btn__meta {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin-top: 2px;
}

.play-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.play-dot::before {
  content: '';
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 5px solid #fff;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(90% 70% at 10% 0%, rgba(255, 218, 216, 0.55) 0%, transparent 65%),
    radial-gradient(70% 60% at 100% 100%, rgba(243, 216, 219, 0.5) 0%, transparent 60%),
    var(--bg);
  padding: clamp(40px, 7vw, 80px) 0 clamp(64px, 9vw, 110px);
  position: relative;
  overflow: visible;
}
.hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.hero__copy { max-width: 100%; }
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid rgba(226, 72, 63, 0.2);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__lock {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--ink); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

/* Hero proof — rotating testimonial + avatar stack + copy */
.hero__proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 2px 14px;
  margin-bottom: 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* Rotator */
.hero__proof-rotator {
  position: relative;
  min-height: 78px;
}
.hero__proof-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff 0%, #fff7f6 100%);
  border: 1px solid rgba(226,72,63,0.14);
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(92,70,73,0.06);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.25s, border-color 0.25s;
  pointer-events: none;
  text-align: left;
}
.hero__proof-quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero__proof-quote:hover {
  border-color: rgba(226,72,63,0.38);
  box-shadow: 0 6px 18px rgba(226,72,63,0.18);
}
.hero__proof-qthumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}
.hero__proof-qthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(92,70,73,0.15);
  display: block;
}
.hero__proof-qplay {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(226,72,63,0.4);
  border: 2px solid #fff;
}
.hero__proof-qplay svg { width: 7px; height: 7px; margin-left: 1px; }
.hero__proof-qbody {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.hero__proof-qtext {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero__proof-qtext strong {
  color: var(--accent-deep);
  font-weight: 700;
  font-style: normal;
}
.hero__proof-qwho {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-soft);
  font-style: normal;
  letter-spacing: 0.01em;
}
.hero__proof-qwho strong {
  color: var(--ink);
  font-weight: 700;
}

/* Foot row: small avatars + copy */
.hero__proof-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 4px;
}
.hero__proof-stack {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.hero__proof-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--paper);
  background: var(--bg-3);
  cursor: pointer;
  margin-left: -8px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 2px 5px rgba(92,70,73,0.12);
}
.hero__proof-av:first-child { margin-left: 0; }
.hero__proof-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero__proof-av:hover,
.hero__proof-av:focus-visible {
  transform: translateY(-2px) scale(1.1);
  z-index: 2;
  box-shadow: 0 5px 12px rgba(226,72,63,0.3);
}
.hero__proof-copy {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.hero__proof-copy strong {
  color: var(--ink);
  font-weight: 700;
}
.hero__proof-copy a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.hero__proof-copy a:hover { border-bottom-color: var(--accent); }

@media (max-width: 560px) {
  .hero__proof { padding: 14px 0 12px; margin-bottom: 14px; }
  .hero__proof-rotator { min-height: 74px; }
  .hero__proof-quote { gap: 12px; padding: 10px 12px; }
  .hero__proof-qthumb { width: 46px; height: 46px; }
  .hero__proof-qtext { font-size: 12.5px; }
  .hero__proof-qwho { font-size: 11px; }
  .hero__proof-av { width: 28px; height: 28px; border-width: 1.5px; }
  .hero__proof-copy { font-size: 11.5px; }
}
@media (max-width: 380px) {
  .hero__proof-qthumb { width: 42px; height: 42px; }
  .hero__proof-qtext { font-size: 12px; -webkit-line-clamp: 3; }
  .hero__proof-qwho { font-size: 10.5px; }
  .hero__proof-av { width: 26px; height: 26px; margin-left: -6px; }
  .hero__proof-copy { font-size: 11px; }
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__bullets--hero-main {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-bottom: 10px;
}
.hero__bullets--hero-main li {
  padding: 12px 18px 12px 12px;
  font-size: 15px;
  background: rgba(226, 72, 63, 0.12);
  border-color: rgba(226, 72, 63, 0.28);
}
.hero__bullets--hero-main li span {
  width: 24px;
  height: 24px;
  font-size: 13px;
}
.hero__bullets--hero-sec li {
  padding: 6px 12px 6px 6px;
  font-size: 12.5px;
  background: rgba(226, 72, 63, 0.04);
  border-color: rgba(226, 72, 63, 0.14);
  color: var(--ink-soft);
}
.hero__bullets--hero-sec li span {
  width: 16px;
  height: 16px;
  font-size: 9px;
}
.hero__bullets--hero-sec li strong { color: var(--ink); }
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 9px;
  background: rgba(226, 72, 63, 0.06);
  border: 1px solid rgba(226, 72, 63, 0.18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  transition: background 0.2s, border-color 0.2s;
}
.hero__bullets li:hover {
  background: rgba(226, 72, 63, 0.1);
  border-color: rgba(226, 72, 63, 0.3);
}
.hero__bullets span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(226, 72, 63, 0.3);
}
.hero__bullets strong {
  font-weight: 700;
  color: var(--ink);
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 500px;
  justify-self: end;
}
@media (max-width: 960px) {
  .hero__visual { justify-self: center; width: 100%; max-width: 400px; }
}
.hero__orb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 105, 111, 0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(226, 72, 63, 0.25), transparent 55%);
  border-radius: var(--r-xl);
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
}
.hero__badge {
  position: absolute;
  bottom: 16px; left: -16px;
  z-index: 2;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  border: 1px solid var(--rule);
}
.hero__badge-k {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero__badge-v {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__chip {
  position: absolute;
  top: 16px; right: -12px;
  z-index: 2;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}
.hero__chip span:nth-child(even) {
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   CELEBS
   ============================================================ */
.celebs {
  background: var(--paper);
  padding: var(--section-pad) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 500px) { .celeb-grid { grid-template-columns: 1fr; } }

.celeb {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2vw, 26px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.celeb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.celeb__img {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 18px;
}
.celeb__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.celeb blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 14px;
  flex-grow: 1;
}
.celeb figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid rgba(92,70,73,0.1); }
.celeb figcaption strong { font-family: var(--serif); font-size: 15px; color: var(--ink); }
.celeb figcaption span { font-size: 12px; color: var(--ink-faint); }

.cta-divider {
  position: relative;
  margin: clamp(56px, 7vw, 80px) auto clamp(32px, 5vw, 48px);
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: 0.4;
}
.cta-divider__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  box-shadow: 0 8px 20px rgba(226, 72, 63, 0.35);
  animation: bob 2.4s ease-in-out infinite;
}
.cta-divider__dot svg { width: 24px; height: 24px; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.celebs__warn {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.videos {
  background: var(--dark);
  background-image:
    radial-gradient(60% 40% at 50% 0%, rgba(226, 72, 63, 0.2), transparent 70%);
  color: var(--cream-on-dark);
  padding: var(--section-pad) 0;
  position: relative;
}
.videos .section-title,
.videos .section-title .accent-italic { color: #fff; }
.videos .section-title .accent-italic { font-style: italic; color: #ff9b90; }
.videos .section-lead { color: rgba(246, 250, 255, 0.75); }
.videos .section-eyebrow--accent {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #ffd8d4;
}
.videos .section-eyebrow--accent .dot { background: #ffd8d4; }

.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
/* Skip 3-col layout so 16 always fits cleanly (4×4 or 2×8) */
@media (max-width: 720px) { .vgrid { grid-template-columns: repeat(2, 1fr); } }

.vcard {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: #0c0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  display: block;
  padding: 0;
  text-align: left;
}
.vcard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.35s;
  filter: brightness(0.88) saturate(0.95);
}
.vcard__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.52) 0%,
    transparent 38%,
    transparent 55%,
    rgba(0,0,0,0.60) 100%
  );
  transition: opacity 0.35s;
}
.vcard__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: #fff;
}
.vcard__play {
  /* Topo direito — order 1 */
  order: 1;
  align-self: flex-end;
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: transform 0.3s var(--ease), background 0.3s;
  /* Posiciona no topo junto ao meta */
  position: absolute;
  top: 14px;
  right: 14px;
}
/* Linha topo: meta + play juntos via posicionamento absoluto do play */
.vcard__meta {
  /* Topo esquerdo — primeiro filho do flex */
  order: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.vcard__meta strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
}
.vcard__meta span {
  font-family: var(--sans);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
  padding: 3px 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 155, 144, 0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.vcard:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
.vcard:hover .vcard__play {
  transform: scale(1.12);
  background: var(--accent);
  border-color: transparent;
}

.videos__note {
  text-align: center;
  margin-top: clamp(32px, 5vw, 48px);
  color: rgba(246, 250, 255, 0.55);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.01em;
}

/* ============================================================
   WA MESSAGES
   ============================================================ */
.wa-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.wa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
@media (max-width: 920px) { .wa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wa-grid { grid-template-columns: 1fr; } }

.wa--featured { grid-column: span 2; grid-row: span 2; }
@media (max-width: 920px) { .wa--featured { grid-column: span 2; grid-row: auto; } }
@media (max-width: 560px) { .wa--featured { grid-column: span 1; } }

.wa__bubble {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px 20px 20px 4px;
  padding: 16px 18px 14px;
  box-shadow: 0 1px 2px rgba(92,70,73,0.04), 0 8px 20px rgba(92,70,73,0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  height: 100%;
}
.wa__bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(92,70,73,0.06), 0 16px 32px rgba(92,70,73,0.1);
}
.wa--featured .wa__bubble { padding: 22px 24px 18px; }
.wa__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.wa__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--c, var(--accent)) 22%, var(--paper));
  color: var(--c, var(--accent));
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in oklab, var(--c, var(--accent)) 32%, transparent);
}
.wa__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--c, var(--accent));
}
.wa__time {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  font-family: var(--sans);
}
.wa__text p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.wa--featured .wa__text p { font-size: 16px; line-height: 1.55; }
.wa__text p:last-child { margin-bottom: 0; }
.wa__reacts {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.wa__reactcount {
  margin-left: auto;
  background: var(--bg-2);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 12px;
}

/* ============================================================
   RESULTS — internal report (animated counters)
   ============================================================ */
.results {
  background: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.results .container { position: relative; }

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(32px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 960px) { .results__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .results__grid { grid-template-columns: 1fr; } }

.result {
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  position: relative;
}
.result:last-child { border-right: 0; }
@media (max-width: 960px) {
  .result:nth-child(2) { border-right: 0; }
  .result:nth-child(1), .result:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 520px) {
  .result { border-right: 0; border-bottom: 1px solid var(--rule); }
  .result:last-child { border-bottom: 0; }
}

.result__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px dashed rgba(92,70,73,0.18);
}
.result__tag {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding: 3px 8px;
  background: rgba(226,72,63,0.08);
  border-radius: 999px;
}
.result__meta {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: 0;
  text-align: right;
  line-height: 1.3;
}

.result__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--accent-deep);
  display: flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  margin: 4px 0 2px;
}
.result__sign {
  margin-right: 2px;
  color: var(--accent-deep);
}
.result__unit {
  font-family: var(--sans);
  font-size: 0.38em;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0;
  color: var(--ink-soft);
  text-transform: lowercase;
}

.result__label {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.result__foot {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.4;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(92,70,73,0.08);
}

.results__source {
  margin-top: clamp(20px, 3vw, 28px);
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.results__source-line {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.results__source-line strong {
  color: var(--ink);
  font-weight: 700;
  margin-right: 2px;
}

/* ============================================================
   TRANSFORM STRIP — before/after alumni
   ============================================================ */
.tstrip {
  background: var(--bg);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.tstrip__scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  padding: clamp(24px, 4vw, 40px) var(--gutter) 16px;
  margin: 0 auto;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(226,72,63,0.3) transparent;
}
.tstrip__scroll::-webkit-scrollbar { height: 6px; }
.tstrip__scroll::-webkit-scrollbar-track { background: transparent; }
.tstrip__scroll::-webkit-scrollbar-thumb {
  background: rgba(226,72,63,0.25);
  border-radius: 999px;
}
.tstrip__scroll::-webkit-scrollbar-thumb:hover { background: rgba(226,72,63,0.5); }

@media (min-width: 1100px) {
  .tstrip__scroll {
    grid-auto-columns: 1fr;
    grid-template-columns: repeat(6, 1fr);
    max-width: var(--container);
    overflow-x: visible;
  }
  .tstrip__hint { display: none; }
}

.tcard {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tcard__img {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(90deg, #e8cdd0 0 50%, #ffe8e7 50% 100%);
  box-shadow: 0 4px 12px rgba(92,70,73,0.08), 0 1px 3px rgba(92,70,73,0.05);
  border: 1px solid rgba(226,72,63,0.12);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
/* Placeholder labels — shown when image fails / is missing */
.tcard__img::before,
.tcard__img::after {
  position: absolute;
  top: 50%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s;
}
.tcard__img::before {
  content: 'Antes';
  left: 25%;
  transform: translate(-50%, -50%);
  color: rgba(92,70,73,0.55);
}
.tcard__img::after {
  content: 'Ahora';
  right: 25%;
  transform: translate(50%, -50%);
  color: var(--accent);
}
.tcard__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.5s var(--ease);
}
/* Hide placeholder labels when image loaded OK */
.tcard__img:not(.no-img)::before,
.tcard__img:not(.no-img)::after { opacity: 0; }
.tcard__img.no-img img { display: none; }

.tcard:hover .tcard__img {
  box-shadow: 0 10px 28px rgba(92,70,73,0.14), 0 3px 8px rgba(92,70,73,0.08);
  transform: translateY(-3px);
}
.tcard:hover .tcard__img img { transform: scale(1.04); }

/* Number badge — rendered via data-num on .tcard__img */
.tcard__img[data-num]:not(.no-img)::before { content: ''; }
.tcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(226,72,63,0.14);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  pointer-events: none;
}

.tcard__caption {
  padding: 0 4px;
  font-family: var(--sans);
  color: var(--ink);
}
.tcard__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.tcard__name strong { font-weight: 800; }
.tcard__outcome {
  font-family: var(--sans);
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin-top: 2px;
}
.tcard__outcome em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--serif);
}
.tcard__sub {
  font-family: var(--sans);
  font-size: clamp(12px, 1.2vw, 13px);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 4px;
}

.tstrip__hint {
  text-align: center;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ============================================================
   ARGUMENT — "¿Qué tienen en común?"
   ============================================================ */
.argument { padding: var(--section-pad) 0 0; background: var(--paper); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 32px);
  margin: 48px auto 0;
  max-width: 640px;
}

.proof { display: flex; flex-direction: column; align-items: center; }
.proof__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 16px;
}
.proof__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.proof figcaption {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.claim {
  background: var(--accent);
  color: #fff;
  padding: clamp(64px, 10vw, 110px) 0;
  margin-top: clamp(80px, 10vw, 140px);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.claim__inner { max-width: 820px; text-align: center; }
.claim h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.claim h3 em {
  font-style: italic;
  display: block;
  margin-top: 4px;
  opacity: 0.92;
}
.claim p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}
.claim p strong { color: #fff; }

.gives {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: var(--bg-2);
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--r-xl);
  margin-top: clamp(-60px, -8vw, -40px);
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) { .gives { grid-template-columns: 1fr; } }
.gives__title h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.gives__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gives__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(92,70,73,0.12);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.gives__list li:last-child { border-bottom: 0; }
.gives__list svg,
.check {
  width: 24px; height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.argument__punch {
  text-align: center;
  max-width: 760px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.argument__punch-lg {
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 24px 0 0;
  padding-bottom: var(--section-pad);
}

/* ============================================================
   NO MAGIC
   ============================================================ */
.no-magic {
  background: var(--grad);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.no-magic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 100% 0%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.no-magic__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
@media (max-width: 840px) { .no-magic__inner { grid-template-columns: 1fr; } }
.no-magic__copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.no-magic__copy h2 em { font-style: italic; opacity: 0.9; }
.no-magic__copy p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}
.no-magic__list {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 8px 24px;
  backdrop-filter: blur(10px);
}
.no-magic__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}
.no-magic__list li:last-child { border-bottom: 0; }
.no-magic__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  color: rgba(255,255,255,0.55);
  min-width: 40px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   METHOD (features 3x2 on dark)
   ============================================================ */
.method {
  background: var(--dark);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
}
.method .section-title br + * { color: #fff; }
.method .section-title { color: #fff; }
.method .section-title .accent { color: var(--accent-light); }
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(226,72,63,0.08);
}
.feature__icon {
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(226,72,63,0.2);
  border-radius: 14px;
  margin-bottom: 4px;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.005em;
}
.feature p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(246, 250, 255, 0.7);
}

/* ============================================================
   FOR YOU IF
   ============================================================ */
.for-you {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.for-you__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 36px;
}
@media (max-width: 760px) { .for-you__list { grid-template-columns: 1fr; } }
.for-you__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.for-you__note {
  margin-top: 40px;
  padding: 22px 26px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============================================================
   TRANSFORM
   ============================================================ */
.transform {
  background: var(--paper);
  padding: var(--section-pad) 0;
}
.transform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 40px;
}
@media (max-width: 820px) { .transform__grid { grid-template-columns: 1fr; } }

.transform__card { }
.transform__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg-3);
}
.transform__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.transform__card figcaption {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.transform__note {
  background: var(--accent);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--r-md);
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  max-width: 800px;
  margin: 40px auto;
}

.transform__claim {
  max-width: 760px;
  margin: 48px auto 0;
}
.transform__claim h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.transform__claim p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.transform__claim-red {
  background: var(--bg-2);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--accent) !important;
  font-weight: 500;
}

/* ============================================================
   OFFER
   ============================================================ */
.offer {
  background: var(--dark);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(226, 72, 63, 0.4), transparent 65%);
  pointer-events: none;
}
.offer__inner { position: relative; }
.offer__head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.offer__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 18px 0;
}
.offer__title em { font-style: italic; opacity: 0.9; }
.offer__lead {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246, 250, 255, 0.82);
}
.offer__lead strong { color: #ffd8d4; }

.offer-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  max-width: 900px;
  margin: 0 auto;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  border: 2px solid var(--accent);
}
.offer-card__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(226, 72, 63, 0.4);
  white-space: nowrap;
}
.offer-card__badge .dot { background: #fff; }

.offer-card__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding-bottom: 28px;
  margin-top: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 640px) { .offer-card__top { grid-template-columns: 1fr; } }
.offer-card__access { display: flex; flex-direction: column; gap: 4px; }
.offer-card__access strong {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.offer-card__access em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
}
.offer-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
@media (max-width: 640px) { .offer-card__price { align-items: flex-start; } }
.offer-card__was { margin-bottom: 4px; }
.offer-card__was s {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-faint);
  text-decoration-thickness: 2px;
}
.offer-card__now {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--accent);
}
.offer-card__cur {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
}
.offer-card__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 7rem);
  letter-spacing: -0.05em;
}
.offer-card__per {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 6px;
}

.offer-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
@media (max-width: 560px) { .offer-card__list { grid-template-columns: 1fr; } }
.offer-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.offer-card__list-hi {
  grid-column: 1 / -1;
  background: var(--bg-2);
  padding: 12px 16px !important;
  border-radius: var(--r-md);
  color: var(--accent) !important;
  font-weight: 700;
  border: 1px solid rgba(226, 72, 63, 0.2);
}

.offer-card__cta {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.offer-card__cta .btn { min-width: 280px; }
.offer-card__countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink-soft);
}
.offer-card__countdown > div {
  background: var(--bg-2);
  padding: 10px 14px;
  border-radius: 10px;
  min-width: 60px;
  text-align: center;
}
.offer-card__countdown > div strong {
  display: block;
  font-size: 22px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 2px;
}
.offer-card__countdown > div span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offer-card__fine {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
}

.offer__help {
  max-width: 900px;
  margin: clamp(32px, 5vw, 48px) auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px) clamp(24px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.offer__help-copy h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.offer__help-copy p {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
}
.offer__help .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.offer__help .btn--ghost:hover {
  background: #fff;
  color: var(--dark);
}
.offer__help .btn--ghost .btn__arrow { background: rgba(255,255,255,0.15); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  background: var(--paper);
  padding: var(--section-pad) 0;
}
.guarantee__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 680px) {
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; }
}
.guarantee__stamp {
  color: var(--accent);
  display: flex;
  justify-content: center;
  animation: spin 30s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.guarantee__stamp svg { filter: drop-shadow(0 12px 28px rgba(226, 72, 63, 0.25)); }

.guarantee__copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 16px;
}
.guarantee__copy p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.guarantee__copy p strong { color: var(--accent); }
.guarantee__oath {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
  color: var(--accent) !important;
  margin-top: 10px !important;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.team-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 48px);
  border: 1px solid var(--rule);
  align-items: start;
}
.team-card--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
/* Fito card — fundo escuro: forçar branco em todos os textos */
.team-card--primary h3 { color: #fff !important; }
.team-card--primary .team-card__philo {
  color: rgba(255,255,255,0.88) !important;
  border-left-color: var(--accent-light) !important;
}
.team-card--primary ul { color: rgba(255,255,255,0.72) !important; }
.team-card--primary ul li {
  color: rgba(255,255,255,0.72) !important;
  border-top-color: rgba(255,255,255,0.12) !important;
}
.team-card--primary .eyebrow-sm--accent { color: var(--accent-light) !important; }

.team-card__avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 28px rgba(226, 72, 63, 0.3);
  position: relative;
  overflow: hidden;
}
.team-card__avatar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.3), transparent 60%);
}
.team-card--primary .team-card__avatar {
  background: linear-gradient(135deg, #2C1F21 0%, #0F0A0B 100%);
  border: 1px solid rgba(255,255,255,0.15);
}

.team-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.team-card__philo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-bottom: 20px;
}
.team-card ul {
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.team-card ul li {
  padding: 8px 0;
  border-top: 1px solid var(--rule);
}
.team-card ul li:first-child { border-top: 0; padding-top: 2px; }

@media (max-width: 680px) {
  .team-card { grid-template-columns: 1fr; text-align: left; }
  .team-card__avatar { width: 100px; height: 100px; font-size: 32px; }
}

/* ============================================================
   FINAL
   ============================================================ */
.final {
  background: var(--dark);
  background-image: radial-gradient(60% 60% at 50% 0%, rgba(226,72,63,0.18), transparent 70%);
  color: #fff;
  padding: clamp(72px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.final__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.final__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.final__title em { font-style: italic; color: var(--accent-light); }
.final__sub {
  font-family: var(--sans);
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
}
.final__split {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.final__col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.final__emoji { font-size: 22px; }
.final__bottom {
  font-family: var(--sans);
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 58ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.final__card {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--r-xl);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.final__card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.final__card p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.final__fine {
  margin-top: 16px !important;
  font-size: 13px !important;
  color: var(--ink-faint) !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 840px) { .faq__inner { grid-template-columns: 1fr; } }

.faq__side { position: sticky; top: 100px; }
.faq__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.faq__ghost {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 8rem);
  color: rgba(226, 72, 63, 0.1);
  letter-spacing: -0.05em;
  line-height: 0.8;
  margin: -20px 0 32px -8px;
  position: relative;
  z-index: 1;
}

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(226, 72, 63, 0.08);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__plus {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  line-height: 1;
  flex-shrink: 0;
}
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__answer {
  padding: 0 22px 22px;
  max-width: 68ch;
}
.faq__answer p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq__answer a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--accent);
  color: #fff;
  padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 4vw, 48px);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  flex-wrap: wrap;
}
.footer__links a:hover { text-decoration: underline; }
.footer__links span { opacity: 0.6; }
.footer__copy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  overscroll-behavior: contain;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }
.lightbox__stage {
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lightbox__stage video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  background: #000;
  max-height: 85vh;
}
.lightbox__caption {
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 100;
  display: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 10px 10px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-cta__meta { display: flex; flex-direction: column; line-height: 1.15; }
.mobile-cta__price {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.mobile-cta__label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
}
.mobile-cta__btn {
  background: var(--grad);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(226,72,63,0.4);
}
.mobile-cta__btn.btn--wa-style {
  background: #25D366;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}
@media (max-width: 820px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   PRESS STRIP (after hero)
   ============================================================ */
.press {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  overflow: hidden;
}
.press__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.press__label {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.press__logos {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.press__logo {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s;
}
.press__logo:hover {
  opacity: 0.9;
  filter: grayscale(60%);
}
/* Individual size tweaks for visual balance */
.press__logo[data-logo="tv3"]          { height: 32px; max-width: 40px; }
.press__logo[data-logo="rac1"]         { height: 32px; max-width: 40px; }
.press__logo[data-logo="lavanguardia"] { height: 18px; max-width: 160px; }
.press__logo[data-logo="mens-health"]  { height: 20px; max-width: 150px; }
.press__logo[data-logo="lasexta"]      { height: 30px; max-width: 90px; }
.press__logo[data-logo="elpais"]       { height: 22px; max-width: 120px; }
.press__logo[data-logo="mundodeportivo"] { height: 20px; max-width: 140px; }
.press__logo[data-logo="planeta"]      { height: 20px; max-width: 100px; }
.press__logo[data-logo="penguin"]      { height: 20px; max-width: 100px; }
@media (max-width: 640px) {
  .press__logos { gap: 16px; }
  .press__logo  { height: 20px; }
  .press__logo[data-logo="tv3"],
  .press__logo[data-logo="rac1"] { height: 26px; }
}

/* ============================================================
   VIDEOS CTA button inline
   ============================================================ */
.videos__cta {
  margin-top: clamp(32px, 5vw, 48px);
  text-align: center;
}

/* ============================================================
   ALUMNI SHORT CARDS
   ============================================================ */
.alumni {
  background: var(--paper);
  padding: var(--section-pad) 0;
}
.alumni__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .alumni__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .alumni__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .alumni__grid { grid-template-columns: 1fr; } }

.alumni-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.alumni-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226,72,63,0.3);
  box-shadow: var(--shadow-sm);
}
.alumni-card__head {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.alumni-card__head strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.alumni-card__head span {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.alumni-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
  flex-grow: 1;
}
.alumni-card__tag {
  align-self: flex-start;
  background: var(--bg-2);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226,72,63,0.22);
}

/* ============================================================
   WHATSAPP section outro
   ============================================================ */
.wa-section__out {
  text-align: center;
  margin: clamp(40px, 6vw, 72px) auto 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 28ch;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.wa-section__out .accent {
  font-style: italic;
  font-weight: 700;
}

/* ============================================================
   HERO — stars row
   ============================================================ */
.hero__stars {
  position: absolute;
  left: -10px;
  top: auto;
  bottom: -6px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-2deg);
}
.hero__stars span:first-child { color: var(--accent); font-weight: 700; letter-spacing: 0.15em; font-size: 13px; }
.hero__stars span:last-child { font-weight: 500; }

/* ============================================================
   HOW IT WORKS (4 steps)
   ============================================================ */
.how {
  background: var(--bg-2);
  padding: var(--section-pad) 0;
  position: relative;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  counter-reset: step;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  opacity: 0.45;
  z-index: 0;
}
@media (max-width: 900px) {
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .how__steps::before { display: none; }
}
@media (max-width: 560px) {
  .how__steps { grid-template-columns: 1fr; }
}
.how-step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(226, 72, 63, 0.35);
  margin-bottom: 6px;
}
.how-step h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.how-step p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================================
   AUDIENCE (for-you / not-for-you)
   ============================================================ */
.audience {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 860px) { .audience__grid { grid-template-columns: 1fr; } }

.audience__card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--rule);
  position: relative;
}
.audience__card--yes {
  border-color: rgba(226, 72, 63, 0.28);
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg-2) 100%);
}
.audience__card--no {
  background: var(--paper);
  color: var(--ink-soft);
}
.audience__flag {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.audience__flag--yes {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(226, 72, 63, 0.35);
}
.audience__flag--no {
  background: #2a2226;
  color: #fff;
}
.audience__card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 12px 0 20px;
  letter-spacing: -0.015em;
}
.audience__card h3 em { color: var(--accent); font-style: italic; }
.audience__card--no h3 em { color: #2a2226; }
.audience__card ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.audience__card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.audience__card li:last-child { border-bottom: 0; }
.audience__card--yes .check { color: var(--accent); }
.cross {
  width: 24px; height: 24px;
  color: #888;
  flex-shrink: 0;
  margin-top: 1px;
}
.audience__card--no .cross { color: #4d3e41; }
.audience__note {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare {
  background: var(--paper);
  padding: var(--section-pad) 0;
}
.compare__table {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
@media (max-width: 920px) { .compare__table { grid-template-columns: 1fr; } }

.compare__col {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.compare__col--hi {
  background: linear-gradient(165deg, #2f2023 0%, #1a1214 100%);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.compare__col--hi::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (max-width: 920px) { .compare__col--hi { transform: none; } }

.compare__head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare__col--hi .compare__head { border-bottom-color: rgba(255,255,255,0.12); }
.compare__tag {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.compare__tag--accent {
  background: var(--grad);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 16px rgba(226, 72, 63, 0.35);
}
.compare__col h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.compare__col--hi h3 { color: #fff; }
.compare__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
}
.compare__col--hi .compare__sub { color: rgba(255,255,255,0.65); }

.compare__col ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-grow: 1;
}
.compare__col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.compare__col--hi li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.compare__col li:last-child { border-bottom: 0; }
.compare__n,
.compare__y {
  flex-shrink: 0;
  font-family: var(--serif);
  font-weight: 700;
  width: 20px;
  text-align: center;
}
.compare__n { color: var(--ink-faint); }
.compare__col--hi .compare__n { color: rgba(255,255,255,0.45); }
.compare__y { color: var(--accent); }
.compare__col--hi .compare__y { color: #ff9b90; }

.compare__price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-faint);
}
.compare__col--hi .compare__price { border-top-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.compare__price span { display: block; margin-bottom: 4px; }
.compare__price strong {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.compare__col--hi .compare__price strong { color: var(--accent-light); font-size: 28px; }
.compare__price--hi strong { color: var(--accent); }

/* ============================================================
   VALUE STACK (inside offer card)
   ============================================================ */
.value-stack {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.5vw, 28px);
  margin-bottom: 28px;
}
.value-stack__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.value-stack__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-stack__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(92,70,73,0.08);
}
.value-stack__list li:last-child { border-bottom: 0; }
.value-stack__list li span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
  flex-grow: 1;
}
.value-stack__list li strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.value-stack__list li em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
}
.value-stack__hi {
  background: var(--paper);
  border-radius: var(--r-sm);
  padding: 10px 14px !important;
  border: 1px solid rgba(226, 72, 63, 0.22) !important;
  margin-top: 6px;
}
.value-stack__hi strong { color: var(--accent) !important; }

/* ============================================================
   TRUST ROW (below offer CTA)
   ============================================================ */
.trust-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .trust-row { grid-template-columns: 1fr; } }

.trust-row__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}
.trust-row__ico {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  border: 1px solid var(--rule);
}
.trust-row__item div { display: flex; flex-direction: column; line-height: 1.25; }
.trust-row__item strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.trust-row__item span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

/* ============================================================
   GUARANTEE extra lines
   ============================================================ */
.guarantee__why {
  margin-top: 14px !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 15px !important;
  color: var(--ink-soft) !important;
  max-width: 56ch;
}

/* ============================================================
   HERO VIDEO CARD (replaces .hero__stars / .hero__quote)
   Clickable — opens Cristina Cubero testimonial in lightbox
   ============================================================ */
.hero__vcard {
  position: absolute;
  left: -14px;
  bottom: -28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  text-align: left;
  cursor: pointer;
  transform: rotate(-2deg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  max-width: 320px;
}
.hero__vcard:hover {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 0 10px 30px rgba(92,70,73,0.18);
}
.hero__vcard-poster {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}
.hero__vcard-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__vcard-play {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  color: #fff;
  font-size: 14px;
  padding-left: 2px;
}
.hero__vcard-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.hero__vcard-kicker {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__vcard strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-top: 2px;
}
.hero__vcard-role {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 1px;
}
@media (max-width: 960px) {
  .hero__vcard { max-width: 100%; position: static; transform: none; margin-top: 24px; }
}

/* Highlighted vcard in grid (e.g., Cristina) */
.vcard--hi { outline: 2px solid var(--accent); outline-offset: 3px; }
.vcard__tag {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  background: rgba(226, 72, 63, 0.85);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  backdrop-filter: blur(6px);
}

/* ============================================================
   STAT BAR (after hero)
   ============================================================ */
.stats-bar {
  background: var(--ink);
  color: #fff;
  padding: clamp(24px, 3vw, 36px) 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  flex: 1;
}
.stats-bar__item strong {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.stats-bar__item span {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.stats-bar__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .stats-bar__sep { display: none; }
  .stats-bar__inner { justify-content: center; }
  .stats-bar__item { min-width: 45%; padding: 8px 0; }
}

/* ============================================================
   FEATURED TESTIMONIAL (above video grid)
   ============================================================ */
.featured-testi {
  background: linear-gradient(165deg, #2f2023 0%, #1a1214 100%);
  border: 2px solid var(--accent);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(32px, 4vw, 56px);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.featured-testi::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 155, 144, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.featured-testi__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 12px;
  color: #ffd8d4;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.featured-testi__badge .dot { background: #ffd8d4; }

.featured-testi__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  position: relative;
}
@media (max-width: 680px) { .featured-testi__grid { grid-template-columns: 1fr; } }

.featured-testi__avatar {
  width: clamp(72px, 9vw, 108px);
  height: clamp(72px, 9vw, 108px);
  border-radius: 50%;
  background: linear-gradient(135deg, #E58B48 0%, #9B4E1C 100%);
  color: #fff;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.featured-testi__body { display: flex; flex-direction: column; gap: 16px; }
.featured-testi__body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.featured-testi__body blockquote em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
  margin-top: 8px;
}
.featured-testi__body figcaption {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.featured-testi__body figcaption strong {
  font-family: var(--serif);
  font-weight: 700;
  color: #E58B48;
  font-size: 16px;
}
.featured-testi__body figcaption span {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.featured-testi__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.featured-testi__chips li {
  background: rgba(226, 72, 63, 0.18);
  color: #ff9b90;
  border: 1px solid rgba(255, 155, 144, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   FEATURED VIDEO SLOT (Fito intro + product walkthrough)
   Drop in /assets/videos/<name>.mp4 + /assets/posters/<name>.jpg
   When poster loads, "En edición" chip auto-hides.
   ============================================================ */
.hero-vid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  width: 100%;
  background: var(--ink);
  border-radius: 18px;
  padding: 14px;
  margin: clamp(20px, 3vw, 32px) 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(92,70,73,0.18);
}
.hero-vid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 105, 111, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-vid:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(92,70,73,0.26);
}
.hero-vid:hover .hero-vid__play {
  transform: scale(1.08);
}

/* Light variant — for hero section (on pink bg) */
.hero-vid--light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  box-shadow: 0 10px 30px rgba(92,70,73,0.10);
}
.hero-vid--light:hover { box-shadow: 0 14px 40px rgba(92,70,73,0.16); }

/* Stage (thumbnail area) */
.hero-vid__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1214;
  background-image: linear-gradient(165deg, #2a1a1e 0%, #1a1214 55%, #0d0809 100%);
}
/* Pending shimmer — only when poster failed */
.hero-vid__stage.is-empty {
  background-color: #2a1a1e;
  background-image:
    linear-gradient(
      110deg,
      #2a1a1e 30%,
      #3d252a 45%,
      #2a1a1e 60%
    );
  background-size: 250% 100%;
  animation: shimmer 2.6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-vid__stage.is-empty { animation: none; }
}

.hero-vid__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.hero-vid:hover .hero-vid__poster { transform: scale(1.05); }
.hero-vid__stage.is-empty .hero-vid__poster { display: none; }

/* Pending "En edición" chip — visible on dark stage */
.hero-vid__pending-chip {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 155, 144, 0.4);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hero-vid__stage.is-empty .hero-vid__pending-chip {
  opacity: 1;
  transform: translateY(0);
}

/* Duration badge — YouTube-style "0:30" in bottom-right */
.hero-vid__duration {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 3;
  padding: 4px 10px 4px 10px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-family: 'Inter', monospace;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  line-height: 1;
}

/* Duration inline in kicker (quick visual proof) */
.hero-vid__kicker-dur {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  margin: -1px 4px -1px 0;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* Big play button — always visible, pops when pending */
.hero-vid__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow: 0 12px 28px rgba(226, 72, 63, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  border: 2px solid rgba(255,255,255,0.15);
}
.hero-vid__play svg { width: 18px; height: 18px; }
.hero-vid__stage.is-empty .hero-vid__play {
  animation: playPulse 2.4s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(226, 72, 63, 0.45); }
  50% { box-shadow: 0 12px 28px rgba(226, 72, 63, 0.45), 0 0 0 12px rgba(226, 72, 63, 0.06); }
}

/* Body (right side copy) */
.hero-vid__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hero-vid__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(226, 72, 63, 0.12);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  margin-bottom: 4px;
}
.hero-vid--light .hero-vid__kicker {
  background: rgba(226, 72, 63, 0.12);
  color: var(--accent);
}
.hero-vid__body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: inherit;
  text-wrap: balance;
}
.hero-vid__body h3 em {
  font-style: italic;
  color: var(--accent);
}
.hero-vid--light .hero-vid__body h3 em { color: var(--accent); }
.hero-vid__body p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-vid:not(.hero-vid--light) .hero-vid__body p {
  color: rgba(255,255,255,0.72);
}
.hero-vid__body strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-vid:not(.hero-vid--light) .hero-vid__body strong {
  color: #fff;
}

/* Product variant (offer section — dark) */
.hero-vid--product {
  background: var(--dark-2);
}

/* Mobile: keep horizontal, but tighter with prominent duration */
@media (max-width: 560px) {
  .hero-vid {
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
  }
  .hero-vid__stage { max-width: 110px; }
  .hero-vid__body h3 { font-size: 1rem; line-height: 1.2; }
  .hero-vid__body p { font-size: 12.5px; line-height: 1.4; }
  .hero-vid__play { width: 42px; height: 42px; border-width: 2px; }
  .hero-vid__play svg { width: 14px; height: 14px; }
  .hero-vid__duration {
    bottom: 6px; right: 6px;
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 4px;
  }
  .hero-vid__pending-chip {
    top: 6px; left: 6px;
    font-size: 8px;
    padding: 3px 7px;
  }
  .hero-vid__kicker {
    font-size: 9px;
    padding: 3px 8px;
    gap: 4px;
  }
  .hero-vid__kicker-dur {
    font-size: 10px;
    padding: 2px 6px;
  }
  .hero-vid__body { gap: 4px; }
}
/* Tiny phones: allow slightly more thumbnail */
@media (max-width: 380px) {
  .hero-vid { grid-template-columns: 95px 1fr; }
  .hero-vid__stage { max-width: 95px; }
  .hero-vid__play { width: 36px; height: 36px; }
  .hero-vid__body h3 { font-size: 0.95rem; }
}

/* ============================================================
   QUOTE-STRIP INTRO (post-grid mini-header)
   ============================================================ */
.qs-intro {
  margin: clamp(40px, 6vw, 64px) 0 clamp(20px, 3vw, 32px);
  text-align: center;
}
.qs-intro__kicker {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd8d4;
  margin-bottom: 14px;
}
.qs-intro h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 32ch;
  margin: 0 auto;
  text-wrap: balance;
}
.qs-intro h3 em {
  font-style: italic;
  color: #ff9b90;
}

/* ============================================================
   PULL-QUOTE STRIP (6 featured voices, clickable) — refined
   ============================================================ */
.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 960px) { .quote-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .quote-strip { grid-template-columns: 1fr; } }

.quote-strip__card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 24px 20px 28px;
  text-align: left;
  color: #fff;
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  min-height: 172px;
}
/* Accent left bar */
.quote-strip__card::before {
  content: '';
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 3px;
  background: var(--grad);
  border-radius: 0 2px 2px 0;
  opacity: 0.85;
  transition: opacity 0.3s, width 0.3s;
}
/* Subtle ambient glow on hover */
.quote-strip__card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at top right, rgba(255, 155, 144, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.quote-strip__card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 72, 63, 0.45);
  background: rgba(226, 72, 63, 0.06);
}
.quote-strip__card:hover::before { width: 4px; opacity: 1; }
.quote-strip__card:hover::after { opacity: 1; }
.quote-strip__card:hover .quote-strip__play {
  background: var(--grad);
  border-color: transparent;
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 8px 18px rgba(226, 72, 63, 0.4);
}
.quote-strip__card:hover .quote-strip__play svg { transform: translateX(1px); }

/* Small refined quote mark */
.quote-strip__mark {
  position: absolute;
  top: 16px; right: 60px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: rgba(255, 155, 144, 0.22);
  pointer-events: none;
  font-style: italic;
}

.quote-strip__card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.42;
  color: rgba(255,255,255,0.96);
  position: relative;
  z-index: 1;
  letter-spacing: -0.005em;
  flex-grow: 1;
  text-wrap: balance;
}

.quote-strip__card footer {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.01em;
  padding-right: 48px;
}
.quote-strip__card footer strong {
  color: #ff9b90;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  margin-right: 2px;
}

.quote-strip__play {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.35s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s, color 0.3s, border-color 0.3s;
  padding-left: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quote-strip__play svg {
  width: 12px; height: 12px;
  transition: transform 0.3s var(--ease);
}

/* ============================================================
   OBJECTION NAV (chip grid) — refined
   ============================================================ */
.obj-nav {
  padding: clamp(22px, 3vw, 32px);
  margin-bottom: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(90% 60% at 10% 0%, rgba(226, 72, 63, 0.08), transparent 60%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.obj-nav::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  opacity: 0.9;
}
.obj-nav__head {
  margin-bottom: clamp(16px, 2vw, 22px);
  padding-left: 6px;
}
.obj-nav__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(19px, 2.3vw, 24px);
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.obj-nav__hint {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.obj-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 960px) { .obj-nav__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .obj-nav__grid { grid-template-columns: 1fr; } }

.obj-nav__chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  padding: 11px 14px 11px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  text-align: left;
}
.obj-nav__text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.obj-nav__play {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  padding: 7px;
  border-radius: 50%;
  box-sizing: content-box;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.obj-nav__chip:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(226, 72, 63, 0.38);
}
.obj-nav__chip:hover .obj-nav__play {
  color: var(--accent-deep);
  background: #fff;
  transform: scale(1.08);
}
.obj-nav__chip strong {
  color: #ff9b90;
  font-family: var(--serif);
  font-weight: 700;
}
.obj-nav__chip:hover strong { color: #fff; }

/* ============================================================
   VIDEOS — "muchos más" note
   ============================================================ */
.videos__more {
  text-align: center;
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  color: rgba(246, 250, 255, 0.55);
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

/* Video section subtitle */
.videos__subtitle {
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: clamp(24px, 3vw, 36px);
  letter-spacing: -0.015em;
}
.videos__subtitle .accent { color: var(--accent-light); }

/* ============================================================
   WA LIVE BAR
   ============================================================ */
.wa-section__live {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 auto clamp(24px, 4vw, 40px);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.wa-section__live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #36d28a;
  position: relative;
}
.wa-section__live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #36d28a;
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ============================================================
   MICRO TESTIMONIAL MARQUEE
   ============================================================ */
.testi-mq {
  background: var(--paper);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testi-mq__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 10%, transparent 90%, var(--paper) 100%);
  pointer-events: none;
  z-index: 2;
}
.testi-mq__track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: mqScroll 60s linear infinite;
  will-change: transform;
}
.testi-mq__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
}
.testi-mq__track em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 11px;
}
@keyframes mqScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-mq__track { animation: none; }
}

/* ============================================================
   MOBILE REFINEMENTS (<640px primary, <420px secondary)
   Focused on: thumb-zone, readable typography, clean stacking,
   no horizontal overflow, tighter sections.
   ============================================================ */
@media (max-width: 640px) {
  /* Container & spacing */
  :root {
    --gutter: 18px;
    --section-pad: 56px;
  }
  .container { padding-left: 18px; padding-right: 18px; }

  /* Grain lighter on small screens (perf) */
  .grain { opacity: 0.22; }

  /* STATUS BAR */
  .status-bar { padding: 9px 14px; font-size: 11.5px; letter-spacing: 0; }
  .status-bar__inner { gap: 6px 10px; }
  .status-bar__count { padding: 1px 8px; font-size: 10.5px; }

  /* NAV — tight */
  .nav__inner { padding: 12px 16px; gap: 10px; }
  .nav__brand { font-size: 12px; gap: 8px; }
  .nav__dot { width: 10px; height: 10px; }
  .nav__word { white-space: nowrap; max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }
  .nav__cta .btn__arrow { width: 18px; height: 18px; font-size: 11px; }
  .nav__btn-extra { display: none; }
  .nav__cta-short { display: none; } /* hidden on desktop, shown on mobile via media query */

  /* HERO */
  .hero { padding: 28px 0 60px; }
  .hero__inner { gap: 24px; }
  .hero__kicker {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }
  .hero__title {
    font-size: clamp(1.875rem, 8.2vw, 2.4rem);
    line-height: 1.06;
    margin-bottom: 18px;
  }
  .hero__sub { font-size: 15.5px; line-height: 1.5; margin-bottom: 24px; }
  .hero__ctas { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero__ctas .btn { width: 100%; padding: 15px 22px; font-size: 13px; }
  .hero__bullets {
    gap: 8px;
    padding-top: 18px;
  }
  .hero__bullets--hero-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  .hero__bullets--hero-main li {
    padding: 11px 14px 11px 9px;
    font-size: 14px;
  }
  .hero__bullets--hero-sec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .hero__bullets--hero-sec li {
    padding: 6px 10px 6px 6px;
    font-size: 11.5px;
    gap: 6px;
  }
  .hero__bullets li {
    padding: 7px 12px 7px 7px;
    font-size: 12.5px;
    gap: 7px;
  }
  .hero__bullets span {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .hero__bullets--hero-sec span {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
  /* MOBILE: hide large photo + orb + badge — only keep Cristina card */
  .hero__visual {
    aspect-ratio: unset;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero__orb,
  .hero__photo,
  .hero__badge { display: none; }
  /* Cristina video card — standalone horizontal pill */
  .hero__vcard {
    position: static;
    transform: none;
    margin: 8px 0 0;
    padding: 8px 18px 8px 8px;
    gap: 12px;
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    box-shadow: 0 4px 14px rgba(92,70,73,0.10);
  }
  .hero__vcard:hover { transform: none; }
  .hero__vcard-poster { width: 48px; height: 48px; }
  .hero__vcard-kicker { font-size: 10px; letter-spacing: 0.12em; }
  .hero__vcard strong { font-size: 14.5px; }
  .hero__vcard-role { font-size: 11px; }

  /* STATS BAR */
  .stats-bar { padding: 40px 0; }
  .stats-bar__inner { gap: 18px 12px; }
  .stats-bar__item { min-width: 42%; padding: 4px 0; }
  .stats-bar__item strong { font-size: 1.7rem; margin-bottom: 2px; }
  .stats-bar__item span { font-size: 11.5px; line-height: 1.3; }

  /* PRESS */
  .press { padding: 36px 0; }
  .press__inner { gap: 12px; }
  .press__label { display: block; text-align: center; }
  .press__logos { gap: 16px; justify-content: center; padding: 0 12px; }

  /* SECTION HEADS */
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: clamp(1.625rem, 6.5vw, 2rem); line-height: 1.15; margin-bottom: 14px; }
  .section-lead { font-size: 14.5px; line-height: 1.5; }
  .section-eyebrow { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }

  /* CELEBS */
  .celebs { padding-top: 56px; padding-bottom: 40px; }
  .celeb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .celeb { padding: 12px; border-radius: 14px; }
  .celeb__img { margin-bottom: 10px; border-radius: 10px; }
  .celeb blockquote { font-size: 13px; line-height: 1.35; margin-bottom: 10px; }
  .celeb figcaption strong { font-size: 12.5px; }
  .celeb figcaption span { font-size: 10.5px; }
  .cta-divider { margin: 36px auto 24px; }
  .cta-divider__dot { width: 40px; height: 40px; margin: 0 14px; }
  .cta-divider__dot svg { width: 20px; height: 20px; }
  .celebs__warn { font-size: 1.15rem; line-height: 1.3; }

  /* VIDEOS */
  .videos { padding: 56px 0; }
  .videos__subtitle { font-size: 1.1rem; margin-bottom: 20px; }
  .videos__more { font-size: 13px; }
  .vgrid { gap: 10px; }
  .vcard { border-radius: 12px; }
  .vcard__overlay { padding: 10px; }
  .vcard__play { width: 32px; height: 32px; font-size: 11px; top: 10px; right: 10px; }
  .vcard__meta strong { font-size: 13px; }
  .vcard__meta span { font-size: 10.5px; padding: 2px 6px; }
  .vcard__tag { font-size: 9px; letter-spacing: 0.08em; padding: 3px 7px; margin-top: 4px; }

  /* FEATURED TESTIMONIAL (David Q) */
  .featured-testi { padding: 24px 20px; margin-bottom: 28px; border-radius: 16px; }
  .featured-testi__badge { font-size: 11px; padding: 5px 12px; margin-bottom: 18px; }
  .featured-testi__grid { gap: 16px; }
  .featured-testi__avatar { width: 56px; height: 56px; font-size: 1.75rem; }
  .featured-testi__body blockquote { font-size: 15px; line-height: 1.45; padding-left: 12px; border-left-width: 3px; }
  .featured-testi__body figcaption strong { font-size: 14px; }
  .featured-testi__body figcaption span { font-size: 11px; }
  .featured-testi__chips { gap: 6px; }
  .featured-testi__chips li { font-size: 9.5px; padding: 4px 10px; }

  /* QUOTE STRIP */
  .quote-strip { gap: 12px; margin-bottom: 24px; }
  .quote-strip__card {
    padding: 18px 20px 16px 22px;
    min-height: auto;
    gap: 14px;
  }
  .quote-strip__card::before { top: 18px; bottom: 18px; }
  .quote-strip__card blockquote { font-size: 14.5px; line-height: 1.4; }
  .quote-strip__card footer { font-size: 10.5px; padding-top: 12px; padding-right: 42px; }
  .quote-strip__card footer strong { font-size: 12.5px; }
  .quote-strip__mark { font-size: 32px; top: 10px; right: 50px; }
  .quote-strip__play { width: 34px; height: 34px; bottom: 14px; right: 14px; }

  /* OBJ-NAV */
  .obj-nav { padding: 16px 18px; gap: 8px; }
  .obj-nav__label { font-size: 11px; margin-right: 4px; width: 100%; margin-bottom: 4px; }
  .obj-nav__chip { font-size: 12px; padding: 8px 12px; }

  /* ALUMNI */
  .alumni { padding: 56px 0; }
  .alumni__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .alumni-card { padding: 14px; gap: 8px; border-radius: 12px; }
  .alumni-card__head strong { font-size: 14px; }
  .alumni-card__head span { font-size: 10.5px; }
  .alumni-card p { font-size: 12.5px; line-height: 1.4; }
  .alumni-card__tag { font-size: 9.5px; padding: 3px 8px; letter-spacing: 0.08em; }

  /* WHATSAPP */
  .wa-section { padding: 56px 0; }
  .wa-section__live { font-size: 12px; padding: 6px 14px; margin-bottom: 20px; }
  .wa-grid { grid-template-columns: 1fr; gap: 10px; }
  .wa--featured { grid-column: 1; grid-row: auto; }
  .wa__bubble { padding: 13px 15px 11px; border-radius: 14px 14px 14px 4px; }
  .wa--featured .wa__bubble { padding: 16px 18px 14px; }
  .wa__avatar { width: 26px; height: 26px; font-size: 11px; }
  .wa__name { font-size: 13px; }
  .wa__time { font-size: 10.5px; }
  .wa__text p { font-size: 13.5px; line-height: 1.5; margin-bottom: 8px; }
  .wa--featured .wa__text p { font-size: 14.5px; }
  .wa__reacts { font-size: 12px; }
  .wa__reactcount { font-size: 11px; padding: 2px 9px; }
  .wa-section__out { font-size: 14px; }

  /* ARGUMENT */
  .argument { padding-top: 56px; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
  .proof figcaption { font-size: 14px; }
  .claim { padding: 48px 0 56px; margin-top: 72px; border-radius: 16px 16px 0 0; }
  .claim h3 { font-size: 1.5rem; line-height: 1.2; }
  .claim p { font-size: 15px; }
  .gives { padding: 32px 20px; margin-top: -28px; border-radius: 16px; }
  .gives__title h3 { font-size: 1.5rem; }
  .gives__list li { padding: 12px 0; font-size: 14px; gap: 10px; }
  .argument__punch { font-size: 15.5px; margin-top: 36px; }
  .argument__punch-lg { font-size: 1.75rem; padding-bottom: 56px; }

  /* NO MAGIC */
  .no-magic { padding: 52px 0; }
  .no-magic__inner { gap: 24px; }
  .no-magic__copy h2 { font-size: 1.75rem; line-height: 1.15; }
  .no-magic__copy p { font-size: 15px; }
  .no-magic__list { padding: 4px 18px; border-radius: 14px; }
  .no-magic__list li { padding: 14px 0; font-size: 14px; gap: 14px; }
  .no-magic__num { font-size: 20px; min-width: 32px; }

  /* METHOD */
  .method { padding: 56px 0; }
  .features { gap: 10px; }
  .feature { padding: 18px 16px; border-radius: 14px; gap: 8px; }
  .feature__icon { width: 44px; height: 44px; font-size: 24px; border-radius: 10px; }
  .feature h3 { font-size: 15.5px; line-height: 1.2; }
  .feature p { font-size: 13px; line-height: 1.45; }

  /* HOW IT WORKS */
  .how { padding: 56px 0; }
  .how__steps { gap: 14px; }
  .how-step { padding: 20px 18px; border-radius: 14px; gap: 10px; }
  .how-step__num { width: 44px; height: 44px; font-size: 16px; }
  .how-step h3 { font-size: 16px; }
  .how-step p { font-size: 13px; line-height: 1.45; }

  /* AUDIENCE */
  .audience { padding: 56px 0; }
  .audience__grid { gap: 32px; }
  .audience__card { padding: 28px 20px 22px; border-radius: 16px; }
  .audience__flag { font-size: 10px; padding: 5px 12px; left: 18px; top: -12px; }
  .audience__card h3 { font-size: 1.3rem; margin: 12px 0 16px; }
  .audience__card li { padding: 10px 0; font-size: 14px; gap: 10px; }
  .audience__note { padding: 12px 14px; font-size: 13px; }

  /* TRANSFORM */
  .transform { padding: 56px 0; }
  .transform__grid { gap: 12px; margin-bottom: 28px; }
  .transform__note { padding: 16px 20px; font-size: 14px; }
  .transform__claim { margin-top: 32px; }
  .transform__claim h3 { font-size: 1.5rem; margin-bottom: 16px; }
  .transform__claim p { font-size: 15px; }
  .transform__claim-red { padding: 14px 16px; }

  /* COMPARE */
  .compare { padding: 56px 0; }
  .compare__table { gap: 12px; }
  .compare__col { padding: 22px 20px; border-radius: 14px; gap: 14px; }
  .compare__col--hi { transform: none; order: -1; }
  .compare__tag { font-size: 9.5px; padding: 3px 10px; }
  .compare__col h3 { font-size: 18px; }
  .compare__sub { font-size: 12px; }
  .compare__col li { padding: 8px 0; font-size: 13px; }
  .compare__price strong { font-size: 20px; }
  .compare__col--hi .compare__price strong { font-size: 22px; }

  /* OFFER */
  .offer { padding: 56px 0; }
  .offer__title { font-size: clamp(1.75rem, 7vw, 2.25rem); line-height: 1.05; }
  .offer__lead { font-size: 15px; line-height: 1.5; margin-bottom: 32px; }
  .offer-card { padding: 28px 20px; border-radius: 20px; }
  .offer-card__badge {
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .offer-card__top { gap: 18px; margin-bottom: 24px; padding-bottom: 22px; }
  .offer-card__access strong { font-size: 1.75rem; }
  .offer-card__access em { font-size: 12.5px; }
  .offer-card__was s { font-size: 16px; }
  .offer-card__cur { font-size: 22px; }
  .offer-card__num { font-size: 4rem; letter-spacing: -0.04em; }
  .offer-card__per { font-size: 11.5px; }
  .value-stack { padding: 18px 16px; margin-bottom: 22px; border-radius: 12px; }
  .value-stack__title { font-size: 14px; margin-bottom: 12px; padding-bottom: 10px; }
  .value-stack__list li { padding: 8px 0; gap: 10px; }
  .value-stack__list li strong { font-size: 14px; }
  .value-stack__list li em { font-size: 12px; }
  .value-stack__hi { padding: 10px 12px !important; }
  .offer-card__cta .btn { min-width: 0; width: 100%; padding: 18px 22px; font-size: 14px; }
  .offer-card__countdown { gap: 8px; margin-top: 16px; flex-wrap: wrap; }
  .offer-card__countdown > div { padding: 8px 10px; min-width: 56px; border-radius: 8px; }
  .offer-card__countdown > div strong { font-size: 18px; }
  .offer-card__countdown > div span { font-size: 10px; letter-spacing: 0.05em; }
  .offer-card__fine { font-size: 12px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; padding-top: 20px; }
  .trust-row__item { gap: 10px; }
  .trust-row__ico { width: 36px; height: 36px; font-size: 16px; border-radius: 8px; }
  .trust-row__item strong { font-size: 12px; }
  .trust-row__item span { font-size: 10px; }
  .offer__help { flex-direction: column; align-items: stretch; padding: 20px 22px; gap: 16px; }
  .offer__help-copy h4 { font-size: 16px; }
  .offer__help-copy p { font-size: 13px; }
  .offer__help .btn { width: 100%; padding: 14px 22px; font-size: 13px; }

  /* GUARANTEE */
  .guarantee { padding: 52px 0; }
  .guarantee__inner { gap: 24px; text-align: center; }
  .guarantee__stamp svg { width: 110px; height: 110px; }
  .guarantee__copy h2 { font-size: 1.5rem; line-height: 1.2; margin: 12px 0 14px; }
  .guarantee__copy p { font-size: 14.5px; line-height: 1.5; }
  .guarantee__oath { font-size: 1.125rem !important; }
  .guarantee__copy .section-eyebrow { margin: 0 auto 4px; }

  /* TEAM */
  .team { padding: 56px 0; }
  .team-card { padding: 24px 20px; gap: 18px; border-radius: 16px; }
  .team-card__avatar { width: 96px; height: 96px; font-size: 32px; }
  .team-card h3 { font-size: 1.5rem; margin: 8px 0 14px; }
  .team-card__philo { font-size: 14px; padding-left: 14px; margin-bottom: 16px; }
  .team-card ul { font-size: 13px; }
  .team-card ul li { padding: 7px 0; }

  /* FINAL */
  .final { padding: 72px 0 88px; }
  .final__kicker { font-size: 13px; margin-bottom: 20px; }
  .final__title { font-size: clamp(1.875rem, 8vw, 2.5rem); line-height: 1.08; margin-bottom: 24px; }
  .final__sub { font-size: 15px; margin-bottom: 24px; }
  .final__split { gap: 10px; flex-direction: column; align-items: stretch; margin-bottom: 28px; }
  .final__col { justify-content: center; font-size: 16px; padding: 14px 20px; }
  .final__bottom { font-size: 14.5px; margin-bottom: 28px; }
  .final__card { padding: 28px 22px; border-radius: 18px; }
  .final__card h3 { font-size: 1.3rem; line-height: 1.25; }
  .final__card p { font-size: 14px; margin-bottom: 20px; }
  .final__card .btn { width: 100%; padding: 18px 22px; font-size: 14px; }

  /* TESTIMONIAL MARQUEE */
  .testi-mq { padding: 18px 0; }
  .testi-mq__track { gap: 14px; }
  .testi-mq__track span { padding: 8px 14px; font-size: 12px; }
  .testi-mq__track em { font-size: 9.5px; }

  /* FAQ */
  .faq { padding: 56px 0; }
  .faq__inner { gap: 28px; }
  .faq__side { position: static; }
  .faq__title { font-size: 1.75rem; margin-bottom: 4px; }
  .faq__ghost { font-size: 3.5rem; margin: -8px 0 16px -4px; }
  .faq__side .btn { width: 100%; padding: 14px 22px; font-size: 13px; }
  .faq__item { border-radius: 12px; }
  .faq__item summary { padding: 16px 16px; font-size: 14.5px; gap: 14px; }
  .faq__plus { font-size: 20px; }
  .faq__answer { padding: 0 16px 18px; }
  .faq__answer p { font-size: 13.5px; line-height: 1.55; }

  /* FOOTER */
  .footer { padding: 40px 0 28px; }
  .footer__inner { gap: 12px; }
  .footer__title { font-size: 16px; }
  .footer__links { font-size: 12px; gap: 8px; }
  .footer__copy { font-size: 11px; }

  /* MOBILE STICKY CTA — refined */
  .mobile-cta {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 8px 8px 8px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(226, 72, 63, 0.25), 0 1px 2px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 72, 63, 0.2);
  }
  .mobile-cta__price { font-size: 17px; }
  .mobile-cta__label { font-size: 10.5px; }
  .mobile-cta__btn { padding: 11px 18px; font-size: 12.5px; gap: 5px; }

  /* BUTTONS generic */
  .btn--giant { padding: 18px 24px; font-size: 14px; }
  .btn__arrow { width: 20px; height: 20px; font-size: 12px; }

  /* LIGHTBOX */
  .lightbox { padding: 14px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 22px; }
  .lightbox__stage video { aspect-ratio: 9/16; max-height: 78vh; }
  .lightbox__caption { font-size: 13px; }
}

/* Very narrow phones (iPhone SE, old Android) */
@media (max-width: 400px) {
  :root { --gutter: 14px; }
  .container { padding-left: 14px; padding-right: 14px; }
  .nav__word { max-width: 130px; }
  .hero__title { font-size: 1.75rem; line-height: 1.08; }
  .section-title { font-size: 1.4rem; }
  .offer-card__num { font-size: 3.5rem; }
  .hero__bullets--hero-main li { padding: 10px 12px 10px 8px; font-size: 13.5px; }
  .hero__bullets--hero-sec { gap: 5px; }
  .hero__bullets--hero-sec li { font-size: 11px; padding: 5px 9px 5px 5px; }
  .celeb-grid { grid-template-columns: 1fr; }
  .alumni__grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .hero__vcard { padding: 5px 12px 5px 5px; }
  .hero__vcard-poster { width: 40px; height: 40px; }
  .mobile-cta__price { font-size: 15px; }
  .mobile-cta__label { font-size: 10px; }
  .mobile-cta__btn { padding: 10px 16px; font-size: 11.5px; }
}

/* Landscape phone — prevent hero from being too tall */
@media (max-width: 820px) and (orientation: landscape) and (max-height: 520px) {
  .hero { padding: 20px 0 40px; }
  .hero__title { font-size: 1.75rem; }
  .hero__visual { display: none; }
  .lightbox__stage video { aspect-ratio: 9/16; max-height: 85vh; }
}

/* ============================================================
   PRE-APERTURA · domingo abrimos
   ============================================================ */
.preopen {
  background: var(--dark);
  background-image: radial-gradient(60% 50% at 50% 0%, rgba(226,72,63,0.18), transparent 70%);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.preopen__inner { position: relative; max-width: 900px; margin: 0 auto; }
.preopen__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.preopen__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  margin: 18px 0 16px;
}
.preopen__title em { font-style: italic; opacity: 0.95; }
.preopen__lead {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-width: 58ch;
  margin: 0 auto;
}
.preopen__lead strong { color: #fff; }

.preopen__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.preopen-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 24px) clamp(16px, 2vw, 28px);
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: clamp(18px, 2.5vw, 26px);
  transition: background 0.3s, border-color 0.3s;
}
.preopen-step:hover { background: rgba(226,72,63,0.06); border-color: rgba(226,72,63,0.25); }
.preopen-step__num {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1;
}
.preopen-step h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.preopen-step p {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  width: 100%;
  min-width: 0;
}
.preopen-step p strong { color: #fff; font-weight: 600; }
/* Quando tem botão, ele ocupa a linha completa abaixo */
.preopen-step .btn {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  width: fit-content;
}
/* Quando tem btn-locked-wrap, ocupa a coluna 2 na row 3 */
.preopen-step .btn-locked-wrap {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
}
@media (max-width: 640px) {
  .preopen-step { grid-template-columns: 48px 1fr; gap: 12px 14px; padding: 16px; }
  .preopen-step .btn { grid-column: 1 / -1; width: 100%; }
  .preopen-step .btn-locked-wrap { grid-column: 1 / -1; }
  .preopen-step__num { font-size: 22px; }
}

.preopen__reminder {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(22px, 3vw, 32px);
  background: var(--grad);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(226,72,63,0.35);
}
.preopen__reminder-copy h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.preopen__reminder-copy p {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  max-width: 48ch;
}
.preopen__reminder .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.preopen__reminder .btn--primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.preopen__reminder .btn__arrow { background: rgba(226,72,63,0.2); color: var(--accent); }
.preopen__reminder .btn--primary:hover .btn__arrow { background: rgba(255,255,255,0.2); color: #fff; }

@media (max-width: 640px) {
  .preopen__reminder { flex-direction: column; align-items: stretch; text-align: center; }
  .preopen__reminder .btn-locked-wrap--row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .preopen__reminder .btn-locked-wrap--row .btn {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
}

/* Pre-apertura mobile sticky variant */
.mobile-cta--preapertura .mobile-cta__price {
  font-size: 14px;
  color: var(--accent);
}
.mobile-cta--preapertura .mobile-cta__label { font-size: 10.5px; }

/* ============================================================
   FINANCIACIÓN · Sequra / Klarna
   ============================================================ */
.financing {
  max-width: 900px;
  margin: clamp(28px, 4vw, 44px) auto;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  color: #fff;
}
.financing__head { text-align: center; margin-bottom: clamp(20px, 3vw, 28px); }
.financing__kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 155, 144, 0.14);
  border: 1px solid rgba(255, 155, 144, 0.3);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd8d4;
  margin-bottom: 12px;
}
.financing__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.financing__title strong { color: #ff9b90; }
.financing__sub {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  max-width: 50ch;
  margin: 0 auto;
}
.financing__sub strong { color: #fff; font-weight: 600; }

.financing__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .financing__options { grid-template-columns: 1fr; } }
.financing__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.financing__logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  padding: 6px 0;
}
.financing__screen {
  aspect-ratio: 9 / 6;
  border-radius: 10px;
  background:
    linear-gradient(110deg, #2a1a1e 30%, #3d252a 45%, #2a1a1e 60%);
  background-size: 250% 100%;
  animation: shimmer 2.6s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255,255,255,0.15);
}
.financing__ph {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.financing__foot {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: #ff9b90;
  letter-spacing: 0.02em;
}

/* ============================================================
   TEAM — collective section (after 2 leaders)
   ============================================================ */
.team-collective {
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(135deg, rgba(226, 72, 63, 0.08), rgba(226, 72, 63, 0.02));
  border: 1px dashed rgba(226, 72, 63, 0.25);
  border-radius: 18px;
  text-align: center;
}
.team-collective__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.team-collective__kicker {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-collective__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.team-collective__sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============================================================
   BONUS BANNER — doble tiempo (inside offer section)
   ============================================================ */
.bonus-banner {
  background: var(--grad);
  color: #fff;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  margin: 0 auto clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  max-width: 980px;
  box-shadow: 0 20px 50px rgba(226, 72, 63, 0.35);
}
.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.12), transparent 50%);
  pointer-events: none;
}
.bonus-banner__pulse {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: bonusPulse 2.2s ease-out infinite;
}
@keyframes bonusPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  80% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.bonus-banner__copy { position: relative; }
.bonus-banner__flag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}
.bonus-banner__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 12px;
}
.bonus-banner__highlight {
  background: rgba(0,0,0,0.25);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
}
.bonus-banner__sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 48ch;
}
.bonus-banner__sub strong { color: #fff; font-weight: 700; }

.bonus-banner__eq {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}
.bonus-banner__eq-a,
.bonus-banner__eq-b,
.bonus-banner__eq-total {
  font-family: var(--serif);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: -0.02em;
}
.bonus-banner__eq-a { opacity: 0.75; }
.bonus-banner__eq-b em {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2px;
  font-style: normal;
  opacity: 0.85;
}
.bonus-banner__eq-total {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  background: #fff;
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.bonus-banner__eq-op {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 720px) {
  .bonus-banner { grid-template-columns: 1fr; }
  .bonus-banner__eq { padding: 14px; gap: 8px; }
  .bonus-banner__eq-a, .bonus-banner__eq-b { font-size: 13px; }
  .bonus-banner__eq-total { font-size: 1.2rem; padding: 8px 12px; }
}

/* Offer card pricing — new format */
.offer-card__now {
  display: flex !important;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1;
}
.offer-card__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.offer-card__or {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  font-style: italic;
  color: var(--ink-faint);
}
.offer-card__monthly {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.offer-card__cur { display: none; }
.offer-card__per strong { color: var(--accent); }

/* Compare price — new format */
.compare__price--hi strong em {
  font-style: italic;
  opacity: 0.7;
  font-weight: 400;
  margin: 0 4px;
}

/* Nav CTA on mobile — keep pricing legible */
.nav__cta em {
  font-style: italic;
  opacity: 0.75;
  font-weight: 400;
  font-size: 0.88em;
  margin: 0 2px;
}
.mobile-cta__price em {
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  opacity: 0.8;
  margin: 0 2px;
}

/* ============================================================
   METODOLOGÍA — 4 pillar cards
   ============================================================ */
.methodology .section-lead--dark {
  color: rgba(246, 250, 255, 0.72);
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 720px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse at top right, rgba(255, 105, 111, 0.10), transparent 60%);
  pointer-events: none;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(226, 72, 63, 0.06);
}

.pillar-card__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  position: absolute;
  top: 18px;
  right: 22px;
  opacity: 0.85;
}
.pillar-card__icon {
  font-size: 36px;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(226, 72, 63, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.625rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
}
.pillar-card__lead {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}
.pillar-card__lead strong {
  color: #fff;
  font-weight: 600;
}
.pillar-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 0;
  margin: 4px 0;
}
.pillar-card__list li {
  padding: 8px 0 8px 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.pillar-card__list li:last-child { border-bottom: 0; }
.pillar-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}
.pillar-card__list strong {
  color: #ff9b90;
  font-weight: 700;
}
.pillar-card__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pillar-card__note strong {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 560px) {
  .pillar-card { padding: 22px 20px; }
  .pillar-card__icon { width: 48px; height: 48px; font-size: 28px; }
  .pillar-card h3 { font-size: 1.25rem; }
  .pillar-card__lead { font-size: 14.5px; }
  .pillar-card__list li { font-size: 13.5px; padding: 7px 0; }
  .pillar-card__note { font-size: 13px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (bottom-right, all pages)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  z-index: 90;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, bottom 0.3s;
  animation: waPulse 2.8s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.18);
}
@media (max-width: 820px) {
  .wa-float {
    bottom: 86px;
    right: 14px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
}
.wa-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15), 0 0 0 16px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}
/* On mobile: don't overlap the sticky CTA bottom bar */
@media (max-width: 820px) {
  .wa-float {
    bottom: 84px;
    right: 14px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float__tooltip { display: none; }
}

/* ============================================================
   IMAGE FALLBACK (when external img 404/timeout)
   ============================================================ */
.proof__img.no-img,
.celeb__img.no-img,
.transform__img.no-img {
  background:
    linear-gradient(135deg, var(--fallback-c, #3d252a), #1a1012);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proof__img.no-img::after,
.celeb__img.no-img::after,
.transform__img.no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
}
.proof__img.no-img img,
.celeb__img.no-img img,
.transform__img.no-img img { display: none; }
.proof__img.no-img::before,
.celeb__img.no-img::before,
.transform__img.no-img::before {
  content: attr(data-initials);
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  opacity: 0.95;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.celeb__img.no-img::before {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.transform__img.no-img::before {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

/* ============================================================
   A11Y
   ============================================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MOBILE BUTTON OVERFLOW FIXES
   ============================================================ */
@media (max-width: 640px) {
  /* Global safeguard — block-level containers only (not div — breaks flex/grid items) */
  body, .container, section, header, footer, article, main, aside {
    max-width: 100%;
  }
  /* Bullet icons — esconder no mobile APENAS em pillar cards e audience (renderizam bugados) */
  .pillar-card__list li::before { display: none !important; }
  .pillar-card__list li { padding-left: 0 !important; }
  li { align-items: flex-start; }
  /* Nav — logo completo + botão compacto */
  .nav__inner { flex-wrap: nowrap; overflow: visible; }
  .nav__links { display: none; }
  .nav__brand { flex-shrink: 1; min-width: 0; }
  .nav__word { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
  .nav__cta {
    font-size: 11px !important;
    padding: 6px 9px !important;
    gap: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    letter-spacing: 0.01em !important;
  }
  /* Emoji escondido — só texto */
  .nav__cta .btn__wa-icon { display: none !important; }
  /* WhatsApp buttons */
  .btn--wa {
    font-size: 12.5px !important;
    padding: 14px 16px !important;
    letter-spacing: 0.02em !important;
    gap: 7px !important;
    white-space: normal !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .btn--wa.btn--lg { font-size: 12.5px !important; padding: 14px 16px !important; }
  .btn--wa.btn--xl { font-size: 13px !important; padding: 14px 18px !important; }
  /* Symmetric heights — primary + WhatsApp same vertical padding */
  .btn-locked-wrap .btn,
  .btn-locked-wrap .btn--locked,
  .btn-locked-wrap .btn--primary,
  .btn-locked-wrap .btn--wa {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 12.5px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Video grid — mais espaço + borda mais fina em mobile */
  .vgrid { gap: 12px; }
  .vcard { border-width: 0.5px !important; border-color: rgba(255,255,255,0.05) !important; }
  .vcard--hi { outline: none !important; }
  /* Hero vid — prevent image from stretching past screen */
  .hero-vid { flex-direction: column !important; }
  .hero-vid__stage { width: 100% !important; max-width: 100% !important; }
  /* btn-locked-wrap full width */
  .btn-locked-wrap { width: 100%; }
  .btn-locked-wrap .btn { width: 100% !important; box-sizing: border-box !important; }
}
@media (max-width: 420px) {
  .btn--wa,
  .btn--wa.btn--lg,
  .btn--wa.btn--xl { font-size: 11.5px !important; padding: 12px 14px !important; }
  /* Nav: reduz logo um pouco para dar mais espaço ao botão */
  .nav__word { font-size: 10px; }
  .nav__cta { font-size: 8px !important; padding: 6px 8px !important; }
}
/* Telas muito pequenas (≤340px): permite 2 linhas no botão do nav como fallback */
@media (max-width: 340px) {
  .nav__inner { flex-wrap: wrap; gap: 6px; justify-content: space-between; }
  .nav__cta { white-space: normal !important; text-align: center !important; flex-shrink: 1 !important; width: auto !important; }
}

/* ============================================================
   CHECK SVG ICON (value-stack, audience, etc.)
   ============================================================ */
.check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* ============================================================
   VALUE STACK (inside offer card)
   ============================================================ */
.value-stack {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: clamp(20px, 2.5vw, 28px);
  margin-bottom: 28px;
}
.value-stack__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.value-stack__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-stack__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(92,70,73,0.08);
}
.value-stack__list li:last-child { border-bottom: 0; }
.value-stack__list li span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
  flex-grow: 1;
}
.value-stack__list li strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.value-stack__list li em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
}
.value-stack__hi {
  background: var(--paper);
  border-radius: var(--r-sm);
  padding: 10px 14px !important;
  border: 1px solid rgba(226, 72, 63, 0.22) !important;
  margin-top: 6px;
}
.value-stack__hi strong { color: var(--accent) !important; }
@media (max-width: 480px) {
  .value-stack { padding: 18px 16px; margin-bottom: 22px; border-radius: 12px; }
  .value-stack__title { font-size: 14px; margin-bottom: 12px; padding-bottom: 10px; }
  .value-stack__list li { padding: 8px 0; gap: 10px; }
  .value-stack__list li strong { font-size: 14px; }
  .value-stack__list li em { font-size: 12px; }
  .value-stack__hi { padding: 10px 12px !important; }
}

/* ============================================================
   TRUST ROW (below offer CTA)
   ============================================================ */
.trust-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .trust-row { grid-template-columns: 1fr; } }
.trust-row__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}
.trust-row__ico {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  border: 1px solid var(--rule);
}
.trust-row__item div { display: flex; flex-direction: column; line-height: 1.25; }
.trust-row__item strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.trust-row__item span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

/* ============================================================
   PAYMENT METHOD BADGES (Klarna + SeQura)
   ============================================================ */
.financing--badges {
  margin-top: 28px;
  padding: 28px 28px 22px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Header */
.financing--badges__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.financing--badges__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.financing--badges__title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}
.financing--badges__title strong {
  color: #FFD580; /* warm gold highlight — pops against dark red bg */
  font-weight: 900;
}

/* Row of badge+sub pairs */
.financing--badges__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}

/* Each badge + subtext pair */
.pay-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Base badge pill */
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.pay-badge::after {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.pay-badge:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.pay-badge:hover::after {
  opacity: 0.7;
  transform: translateX(0);
}

/* Subtext below badge */
.pay-badge__sub {
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.4;
}

/* Logo container */
.pay-badge__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Klarna pill logo ---- */
.pay-badge__logo--klarna {
  background: #FFB3C7;
  border-radius: 6px;
  padding: 3px 8px;
  line-height: 1;
}
.klarna-pill {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #17120E;
  letter-spacing: -0.01em;
  font-style: normal;
  text-transform: none;
}

/* ---- seQura wordmark ---- */
.pay-badge__logo--sequra {
  background: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  line-height: 1;
}
.sequra-word {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #3d3d3d;
  letter-spacing: -0.02em;
  font-style: normal;
  text-transform: none;
}
.sequra-q {
  color: #00A88E;
}

/* Footer note */
.financing--badges__foot {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
  text-align: center;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

@media (max-width: 480px) {
  .financing--badges { padding: 22px 18px 18px; gap: 16px; }
  .financing--badges__title { font-size: 1rem; }
  .pay-badge { font-size: 13px; padding: 9px 16px 9px 10px; }
  .pay-badge__sub { font-size: 11px; }
  .klarna-pill, .sequra-word { font-size: 11px; }
}


