/* ─── Design tokens (sales palette: white + emerald + orange-urgency) ─── */
:root {
  /* Backgrounds */
  --cream: #F1F5F9;        /* slate-100 — alternate section (mais visível) */
  --cream-deep: #E2E8F0;   /* slate-200 — accents */
  --paper: #FCFCFD;        /* off-white (ligeiramente mais quente que #FFF) — primary */

  /* Accents — emerald green (action, prosperity) */
  --gold: #059669;         /* emerald-600 — primary accent / em / numbers */
  --gold-light: #10B981;   /* emerald-500 — lighter accent on dark bgs */

  /* Text — slate */
  --earth: #0F172A;        /* slate-900 — dark CTAs, main text */
  --earth-muted: #475569;  /* slate-600 — secondary text */
  --black: #000000;        /* final section bg */

  /* Lines + urgency */
  --line: rgba(15, 23, 42, 0.18);    /* slate borders (mais marcadas) */
  --line-light: rgba(255, 255, 255, 0.14);
  --urgency: #EA580C;       /* orange-600 — countdown digits, scarcity */

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--earth);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(42px, 7vw, 78px); line-height: 1.02; }
h2 { font-size: clamp(28px, 4.5vw, 46px); line-height: 1.12; }
h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: 1.25; font-weight: 500; }
h4 { font-size: clamp(17px, 1.8vw, 20px); line-height: 1.3; font-weight: 500; }
p { margin: 0 0 1rem; }
em {
  font-style: italic;
  color: var(--gold);
  font-feature-settings: "ss01" on;
}

.overline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--earth-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Layout ─── */
.section { padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px); }
.container { max-width: 1180px; margin: 0 auto; }
.center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ─── CTA buttons ─── */
.cta {
  display: inline-block;
  padding: 17px 38px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  will-change: transform;
}
.cta-dark { background: var(--earth); color: var(--cream); }
.cta-dark:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(5, 150, 105, 0.25); }
.cta-gold { background: var(--gold); color: var(--cream); }
.cta-gold:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42, 31, 14, 0.35); }
.cta-light { background: var(--cream); color: var(--earth); }
.cta-light:hover { background: var(--gold); color: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(5, 150, 105, 0.4); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s ease, transform 0.3s ease;
}
.link-arrow span { transition: transform 0.3s ease; }
.link-arrow:hover { color: var(--earth); }
.link-arrow:hover span { transform: translateX(4px); }

/* ─── Urgency bar (with countdown) ─── */
.urgency-bar {
  background: var(--earth);
  color: var(--cream);
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: var(--gold-light); font-weight: 600; }
.urgency-bar s { color: rgba(255, 255, 255, 0.45); margin: 0 4px; }
.urgency-bar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--urgency);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.urgency-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.urgency-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ─── Countdown · compact (inside urgency bar) ─── */
.countdown--compact {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
}
.countdown--compact span {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.countdown--compact b {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--urgency);
  font-variant-numeric: tabular-nums;
  min-width: 18px;
  text-align: right;
}
.countdown--compact i {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
  margin-right: 2px;
}

/* ─── Countdown · big (end of pricing) ─── */
.countdown-block {
  max-width: 560px;
  margin: 3rem auto 0;
  text-align: center;
}
.countdown-block .overline { color: var(--earth-muted); margin-bottom: 1.25rem; }
.countdown--big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cd-box {
  background: var(--paper);
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: 12px;
  padding: 18px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cd-num {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1;
  font-weight: 500;
  color: var(--urgency);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.countdown-foot {
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--earth-muted);
}
@media (max-width: 480px) {
  .countdown--big { gap: 8px; }
  .cd-box { padding: 14px 4px 10px; }
}

/* ─── Hero ─── */
.hero {
  background: var(--cream);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px) clamp(70px, 9vw, 130px);
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
  align-items: start;
  grid-template-areas:
    "overline video"
    "title video"
    "lead video"
    "meta video"
    "cta video";
}
.hero-grid > .overline { grid-area: overline; }
.hero-grid > h1 { grid-area: title; }
.hero-grid > .lead { grid-area: lead; }
.hero-grid > .hero-meta { grid-area: meta; }
.hero-grid > .hero-cta-row { grid-area: cta; }
.hero-grid > .hero-video { grid-area: video; align-self: center; }
.hero-grid h1 { margin: 0.5rem 0 1rem; }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--earth-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-grid .lead {
  margin: 1.25rem 0 2rem;
  color: var(--earth);
  text-align: left;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 2.25rem;
}
.hero-meta .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-muted);
  margin-bottom: 6px;
  font-weight: 500;
  display: block;
}
.hero-meta .value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--earth);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Hero video */
.hero-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.32);
}
.hero-video-top, .hero-video-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
}
.hero-video-top { top: clamp(18px, 3vw, 30px); }
.hero-video-bottom { bottom: clamp(18px, 3vw, 30px); }
.hero-video-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 38px);
  color: var(--cream);
  text-align: center;
  width: 90%;
  letter-spacing: -0.01em;
}
.hero-video-title em { color: var(--gold-light); }
.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-video:hover .play-button { transform: translate(-50%, -50%) scale(1.06); background: var(--cream); }
.play-button::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 19px;
  border-color: transparent transparent transparent var(--earth);
  margin-left: 5px;
}
.hero-video.is-playing { cursor: default; transform: none; box-shadow: none; }

/* ─── Video modal (lightbox) ─── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-content {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-modal.is-open .video-modal-content { transform: scale(1); }
.video-modal-iframe-wrap {
  width: 100%; height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video-modal-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: clamp(14px, 2.5vw, 28px);
  right: clamp(14px, 2.5vw, 28px);
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  font-family: var(--sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.35s ease, border-color 0.25s ease;
  padding: 0;
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}
body.modal-open { overflow: hidden; }

/* ─── Authority strip ─── */
.authority {
  background: var(--earth);
  color: var(--cream);
  padding: 48px clamp(20px, 5vw, 80px);
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.authority strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 6px;
}
.authority span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}

/* ─── Mirror ─── */
.mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 3rem;
}
.mirror-item {
  padding: 28px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--earth);
  font-style: italic;
}
.mirror-close {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--earth);
}

/* ─── Phases (4-grid) ─── */
.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.phase {
  padding: 36px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.phase:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 20px 50px rgba(42, 31, 14, 0.08);
}
.phase-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}
.phase h3 { margin-bottom: 6px; }
.phase-weeks {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-muted);
  margin-bottom: 14px;
}
.phase p { color: var(--earth-muted); font-size: 15px; margin: 0; line-height: 1.7; }

/* ─── Split (image + text) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
}
.split-image img { width: 100%; height: auto; display: block; }
.split-text h2 { margin: 0.5rem 0 1.5rem; }
.split-text p { color: var(--earth-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.split-text p strong { color: var(--earth); font-weight: 600; }
.split-text .split-intro {
  font-size: 17px;
  color: var(--earth-muted);
  margin-bottom: 2.25rem;
}
.split-text .bio-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.split-text .bio-block:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.split-text .bio-block h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--earth);
  letter-spacing: -0.01em;
}
.split-text .bio-block .bio-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.split-text .bio-block p {
  color: var(--earth-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.split-text .bio-block p:last-child { margin-bottom: 0; }
.split-text .link-arrow { margin-top: 2rem; display: inline-flex; }
.split-text .link-arrow { margin-top: 1rem; }

/* ─── Bonus grid (4-grid) ─── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.bonus-card {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.bonus-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.bonus-card h4 { margin-bottom: 10px; line-height: 1.3; }
.bonus-card p { color: var(--earth-muted); font-size: 14px; margin: 0; line-height: 1.65; }
.bonus-note {
  margin-top: 2.5rem;
  font-size: 14px;
  color: var(--earth-muted);
  font-style: italic;
}

/* ─── Testimonials (3 columns, middle featured) ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}
.testimonial {
  padding: 36px 30px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
}
.testimonial.featured {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--cream);
  transform: translateY(-12px);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonial.featured::before { color: var(--gold-light); opacity: 0.5; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--earth);
  margin: 16px 0 24px;
}
.testimonial.featured .testimonial-quote { color: var(--cream); }
.testimonial-author { display: flex; gap: 14px; align-items: center; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 500;
  font-size: 15px;
}
.testimonial.featured .testimonial-avatar { background: var(--gold-light); color: var(--earth); }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--earth); }
.testimonial.featured .testimonial-name { color: var(--cream); }

/* ─── Testimonials carousel ─── */
.testimonials-carousel {
  margin: 3rem auto 0;
  max-width: 880px;
  position: relative;
  padding: 0 clamp(40px, 6vw, 72px);
}
.carousel-track {
  overflow: hidden;
  border-radius: 14px;
}
.carousel-inner {
  display: flex;
  transform: translateX(var(--shift, 0));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@keyframes carousel-hint {
  0%   { transform: translateX(var(--shift, 0)); }
  18%  { transform: translateX(calc(var(--shift, 0) - 22px)); }
  38%  { transform: translateX(calc(var(--shift, 0) + 14px)); }
  60%  { transform: translateX(calc(var(--shift, 0) - 8px)); }
  80%  { transform: translateX(calc(var(--shift, 0) + 4px)); }
  100% { transform: translateX(var(--shift, 0)); }
}
.carousel-inner.is-hinting {
  animation: carousel-hint 1.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.testimonials-carousel .testimonial {
  flex: 0 0 100%;
  min-width: 0;
  padding: 40px 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}
.testimonials-carousel .testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonials-carousel .testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--earth);
  margin: 18px 0 26px;
}
.testimonials-carousel .testimonial-author { display: flex; gap: 14px; align-items: center; }
.testimonials-carousel .testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.testimonials-carousel .testimonial-name { font-size: 14px; font-weight: 600; color: var(--earth); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--earth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  padding: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.22);
}
.carousel-arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.75rem;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.28);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.carousel-dot:hover { background: rgba(5, 150, 105, 0.4); }
.carousel-dot.is-active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .testimonials-carousel { padding: 0 8px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .testimonials-carousel .testimonial { padding: 32px 24px 26px; }
  .testimonials-carousel .testimonial::before { font-size: 56px; left: 18px; }
}

/* ─── For-grid (quem é / quem não é) ─── */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}
.for-card {
  padding: 44px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.for-card h3 { margin-bottom: 1.75rem; }
.for-card ul { list-style: none; padding: 0; margin: 0; }
.for-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--earth);
}
.for-card li:last-child { margin-bottom: 0; }
.icon-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}
.icon-yes { background: rgba(59, 109, 17, 0.13); color: #3B6D11; }
.icon-no { background: rgba(163, 45, 45, 0.11); color: #A32D2D; }

/* ─── "Para ti que..." grid (3x2 with 6 cards) ─── */
.para-ti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 3rem;
}
.para-ti-grid--six {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}

/* ─── Para-ti + Bónus: extra padding for straddle image ─── */
#para-ti { padding-bottom: clamp(180px, 16vw, 260px); }
#bonus { padding-top: clamp(180px, 16vw, 260px); }
@media (max-width: 640px) {
  #para-ti { padding-bottom: clamp(130px, 38vw, 180px); }
  #bonus { padding-top: clamp(130px, 38vw, 180px); }
}

/* ─── Straddle image (cavalo entre Para-ti e Bónus) ─── */
.straddle-image {
  width: clamp(260px, 28vw, 340px);
  margin: -210px auto -195px;
  position: relative;
  z-index: 3;
}
.straddle-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
  box-shadow: 0 28px 60px rgba(42, 31, 14, 0.22);
  border: 6px solid var(--paper);
}
@media (max-width: 640px) {
  .straddle-image {
    width: clamp(220px, 60vw, 280px);
    margin: -160px auto -150px;
  }
}
.pt-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 18px 40px rgba(42, 31, 14, 0.08);
}
.pt-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.pt-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.25;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 400;
}
.pt-card p {
  font-size: 14px;
  color: var(--earth-muted);
  margin: 0;
  line-height: 1.55;
}
.pt-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.pt-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
}
@media (max-width: 880px) {
  .para-ti-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pt-image { min-height: 0; aspect-ratio: 4/3; grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .para-ti-grid { grid-template-columns: 1fr; }
}

/* ─── Value stack ─── */
.value-stack {
  max-width: 620px;
  margin: 3rem auto 0;
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.value-stack ul { list-style: none; padding: 0; margin: 0; }
.value-stack li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  gap: 16px;
}
.value-stack li:last-child { border-bottom: 0; }
.value-stack li span:first-child { color: var(--earth); }
.value-stack .vs-amount {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--earth-muted);
  font-weight: 500;
  white-space: nowrap;
}
.value-stack li.vs-total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
  border-bottom: 0;
}
.value-stack li.vs-total span:first-child {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--earth);
  font-weight: 500;
}
.value-stack li.vs-total .vs-amount {
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
}

/* ─── Price cards ─── */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  max-width: 880px;
  margin: 3rem auto 0;
  align-items: stretch;
  text-align: left;
}
@media (max-width: 760px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--public { opacity: 0.75; }
.price-card--pre {
  background: #FFFFFF;
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 28px 70px rgba(42, 31, 14, 0.14);
}
.pc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.pc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-muted);
  margin-bottom: 10px;
}
.pc-amount {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.95;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.price-card--public .pc-amount { color: var(--earth-muted); }
.price-card--public .pc-amount s { text-decoration-color: rgba(42, 31, 14, 0.4); }
.pc-meta { font-size: 14px; color: var(--earth-muted); margin-bottom: 1.5rem; }
.pc-meta strong { color: var(--earth); font-weight: 600; }
.pc-payment {
  background: rgba(5, 150, 105, 0.08);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--earth);
  margin: 0 0 1.5rem;
}
.pc-payment strong { color: var(--gold); font-weight: 600; }
.price-card--public .pc-payment {
  background: rgba(15, 23, 42, 0.04);
  border-left-color: rgba(15, 23, 42, 0.25);
}
.price-card--public .pc-payment strong { color: var(--earth-muted); }
.pc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.pc-includes li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--earth);
  border-bottom: 1px dashed var(--line);
}
.pc-includes li:last-child { border-bottom: 0; }
.pc-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}
.price-card--public .pc-includes li { color: var(--earth-muted); }
.price-card--public .pc-includes li::before { color: rgba(5, 150, 105, 0.45); }
.pc-bonus {
  background: rgba(5, 150, 105, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  border-radius: 4px;
  margin: 0 0 1.5rem;
}
.pc-bonus strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.pc-bonus span { font-size: 14px; color: var(--earth); line-height: 1.55; }
.price-card .cta { align-self: stretch; text-align: center; margin-top: auto; }
.pc-foot {
  font-size: 12px;
  color: var(--earth-muted);
  text-align: center;
  margin: 12px 0 0;
}
.price-deadline {
  margin-top: 2.5rem;
  font-size: 14px;
  color: var(--earth-muted);
}

/* ─── FAQ ─── */
.faq-list { margin-top: 3rem; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-list details[open] { border-color: rgba(5, 150, 105, 0.3); }
.faq-list summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 56px;
  color: var(--earth);
  transition: color 0.3s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--earth-muted);
}

/* ─── Pull quote (Tony Robbins) ─── */
.pull-quote-section {
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 80px);
}
.pull-quote-image {
  max-width: 340px;
  aspect-ratio: 4/5;
  margin: 0 auto 3rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(42, 31, 14, 0.15);
}
.pull-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.pq-mark {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
}
.pq-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25;
  color: var(--earth);
  font-weight: 400;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.pq-attr {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-muted);
  font-weight: 500;
  display: inline-block;
}
.pq-attr::before {
  content: '— ';
  color: var(--gold);
}

/* ─── Final CTA (dark) ─── */
.final {
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 80px);
  background: var(--black);
  color: var(--cream);
  text-align: center;
}
.final h2 { color: var(--cream); margin-bottom: 1.5rem; }
.final em { color: var(--gold-light); }
.final .lead { color: rgba(255, 255, 255, 0.7); }
.final .overline { color: rgba(255, 255, 255, 0.55); }
.final-cta-wrapper { margin-top: 2.5rem; }
.final-deadline {
  margin-top: 1.5rem;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Footer ─── */
footer {
  padding: 36px 20px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line-light);
}
footer p { margin: 0 0 6px; }
footer .footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-style: italic;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
footer .footer-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-style: italic;
  transition: color 0.25s ease;
}
footer .footer-link:hover { color: var(--gold); }

/* ─── Sticky CTA bar (single button, WhatsApp direct) ─── */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(140%);
  z-index: 50;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: calc(100vw - 32px);
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
.sticky-cta-btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Mobile ─── */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
    grid-template-areas:
      "overline"
      "title"
      "lead"
      "video"
      "meta"
      "cta";
  }
  .hero-grid > .hero-video { margin: 1.5rem 0 2rem; align-self: stretch; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .authority-grid { grid-template-columns: 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; }
  .testimonial.featured { transform: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 24px; }
  .urgency-bar { font-size: 12px; }
  .hero { padding: 50px 24px 70px; }
  .hero-meta { grid-template-columns: 1fr; }
  .cta { padding: 15px 30px; font-size: 13px; }
  .mirror-item, .phase, .for-card, .bonus-card { padding: 24px 22px; }
  .price-card { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
