/* ============================================================
   Blue Pink · TikTok Shop Landing Page
   Sistema de design compartilhado — usado por todas as páginas.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--c-primary-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Sem flash azul do iOS no toque, sem seleção acidental em long-press */
button, a, [role="button"], summary, label {
  -webkit-tap-highlight-color: transparent;
}

/* Outline consistente pra navegação por teclado — só aparece no :focus-visible,
   nunca no clique do mouse. Passa contraste sobre backgrounds escuros. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-primary-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Tokens ---------- */
:root {
  /* Cores da marca */
  --c-primary: #6254e7;
  --c-primary-light: #9289f1;
  --c-pink: #F93C96;
  --c-pink-deep: #FF0067;
  --c-pink-alt: #E7388B;
  --c-blue: #595FED;
  --c-blue-light: #6066FB;

  /* Backgrounds */
  --c-bg: #000000;
  --c-surface: #0d0a1a;
  --c-surface-2: #14102a;
  --c-surface-3: #1b1638;

  /* Texto */
  --c-text: #f5f3ff;
  --c-text-muted: #a8a3c9;
  --c-text-dim: #8480a3;

  /* Bordas / linhas */
  --c-border: rgba(146, 137, 241, 0.15);
  --c-border-strong: rgba(146, 137, 241, 0.35);
  --c-border-pink: rgba(249, 60, 150, 0.35);

  /* Gradientes */
  --g-primary: linear-gradient(135deg, #6254e7 0%, #9289f1 100%);
  --g-pink: linear-gradient(135deg, #F93C96 0%, #FF0067 100%);
  --g-brand: linear-gradient(135deg, #6254e7 0%, #F93C96 100%);
  --g-blue: linear-gradient(135deg, #595FED 0%, #6066FB 100%);

  /* Sombras / glows */
  --shadow-primary: 0 10px 40px rgba(98, 84, 231, 0.35);
  --shadow-pink: 0 10px 40px rgba(249, 60, 150, 0.35);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Espaçamento */
  --gap-section: clamp(56px, 8vw, 96px);
  --container: 1120px;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: 'Rubik', 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { color: var(--c-text); }

.text-muted { color: var(--c-text-muted); }
.text-dim { color: var(--c-text-dim); }
.text-center { text-align: center; }

.gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-pink {
  background: var(--g-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.section { padding: var(--gap-section) 0; }
.section-tight { padding: clamp(32px, 5vw, 56px) 0; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}
.site-header .container { display: flex; justify-content: center; align-items: center; }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand span:first-child {
  background: var(--g-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand span:last-child {
  background: var(--g-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g-brand);
  margin-right: 4px;
  vertical-align: middle;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: block;
  height: 88px;
  width: auto;
}
.brand-footer .brand-logo { height: 160px; margin: 0 auto; }
@media (max-width: 640px) {
  .brand-logo { height: 72px; }
  .brand-footer .brand-logo { height: 128px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 4vw, 40px);
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(98,84,231,0.15), transparent 60%),
    radial-gradient(500px 300px at 80% 100%, rgba(249,60,150,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 {
  max-width: 820px;
  margin: 0 auto 16px;
}
.hero h1 { text-wrap: balance; }
.hero .hero-pill {
  display: inline-block;
  margin: 4px auto 20px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F93C96 0%, #FF0067 100%);
  box-shadow: 0 10px 40px rgba(249, 60, 150, 0.35);
  color: #fff;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-align: center;
}
.hero .lead {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--c-text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.hero-cta {
  margin: 28px auto 0;
  text-align: center;
  display: none;
}
body.is-revealed .hero-cta { display: block; }

/* ---------- VSL Player ---------- */
.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px var(--c-border), 0 20px 60px rgba(98,84,231,0.25);
}
.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vsl-poster-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
}
.vsl-poster-overlay.is-visible { display: flex; }
.vsl-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  background: var(--g-pink);
  box-shadow: var(--shadow-pink);
  font-size: 1rem;
}
.vsl-play-icon {
  width: 0; height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.vsl-controls {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vsl-controls--top {
  top: 12px;
  right: 12px;
}
.vsl-controls--bottom {
  left: 12px;
  right: 12px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.vsl-controls--bottom > * { pointer-events: auto; }
.vsl-ctrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-pill);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s, opacity 0.2s;
}
.vsl-ctrl-btn:hover { background: rgba(98,84,231,0.5); }
.vsl-ctrl-btn:not(.vsl-ctrl-btn--sound):not(.vsl-ctrl-btn--speed) { padding: 0; }
.vsl-ctrl-btn--sound.is-icon-only { padding: 0; min-width: 42px; font-size: 1.1rem; }
.vsl-ctrl-btn--speed { min-width: 62px; gap: 6px; }
.vsl-ctrl-btn--speed.is-boosted {
  background: var(--g-brand);
  border-color: transparent;
}
.vsl-ctrl-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.2s;
}
.vsl-speed-wrap { position: relative; }
.vsl-speed-wrap.is-open .vsl-ctrl-caret { transform: rotate(180deg); }

.vsl-speed-menu {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%) translateX(6px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin: 0;
  list-style: none;
  background: rgba(0,0,0,0.9);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.vsl-speed-wrap.is-open .vsl-speed-menu {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.vsl-speed-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  line-height: 1;
}
.vsl-speed-opt:hover { background: rgba(98,84,231,0.35); }
.vsl-speed-opt.is-active { background: var(--g-brand); }
/* Ícone play/pause desenhado em CSS puro */
.vsl-ctrl-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
}
.vsl-ctrl-icon[data-state="playing"]::before,
.vsl-ctrl-icon[data-state="playing"]::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: #fff;
  border-radius: 1px;
}
.vsl-ctrl-icon[data-state="playing"]::before { left: 2px; }
.vsl-ctrl-icon[data-state="playing"]::after  { right: 2px; }
.vsl-ctrl-icon[data-state="paused"]::before {
  content: "";
  position: absolute;
  left: 3px; top: 0;
  width: 0; height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* Barra de progresso customizada (não-linear) */
.vsl-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: rgba(255,255,255,0.15);
  z-index: 3;
}
.vsl-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--g-brand);
  transition: width 0.25s linear;
}

/* Dica pré-reveal */
.pre-reveal-hint {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 14px 20px;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  text-align: center;
  border-radius: var(--r-md);
  border: 1px dashed var(--c-border);
  background: rgba(98,84,231,0.05);
}

/* ---------- Reveal transitions ---------- */
.reveal-block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
}
body.is-revealed .reveal-block {
  opacity: 1;
  transform: none;
  visibility: visible;
  max-height: none;
  overflow: visible;
}
body.is-revealed .pre-reveal-hint { display: none; }

/* ---------- CTA buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 48px; /* touch target garantido, mesmo se padding cair */
  border-radius: var(--r-pill);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation; /* elimina delay de 300ms em toque no mobile */
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.4);
}

.btn-primary {
  background: var(--g-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { box-shadow: 0 15px 50px rgba(249,60,150,0.5); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--c-border-strong);
  padding: 14px 24px;
}
.btn-secondary:hover { background: rgba(98,84,231,0.12); border-color: var(--c-primary-light); }

.btn-lg { padding: 20px 36px; font-size: 1.15rem; }
.btn-block { width: 100%; }

.cta-microcopy {
  margin-top: 24px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* ---------- Section blocks ---------- */
.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--c-text-muted);
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  font-size: 1.05rem;
}

/* Bullet list "É pra você se..." */
.bullet-grid {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.bullet-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--g-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Passo a passo (Como funciona) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.step-card {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g-primary);
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-card p { color: var(--c-text-muted); font-size: 0.95rem; }

.reinforce-line {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  background: var(--c-surface-2);
  border-left: 3px solid var(--c-pink);
  border-radius: var(--r-md);
  font-size: 1.05rem;
}
.reinforce-line strong { color: #fff; }

/* Benefícios (6 cards) */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.benefit-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(98,84,231,0.08) 0%, rgba(249,60,150,0.03) 100%), var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: transform 0.2s, border-color 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-strong);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* Programa de níveis */
.levels {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 40px;
}
.level {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  position: relative;
}
.level-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.level-1 .level-badge { background: linear-gradient(135deg, #22c55e, #86efac); }
.level-2 .level-badge { background: linear-gradient(135deg, #595FED, #6066FB); }
.level-3 .level-badge { background: linear-gradient(135deg, #6254e7, #9289f1); }
.level-4 .level-badge { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.level-5 .level-badge { background: linear-gradient(135deg, #F93C96, #FF0067); }
.level-6 .level-badge { background: linear-gradient(135deg, #4b5563, #111827); border: 1px solid #F93C96; }
.level-name {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.level-threshold {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.level-desc {
  color: var(--c-text);
  font-size: 0.95rem;
}
.social-proof-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(98,84,231,0.12), rgba(249,60,150,0.10));
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  text-align: center;
}
.social-proof-box strong { color: #fff; font-family: 'Rubik'; }
.social-proof-box > strong:first-child { display: block; margin-bottom: 8px; }
.fine-print {
  max-width: 780px;
  margin: 20px auto 0;
  padding: 0 8px;
  color: var(--c-text-dim);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

/* Preço */
.price-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.price-headline {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
  line-height: 1;
}
.price-headline .money {
  background: var(--g-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-facts {
  display: grid;
  gap: 8px;
  margin: 24px auto;
  max-width: 320px;
  text-align: left;
}
.price-facts li {
  list-style: none;
  padding: 8px 12px;
  color: var(--c-text);
}
.price-facts li::before {
  content: '❌ ';
  margin-right: 6px;
}
.price-subtitle {
  max-width: 520px;
  margin: 32px auto 24px;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.price-explain {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--c-text);
}
.price-explain strong { color: #fff; }
.price-example {
  margin: 24px auto 0;
  max-width: 420px;
  padding: 20px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  text-align: center;
}
.price-example strong { color: #fff; }
.price-example > strong:first-child { display: block; margin-bottom: 8px; }

/* Prova social (depoimentos) */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto;
}
.testimonial {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.testimonial-quote {
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.testimonial-highlight {
  font-family: 'Rubik', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--g-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--c-pink);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--c-text-muted);
}

/* CTA Final */
.cta-final {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(249,60,150,0.15), transparent 60%),
    radial-gradient(500px 300px at 50% 100%, rgba(98,84,231,0.12), transparent 60%);
}
.cta-final h2 { margin-bottom: 16px; }
.cta-final p { max-width: 560px; margin: 0 auto 32px; color: var(--c-text-muted); font-size: 1.05rem; }
.cta-final .cta-microcopy { margin: 24px auto 0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--c-border-strong);
  backdrop-filter: blur(10px);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
body.is-revealed .sticky-cta { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
@media (min-width: 768px) { .sticky-cta { display: none; } }
body.is-revealed { padding-bottom: 80px; }
@media (min-width: 768px) { body.is-revealed { padding-bottom: 0; } }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}
.footer-links a { color: var(--c-text-muted); }
.footer-disclaimer {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.5;
}

/* ---------- Popup modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  animation: fadeIn 0.2s ease;
  overscroll-behavior: contain; /* evita scroll do body vazar atrás do modal */
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.is-open { display: flex; }
body.is-modal-open { overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 36px);
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,60,150,0.15);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal h3 { font-size: 1.35rem; margin-bottom: 20px; }
.checkbox-group {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.checkbox-row:hover { border-color: var(--c-border-strong); }
.checkbox-row input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--c-border-strong);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.checkbox-row input:checked {
  background: var(--g-pink);
  border-color: transparent;
}
.checkbox-row input:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox-row.is-checked { border-color: var(--c-border-pink); background: rgba(249,60,150,0.05); }
.checkbox-label { font-size: 0.98rem; }
.checkbox-label strong { color: #fff; }
.modal-microcopy {
  color: var(--c-text-dim);
  font-size: 0.82rem;
  font-style: italic;
  margin-bottom: 20px;
  padding: 0 4px;
}
.modal-microcopy--after {
  margin: 16px 0 0;
  text-align: center;
}
.modal-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  color: #ffcf80;
  background: rgba(255, 176, 46, 0.08);
  border: 1px solid rgba(255, 176, 46, 0.35);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}
.modal-notice-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #ffb02e;
}
.modal-notice-link {
  color: #ffe0a8;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.15s;
}
.modal-notice-link:hover { color: #fff; }
.modal-error {
  display: none;
  color: var(--c-pink);
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(249,60,150,0.08);
  border: 1px solid var(--c-border-pink);
  border-radius: var(--r-sm);
}
.modal-error.is-visible { display: block; }
.modal-actions {
  display: flex;
  gap: 12px;
  flex-direction: column-reverse;
}
@media (min-width: 480px) {
  .modal-actions { flex-direction: row; justify-content: flex-end; }
}
.modal-btn-cancel {
  padding: 12px 20px;
  color: var(--c-text-muted);
  border-radius: var(--r-pill);
}
.modal-btn-cancel:hover { color: #fff; }

/* ---------- Form page ---------- */
.form-page main { padding: clamp(32px, 6vw, 64px) 0; }
.form-hero { text-align: center; margin-bottom: 32px; }
.form-hero h1 { margin-bottom: 12px; }
.form-hero p { color: var(--c-text-muted); max-width: 500px; margin: 0 auto; }
.form-hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(98,84,231,0.1);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.85rem;
}

.form-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 18px; }
/* Reset do fieldset pra ficar igual a .field. `legend` herda o estilo de label pra manter a UI uniforme. */
.field--group { border: 0; padding: 0; margin: 0 0 18px; min-width: 0; }
.field--group > legend {
  display: block;
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  padding: 0;
}
.field label {
  display: block;
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.field label .optional {
  color: var(--c-text-dim);
  font-weight: 400;
  font-size: 0.85rem;
}
.input,
.select {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input::placeholder { color: var(--c-text-dim); }
.input:focus,
.select:focus {
  outline: none;
  border-color: var(--c-primary-light);
  box-shadow: 0 0 0 4px rgba(98,84,231,0.15);
}
.input.has-error,
.select.has-error {
  border-color: var(--c-pink);
  box-shadow: 0 0 0 4px rgba(249,60,150,0.12);
}
.select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%239289f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.input-wrapper {
  position: relative;
}
.input-wrapper .prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-dim);
  pointer-events: none;
  font-weight: 600;
}
.input-wrapper .has-prefix { padding-left: 30px; }
.field-error {
  display: none;
  color: var(--c-pink);
  font-size: 0.85rem;
  margin-top: 6px;
}
.field-error.is-visible { display: block; }
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--c-surface-2);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.radio-row:hover { border-color: var(--c-border-strong); }
.radio-row input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--c-border-strong);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}
.radio-row input[type="radio"]:checked {
  border-color: var(--c-pink);
}
.radio-row input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--g-pink);
}
.radio-row.is-checked {
  border-color: var(--c-border-pink);
  background: rgba(249,60,150,0.05);
}
.radio-label {
  font-size: 0.98rem;
  color: #fff;
  font-weight: 600;
}
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 20px 0 24px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}
.consent-row input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--c-border-strong);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.consent-row input[type="checkbox"]:checked {
  background: var(--g-pink);
  border-color: transparent;
}
.consent-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 0px;
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--g-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.form-divider .accent-pink {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--g-brand);
  border-radius: 2px;
  opacity: 0.85;
}
.form-submit-error {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--c-pink);
  background: rgba(249,60,150,0.08);
  border: 1px solid var(--c-border-pink);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
}
.form-submit-error.is-visible { display: block; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0; width: 0;
}

/* ---------- Success page ---------- */
.success-card {
  max-width: 560px;
  margin: 40px auto;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--g-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  animation: pop 0.4s ease;
}
@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-icon svg { width: 40px; height: 40px; }
.success-card h1 { margin-bottom: 12px; }
.success-card p { color: var(--c-text-muted); margin-bottom: 16px; }
.next-steps {
  text-align: left;
  margin: 24px auto;
  padding: 20px 24px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: grid;
  gap: 12px;
}
.next-steps strong { color: #fff; display: block; margin-bottom: 8px; }
.next-step { display: flex; gap: 12px; align-items: flex-start; }
.next-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--g-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ---------- Utility ---------- */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.6rem; }
  .price-headline { font-size: 2rem; }
  .btn { padding: 14px 24px; font-size: 1rem; }
  .level { grid-template-columns: 1fr; text-align: center; }
  .level-badge { margin: 0 auto; }
}

/* iPhone SE 1ª geração / telas ~320-360px */
@media (max-width: 360px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.95rem; }
  .price-headline { font-size: 1.75rem; }
  .price-example { padding: 16px; }
  .btn { padding: 14px 20px; font-size: 0.95rem; }
  .btn-lg { padding: 16px 24px; font-size: 1rem; }
  .modal { padding: 20px; }
  .form-card { padding: 20px; }
  .success-card { padding: 24px 20px; }
  .benefit-card, .step-card, .bullet-item { padding: 18px; }
  .level { padding: 16px 18px; }
  .level-badge { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  outline: none;
}
/* Modifier: esconde o botão até o body ganhar .is-revealed (usado só na LP) */
.wa-float--gated {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
body.is-revealed .wa-float--gated {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .wa-float::before { animation: none; }
}
