:root {
  --bg-void: #050505;
  --bg-deep: #0b0b0b;
  --bg-panel: #101010;
  --graphite: #1c1c1e;
  --steel: #8a8f98;
  --steel-dim: #5b5f66;
  --white: #f2f3f0;
  --neon: #00ffa3;
  --neon-dim: #00b377;
  --neon-glow: rgba(0, 255, 163, 0.35);
  --lime: #d7f542;
  --white-strong: #ffffff;

  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background: var(--bg-void); }

body {
  background: var(--bg-void);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
img, video { max-width: 100%; display: block; }

::selection { background: var(--neon); color: var(--bg-void); }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-void);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand { display: flex; align-items: center; }
.loader-brand img { height: 4.5rem; width: auto; }
#loader-bar { width: 240px; height: 1px; background: var(--graphite); position: relative; }
#loader-bar-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--neon); box-shadow: 0 0 12px var(--neon-glow); transition: width 0.2s linear; }
#loader-percent { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--steel); }

/* ============================================================
   CURSOR GLOW
   ============================================================ */
#cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}
#cursor-glow.active { opacity: 1; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 900;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
#scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--lime));
  box-shadow: 0 0 12px var(--neon-glow);
}

/* ============================================================
   SOCIAL PROOF POPUP
   ============================================================ */
.social-toast {
  position: fixed; top: 124px; left: 50%; z-index: 600;
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1.2rem 1.7rem; border-radius: 14px;
  background: rgba(16,16,16,0.9); border: 1px solid rgba(0,255,163,0.25);
  backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  font-size: 1rem; font-weight: 500; color: var(--white-strong); white-space: nowrap;
  opacity: 0; transform: translate(-50%, -16px) scale(0.96); pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.social-toast.visible { opacity: 1; transform: translate(-50%, 0) scale(1); }
.social-toast-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--neon); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(0,255,163,0.6);
  animation: live-pulse 1.8s ease-out infinite;
}
@media (max-width: 768px) {
  .social-toast { top: 132px; font-size: 0.85rem; padding: 1rem 1.3rem; max-width: 82vw; white-space: normal; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 600; display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem; }
.whatsapp-float {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 34px rgba(0,0,0,0.45), 0 0 0 10px rgba(37,211,102,0); }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-bubble {
  position: relative;
  background: var(--white-strong); color: var(--graphite);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.7rem 1.1rem; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  opacity: 0; transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.whatsapp-bubble.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.whatsapp-bubble::after {
  content: ""; position: absolute; bottom: -6px; right: 22px;
  width: 12px; height: 12px; background: var(--white-strong);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.whatsapp-bubble-close { cursor: pointer; color: var(--steel); font-size: 1.1rem; line-height: 1; padding: 0 0.1rem; }
.whatsapp-bubble-close:hover { color: var(--graphite); }
@media (max-width: 768px) {
  .whatsapp-wrap { bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-bubble { font-size: 0.78rem; padding: 0.6rem 0.9rem; }
}

/* ============================================================
   PROMO BAR
   ============================================================ */
#promo-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 800;
  height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--neon); color: var(--bg-void);
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
#promo-bar.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.promo-text { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; text-align: center; padding: 0 3vw; text-transform: uppercase; }
.promo-text strong { font-weight: 700; }
.promo-clock { display: inline-flex; align-items: center; gap: 0.3rem; animation: promo-pulse 1s ease-in-out infinite; }
#promo-timer { font-weight: 700; font-variant-numeric: tabular-nums; }
@keyframes promo-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.75; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 42px; left: 0; width: 100%; z-index: 500;
  padding: 0.6rem 4vw;
  display: flex; justify-content: center;
  background: var(--bg-void); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.4s var(--ease-out), top 0.4s var(--ease-out);
}
.site-header.no-promo { top: 0; }
.site-header.scrolled { padding: 0.45rem 4vw; }
.nav { width: 100%; max-width: 1600px; display: flex; align-items: center; justify-content: space-between; }
.logo, .footer-logo { display: flex; align-items: center; }
.logo img { height: 4.2rem; width: auto; }
.footer-logo img { height: 5rem; width: auto; }
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a { font-size: 0.82rem; color: var(--steel); letter-spacing: 0.02em; transition: color 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.04em; padding: 0.7rem 1.4rem;
  background: var(--lime); color: var(--bg-void); border-radius: 100px;
  font-weight: 700; text-transform: uppercase;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(215,245,66,0.4); }

/* ============================================================
   SHARED TYPOGRAPHY / UTILITIES
   ============================================================ */
.section-label {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--neon); font-weight: 500;
  margin-bottom: 1.4rem;
}
.section-label.center { text-align: center; }
.reveal-heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--lime);
  max-width: 100%; overflow-wrap: break-word;
}
.reveal-heading.center { text-align: center; }
.accent { color: var(--neon); }

.word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.word-inner { display: inline-block; will-change: transform; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.2rem; font-size: 0.85rem; letter-spacing: 0.03em;
  border-radius: 100px; font-weight: 700; transition: all 0.35s var(--ease-out);
  text-transform: uppercase;
}
.btn-primary { background: var(--lime); color: var(--bg-void); }
.btn-primary:hover { box-shadow: 0 0 32px rgba(215,245,66,0.45); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-large { padding: 1.3rem 3rem; font-size: 1rem; }

.btn-whats-inline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--lime); color: var(--bg-void); font-weight: 700; text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.02em; padding: 0.8rem 1.4rem; border-radius: 100px;
  margin-top: 1.4rem; text-align: center; transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn-whats-inline:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(215,245,66,0.4); }

/* ============================================================
   BACKGROUND VIDEO UTILITY
   ============================================================ */
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.bg-video--dim { opacity: 0.5; filter: brightness(1.15); }

.problem-block, .benefits-block, .plans-section, .testimonials, .faq-section, .solution-block {
  position: relative; overflow: hidden;
}
.problem-block::before, .benefits-block::before, .how-pin::before, .plans-section::before,
.testimonials::before, .faq-section::before,
.solution-block::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 40%, var(--neon-glow) 0%, transparent 65%);
  mix-blend-mode: screen;
}
.problem-block > *:not(.bg-video), .benefits-block > *:not(.bg-video),
.how-pin > *:not(.bg-video), .plans-section > *:not(.bg-video),
.testimonials > *:not(.bg-video),
.faq-section > *:not(.bg-video), .solution-block > *:not(.bg-video) {
  position: relative; z-index: 1;
}

/* ============================================================
   01 HERO
   ============================================================ */
.hero-standalone {
  position: relative; min-height: 100vh; height: auto; width: 100%;
  display: flex; align-items: flex-start; justify-content: flex-start;
  background: var(--bg-void); overflow: hidden;
  padding: 190px 5vw 80px;
}
.hero-standalone .bg-video { opacity: 0.85; filter: brightness(1.15); }
.hero-standalone::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, var(--neon-glow) 0%, transparent 65%);
  mix-blend-mode: screen;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, var(--bg-void) 85%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 7.5rem); line-height: 0.95;
  letter-spacing: -0.02em; margin: 1rem 0 2rem; color: var(--lime);
}
.hero-heading .line { display: block; overflow: hidden; }
.hero-heading .word { display: inline-block; transform: translateY(110%); }
.hero-heading .accent { color: var(--neon); }
.hero-tagline { font-size: 1.05rem; color: var(--white-strong); font-weight: 500; max-width: 460px; margin-bottom: 2.6rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-trust-item { font-size: 0.85rem; color: var(--white-strong); letter-spacing: 0.02em; }
.hero-trust-item strong { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--lime); text-shadow: 0 0 20px rgba(215, 245, 66, 0.4); margin-right: 0.35rem; }
.hero-trust-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.18); }

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,163,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(0,255,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,163,0); }
}

/* ============================================================
   02 A DOR (scroll-block problem-block)
   ============================================================ */
.scroll-block { position: relative; padding: 14vh 5vw; background: var(--bg-deep); }
.problem-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.problem-block .reveal-heading { margin: 2rem auto 3rem; }
.problem-lines { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--white-strong); max-width: 640px; margin: 0 auto; line-height: 1.75; }
.problem-lines strong { color: var(--lime); font-weight: 600; }

.stat-row { display: flex; justify-content: center; gap: 5vw; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; max-width: 220px; }
.stat-number-row { display: inline-flex; align-items: flex-end; }
.stat-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem); color: var(--white-strong); line-height: 1;
  text-shadow: 0 0 24px rgba(255,255,255,0.35);
}
.stat-unit {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white-strong); line-height: 1;
  margin-left: 0.15rem; margin-bottom: 0.3rem;
}
.stat-suffix { font-size: 0.78rem; color: var(--white-strong); margin-top: 0.8rem; line-height: 1.4; }

/* ============================================================
   03 BENEFÍCIOS
   ============================================================ */
.benefits-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.benefits-inner .reveal-heading { margin: 2rem auto 5rem; }
.benefits-carousel { position: relative; max-width: 560px; margin: 0 auto; aspect-ratio: 3 / 2; }
.benefit-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
.benefit-slide.active { opacity: 1; pointer-events: auto; }
.benefit-image {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 50px rgba(215,245,66,0.15);
}
.benefit-card {
  position: relative;
  width: 100%; padding: 3rem 2.6rem; border-radius: 20px;
  background: var(--lime);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 50px rgba(215,245,66,0.15);
  text-align: center;
}
.benefit-card::before, .benefit-card::after,
.testimonial-card::before, .testimonial-card::after {
  content: ""; position: absolute; width: 16px; height: 16px; pointer-events: none;
  border-color: var(--bg-void); border-style: solid; border-width: 0; opacity: 0.55;
}
.benefit-card::before, .testimonial-card::before { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.benefit-card::after, .testimonial-card::after { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }
.benefit-icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--bg-void); margin-bottom: 0.7rem; }
.benefit-card p { font-size: 1rem; color: var(--bg-void); line-height: 1.55; }
.benefit-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(16,16,16,0.6); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-strong); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.benefit-arrow svg { width: 20px; height: 20px; }
.benefit-arrow:hover { background: var(--neon); border-color: var(--neon); color: var(--bg-void); }
.benefit-arrow--prev { left: -64px; }
.benefit-arrow--next { right: -64px; }
.benefit-dots { display: flex; justify-content: center; gap: 0.7rem; margin: 2.4rem 0 3rem; }
.benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out); cursor: pointer; }
.benefit-dot.active { background: var(--neon); transform: scale(1.3); box-shadow: 0 0 12px var(--neon-glow); }
@media (max-width: 900px) {
  .benefit-arrow--prev { left: -4px; }
  .benefit-arrow--next { right: -4px; }
  .benefit-card { padding: 2.6rem 1.8rem; }
}

/* ============================================================
   04 COMO FUNCIONA — pinned horizontal timeline
   ============================================================ */
.how-it-works { position: relative; background: var(--bg-deep); height: 300vh; }
.how-pin { position: sticky; top: 0; height: 100vh; padding: 10vh 5vw; overflow: hidden; }
.how-it-works .section-label { text-align: center; }
.timeline-track { display: flex; gap: 6vw; margin-top: 8vh; width: max-content; padding: 0 10vw; }
.timeline-step { width: 60vw; max-width: 560px; }
.step-number { font-family: var(--font-display); font-size: 5rem; color: var(--graphite); -webkit-text-stroke: 1px var(--neon-dim); font-weight: 700; }
.timeline-step h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; margin: 1rem 0 1rem; }
.timeline-step p { color: var(--white-strong); max-width: 400px; line-height: 1.6; }

/* ============================================================
   05 PLANO FIDELIDADE (solution-block)
   ============================================================ */
.solution-block {
  background: var(--bg-void); display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 10vh 5vw;
}
.solution-copy { max-width: 620px; text-align: center; }
.solution-copy .reveal-heading { margin: 1rem 0 1.6rem; }
.solution-body { font-size: 1.05rem; color: var(--white-strong); line-height: 1.65; margin-bottom: 1.8rem; }
.solution-bullets { display: inline-flex; flex-direction: column; gap: 0.7rem; text-align: left; margin-bottom: 2.4rem; }
.solution-bullets li { font-size: 0.95rem; color: var(--white-strong); padding-left: 1.6rem; position: relative; }
.solution-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.solution-tagline {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: var(--lime); letter-spacing: 0.02em; margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(215,245,66,0.35);
}
.solution-closing { font-size: 0.95rem; font-style: italic; color: var(--white-strong); margin-bottom: 2.2rem; line-height: 1.5; }

/* ============================================================
   06 PLANOS
   ============================================================ */
.plans-section { background: var(--bg-deep); padding: 14vh 5vw; }
.plans-row { display: flex; justify-content: center; align-items: stretch; gap: 2.4rem; flex-wrap: wrap; margin-top: 6vh; }
.plan-column {
  flex: 1 1 360px; max-width: 420px; padding: 3.4rem 2.6rem;
  border: 1px solid rgba(0,255,163,0.35); border-radius: 24px;
  background: linear-gradient(165deg, rgba(0,64,40,0.9), rgba(3,13,9,0.95));
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(0,255,163,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}
.plan-column:hover { transform: translateY(-8px); box-shadow: 0 34px 80px rgba(0,0,0,0.55), 0 0 40px rgba(0,255,163,0.14); }
.plan-column::before, .plan-column::after {
  content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
  border-color: var(--neon); border-style: solid; border-width: 0; opacity: 0.7;
}
.plan-column::before { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; }
.plan-column::after { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }
.plan-column--premium {
  border-color: var(--neon); border-width: 2px;
  background: linear-gradient(165deg, rgba(0,255,163,0.28), rgba(3,13,9,0.95));
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 70px rgba(0,255,163,0.22);
}
.plan-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; color: var(--neon); text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0,255,163,0.5);
}
.plan-name { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin: 0.9rem 0 0.5rem; color: var(--white-strong); }
.plan-indicado { display: block; font-size: 0.88rem; color: var(--white-strong); margin-bottom: 1.6rem; }
.plan-hook {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.01em;
  color: var(--lime); text-shadow: 0 0 30px rgba(215,245,66,0.45);
  margin-bottom: 2rem;
}
.plan-features li { font-size: 0.92rem; font-weight: 500; color: var(--white-strong); padding: 0.75rem 0; border-top: 1px solid rgba(255,255,255,0.14); }
.plan-cta {
  display: block; text-align: center; margin-top: 2.6rem; padding: 1.15rem;
  background: var(--lime); color: var(--bg-void); border-radius: 100px;
  font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em;
  box-shadow: 0 0 0 rgba(215,245,66,0);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.plan-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(215,245,66,0.4); }

/* ============================================================
   02 DIFERENCIAIS — marquee (loop contínuo, sem depender do scroll)
   ============================================================ */
.marquee-wrap { position: relative; background: var(--lime); padding: 1.4rem 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; }
.marquee-text {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 4vw, 2.8rem);
  white-space: nowrap; color: var(--bg-void);
  text-transform: uppercase; display: inline-block; will-change: transform;
}

/* ============================================================
   08 DEPOIMENTOS + stats
   ============================================================ */
.testimonials { background: var(--bg-deep); padding: 14vh 5vw; text-align: center; }
.testimonials .stat-row { margin-bottom: 8vh; }

.testimonial-carousel { position: relative; max-width: 620px; margin: 0 auto; min-height: 340px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-slide.active { opacity: 1; pointer-events: auto; }
.testimonial-card {
  position: relative;
  width: 100%; padding: 3rem 2.8rem; border-radius: 20px;
  background: var(--lime); text-align: left;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 50px rgba(215,245,66,0.15);
}
.testimonial-stars { display: block; color: var(--bg-void); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1.2rem; }
.testimonial-card p { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.35; color: var(--bg-void); }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(5,5,5,0.15); }
.testimonial-author span { font-size: 0.85rem; color: var(--bg-void); font-weight: 600; }

.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(16,16,16,0.6); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white-strong); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.testimonial-arrow svg { width: 20px; height: 20px; }
.testimonial-arrow:hover { background: var(--neon); border-color: var(--neon); color: var(--bg-void); }
.testimonial-arrow--prev { left: -64px; }
.testimonial-arrow--next { right: -64px; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.4rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out); cursor: pointer; }
.testimonial-dot.active { background: var(--lime); transform: scale(1.3); box-shadow: 0 0 12px rgba(215,245,66,0.5); }
@media (max-width: 900px) {
  .testimonial-arrow--prev { left: -4px; }
  .testimonial-arrow--next { right: -4px; }
  .testimonial-card { padding: 2.4rem 1.8rem; }
}

/* ============================================================
   09 FAQ
   ============================================================ */
.faq-section { background: var(--bg-void); padding: 14vh 5vw; }
.faq-list { max-width: 760px; margin: 6vh auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--lime); border-radius: 14px; padding: 0 1.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem;
  padding: 1.6rem 0; font-size: 1rem; font-weight: 700; text-align: left;
  color: var(--bg-void); text-transform: uppercase; letter-spacing: 0.02em;
}
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--bg-void); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s var(--ease-out); }
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer p { padding-bottom: 1.6rem; padding-top: 0.4rem; border-top: 1px solid rgba(5,5,5,0.15); margin-top: 0.2rem; color: var(--bg-void); font-weight: 500; max-width: 600px; line-height: 1.6; text-transform: uppercase; letter-spacing: 0.01em; font-size: 0.88rem; }

/* ============================================================
   10 CTA FINAL
   ============================================================ */
.cta-final { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-void); overflow: hidden; padding: 10vh 5vw; }
.cta-final .bg-video { opacity: 0.7; filter: brightness(1.15); }
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, var(--neon-glow) 0%, transparent 65%);
  mix-blend-mode: screen;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 5.5rem); line-height: 1.05; margin-bottom: 1.4rem; }
.cta-sub { font-size: 1.05rem; color: var(--lime); font-weight: 600; margin-bottom: 2.6rem; }

.urgency-timer { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.payment-label { display: block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-strong); }
.timer-digits { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); color: var(--neon); font-size: 1.4rem; font-weight: 700; }
.timer-unit { display: flex; flex-direction: column; align-items: center; }
.timer-unit small { font-family: var(--font-body); font-size: 0.6rem; color: var(--steel); font-weight: 400; text-transform: uppercase; }

.back-to-top {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 3rem;
  padding: 0.8rem 1.6rem; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25);
  color: var(--white-strong); font-size: 0.82rem; letter-spacing: 0.02em;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.back-to-top svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.back-to-top:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-3px); }
.back-to-top:hover svg { transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-void); padding: 4vh 5vw; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 1.6rem;
}
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: 0.78rem; color: var(--steel); }
.footer-company {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-company span { font-size: 0.72rem; color: var(--steel); line-height: 1.5; }
.footer-copy { font-size: 0.72rem; color: var(--steel-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  #promo-bar { height: 52px; }
  .promo-text { font-size: 0.68rem; line-height: 1.3; padding: 0 8vw; }
  .site-header { top: 52px; padding: 0.5rem 5vw; }
  .logo img { height: 2.6rem; }
  .nav-cta { font-size: 0.7rem; padding: 0.55rem 1.1rem; }
  .reveal-heading { font-size: clamp(1.5rem, 7.5vw, 3rem); }
  .plans-row { flex-direction: column; }
  .stat-row { gap: 8vw; }

  .hero-standalone { padding-top: 160px; padding-bottom: 64px; }
  .hero-heading { font-size: clamp(2.4rem, 11vw, 3.6rem); margin: 0.8rem 0 1.4rem; }
  .hero-content { max-width: 100%; }
}
