/* ==========================================================================
   VÍDEOS COM IA PARA COMÉRCIOS — STYLESHEET v2
   Referência: Stripe / Linear / Apple dark — premium, contido, humano.
   Mobile-first. Todas as cores em Custom Properties no :root.
   ========================================================================== */


/* ==========================================================================
   CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Fundo */
  --bg:          #0A0E0C;
  --bg-card:     #0F1512;
  --bg-elevated: #141C18;
  --bg-border:   #192019;

  /* Texto */
  --text:        #E8EDEA;
  --text-muted:  #9BA8A2;
  --text-subtle: #5C6B64;

  /* Destaques */
  --green:        #22C55E;
  --green-dim:    rgba(34,197,94,0.10);
  --green-border: rgba(34,197,94,0.22);
  --green-dark:   #16A34A;   /* para texto verde sobre fundo claro */

  --gold:         #D4A24C;
  --gold-dim:     rgba(212,162,76,0.10);
  --gold-border:  rgba(212,162,76,0.28);

  --red:          #E55B5B;

  /* Bordas */
  --border:     rgba(255,255,255,0.07);
  --border-md:  rgba(255,255,255,0.11);
  --border-str: rgba(255,255,255,0.16);

  /* Tipografia — Inter, fluid */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-xs:  clamp(0.688rem, 1.4vw, 0.75rem);
  --t-sm:  clamp(0.813rem, 1.8vw, 0.875rem);
  --t-base:clamp(0.9rem,   2vw,   1rem);
  --t-md:  clamp(1rem,     2.2vw, 1.125rem);
  --t-lg:  clamp(1.1rem,   2.5vw, 1.25rem);
  --t-xl:  clamp(1.25rem,  3vw,   1.5rem);
  --t-2xl: clamp(1.5rem,   3.5vw, 1.875rem);
  --t-3xl: clamp(1.75rem,  4vw,   2.375rem);
  --t-hero:clamp(2.1rem,   5.5vw, 3.5rem);

  /* Espaço */
  --s1:  0.25rem;  --s2:  0.5rem;  --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem; --s6:  1.5rem;
  --s8:  2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;     --s20: 5rem;

  /* Layout */
  --max-w: 1160px;
  --pad:   clamp(1rem, 5vw, 2rem);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;

  /* Sombras */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.55);
  --shadow-md:  0 2px 12px rgba(0,0,0,0.55), 0 6px 28px rgba(0,0,0,0.3);
  --shadow-lg:  0 4px 24px rgba(0,0,0,0.7),  0 12px 48px rgba(0,0,0,0.4);

  /* Transições */
  --ease-fast: 140ms ease;
  --ease-base: 240ms ease;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Eyebrow label — ex.: "COMO FUNCIONA" */
.eyebrow {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--s3);
}
.eyebrow--green { color: var(--green); }
.eyebrow--gold  { color: var(--gold); }

/* Títulos de seção */
.section-title {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  color: var(--text);
}

/* Texto em destaque inline */
.hl-gold  { color: var(--gold); }
.hl-green { color: var(--green); }
.hl-red   { color: var(--red); }


/* ── Botões ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), opacity var(--ease-fast);
}
.btn:hover  { transform: translateY(-1px); opacity: 0.9; }
.btn:active { transform: translateY(0); opacity: 1; }

.btn--gold {
  background: var(--gold);
  color: #0A0E0C;
  box-shadow: 0 2px 14px rgba(212,162,76,0.28);
}
.btn--gold:hover { box-shadow: 0 4px 22px rgba(212,162,76,0.38); }

.btn--green {
  background: var(--green);
  color: #0A0E0C;
  box-shadow: 0 2px 14px rgba(34,197,94,0.22);
}
.btn--green:hover { box-shadow: 0 4px 22px rgba(34,197,94,0.32); }

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--t-md);
}

.btn svg { flex-shrink: 0; }


/* ── Animação de entrada ─────────────────────────────────────────────── */

.fi {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fi.on { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 0.08s; }
.fi-d2 { transition-delay: 0.16s; }
.fi-d3 { transition-delay: 0.24s; }
.fi-d4 { transition-delay: 0.32s; }
.fi-d5 { transition-delay: 0.40s; }


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,12,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.logo {
  font-size: var(--t-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo span { color: var(--green); }

.site-nav {
  display: none;
  gap: var(--s6);
}
.site-nav a {
  font-size: var(--t-sm);
  color: var(--text-muted);
  transition: color var(--ease-fast);
}
.site-nav a:hover { color: var(--text); }

.header-cta {
  padding: 0.45rem 1rem;
  font-size: var(--t-sm);
  border-radius: var(--r-md);
}

@media (min-width: 900px) { .site-nav { display: flex; } }


/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding-top: clamp(3rem, 9vw, 6.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

/* Gradiente radial de fundo — muito sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 72% 36%, rgba(34,197,94,0.045) 0%, transparent 68%),
    radial-gradient(ellipse 38% 38% at 18% 65%, rgba(212,162,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s10);
}

/* Conteúdo — centralizado */
.hero__content {
  text-align: center;
  width: 100%;
  max-width: 780px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.hero__label svg { width: 11px; height: 11px; }

.hero__title {
  font-size: var(--t-hero);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s5);
}

.hero__sub {
  font-size: var(--t-lg);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--s6);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s5);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.32rem 0.7rem;
  font-size: var(--t-xs);
  color: var(--text-muted);
  font-weight: 500;
}
.hero__badge svg { width: 12px; height: 12px; color: var(--green); }

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4) var(--s8);
  border-top: 1px solid var(--border);
  margin-top: var(--s6);
  padding-top: var(--s6);
  text-align: left;
  display: flex;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
}

.hero__stat-val {
  font-size: var(--t-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  
}
.hero__stat-lbl {
  font-size: var(--t-xs);
  color: var(--text-muted);
  margin-top: 1px;
}

/* Vídeo de apresentação */
.hero__video {
  width: 100%;
  max-width: 860px;
}

.hero__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.hero__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA abaixo do vídeo */
.hero__cta {
  display: flex;
  justify-content: center;
}


/* ==========================================================================
   SEÇÃO DOR  (layout 3 colunas com speech bubbles)
   ========================================================================== */

.pain {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s10);
}

.pain__title {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  text-align: center;
  max-width: 24ch;
}

/* Cena: 3 colunas em desktop */
.pain__scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  width: 100%;
  max-width: 880px;
}

@media (min-width: 768px) {
  .pain__scene {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--s6);
  }
}

/* Coluna de bubbles */
.pain__bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .pain__bubbles {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
  }
}

/* Bubble individual */
.pain__bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 0.85rem;
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  position: relative;
}

.pain__bubble svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

/* Rabinho das bubbles — desktop apenas */
@media (min-width: 768px) {
  /* Bubbles esquerda — rabinho aponta pra direita */
  .pain__bubble--l::after {
    content: '';
    position: absolute;
    right: -9px;
    top: 16px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--bg-elevated);
    pointer-events: none;
  }

  /* Bubbles direita — rabinho aponta pra esquerda */
  .pain__bubble--r::after {
    content: '';
    position: absolute;
    left: -9px;
    top: 16px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 9px solid var(--bg-elevated);
    pointer-events: none;
  }
}

/* Card central — pessoa preocupada */
.pain__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  /* em mobile fica por cima, em desktop fica no meio */
  order: -1;
}
@media (min-width: 768px) { .pain__person { order: 0; } }

.pain__person-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: var(--s4);
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  box-shadow: var(--shadow-md);
}

/* Container da imagem central */
.pain__status {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-md);
  
}
.pain__status img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pain__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.25; } }

.pain__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain__avatar svg { width: 30px; height: 30px; color: var(--text-subtle); }

.pain__name {
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}


/* ==========================================================================
   COMO FUNCIONA — 3 PASSOS
   ========================================================================== */

.how {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.how__header {
  text-align: center;
  margin-bottom: var(--s12);
}
.how__header p {
  font-size: var(--t-md);
  color: var(--text-muted);
  margin-top: var(--s3);
}

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .how__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.how__step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color var(--ease-base);
}
.how__step:hover { border-color: var(--border-md); }

.how__step-num {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
}

.how__step-icon {
  width: 38px;
  height: 38px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__step-icon svg { width: 18px; height: 18px; color: var(--green); }

.how__step h3 {
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--text);
}
.how__step p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* Mini-mock CSS no card */
.how__mini-mock {
  height: 64px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--s2);
}
/* Linha de progresso no topo do mock */
.how__mini-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: var(--prog, 33%);
  background: var(--green);
}
.step-prog-1 { --prog: 25%; }
.step-prog-2 { --prog: 62%; }
.step-prog-3 { --prog: 100%; }

.how__mini-dots {
  display: flex;
  gap: 5px;
}
.how__mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-md);
}
.how__mini-dot.on { background: var(--green); }

/* Seta entre os steps */
.how__arrow {
  display: none;
  align-items: flex-start;
  padding-top: 2.6rem;
  color: var(--text-subtle);
  margin-inline: 6px;
}
.how__arrow svg { width: 18px; height: 18px; }
@media (min-width: 640px) { .how__arrow { display: flex; } }

/* Tagline */
.how__tagline {
  text-align: center;
  margin: var(--s12) auto 0;
  max-width: 500px;
  padding: var(--s5) var(--s8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.how__tagline p {
  font-size: var(--t-md);
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--s4);
}
.how__tagline-badges {
  display: flex;
  justify-content: center;
  gap: var(--s2);
}
.how__tagline-badge {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--r-sm);
  padding: 0.22rem 0.7rem;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--green);
}


/* ==========================================================================
   TUDO QUE VOCÊ PRECISA
   ========================================================================== */

.needs {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.needs__header {
  text-align: center;
  margin-bottom: var(--s10);
}
.needs__header p {
  font-size: var(--t-md);
  color: var(--text-muted);
  margin-top: var(--s3);
  max-width: 48ch;
  margin-inline: auto;
}

.needs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 640px) { .needs__grid { grid-template-columns: repeat(3, 1fr); } }

.needs__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color var(--ease-base);
}
.needs__card:hover { border-color: var(--border-md); }

.needs__card-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.needs__card-icon svg { width: 20px; height: 20px; color: var(--green); }

.needs__card h3 { font-size: var(--t-md); font-weight: 600; color: var(--text); }
.needs__card p  { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.55; }

.needs__footer {
  text-align: center;
  margin-top: var(--s8);
}
.needs__footer p {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.needs__footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
}
.needs__footer-tag {
  background: var(--bg);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 0.28rem 0.7rem;
  font-size: var(--t-xs);
  color: var(--text-muted);
  font-weight: 500;
}


/* ==========================================================================
   MÉTODO — 5 ETAPAS
   ========================================================================== */

.method {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.method__header {
  text-align: center;
  margin-bottom: var(--s10);
}

.method__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 600px) { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .method__grid { grid-template-columns: repeat(5, 1fr); } }

.method__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color var(--ease-base);
}
.method__card:hover { border-color: var(--border-md); }

.method__card-num {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
}

.method__card-icon {
  width: 34px;
  height: 34px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method__card-icon svg { width: 16px; height: 16px; color: var(--green); }

.method__card h3 {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.method__card p {
  font-size: var(--t-xs);
  color: var(--text-muted);
  line-height: 1.55;
}

.method__card-bar {
  margin-top: auto;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.method__card-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--bar, 60%);
  background: var(--green);
  border-radius: 999px;
}
.bar-20 { --bar: 20%; } .bar-40 { --bar: 40%; }
.bar-60 { --bar: 60%; } .bar-80 { --bar: 80%; }
.bar-100{ --bar: 100%; }

.method__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s5);
  margin-top: var(--s10);
  border-top: 1px solid var(--border);
  padding-top: var(--s8);
}
.method__footer-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.method__footer-item svg { width: 15px; height: 15px; color: var(--green); }


/* ==========================================================================
   RESULTADOS REAIS — cards brancos com gráfico
   ========================================================================== */

.results {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results__header {
  text-align: center;
  margin-bottom: var(--s12);
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 640px) { .results__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Card branco ──────────────────────────────────────────────────── */
.rc {
  background: #F5F8F5;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

/* Bloco de métrica */
.rc__metric {
  padding: var(--s5) var(--s5) var(--s4);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.rc__metric-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7B74;
  margin-bottom: var(--s2);
}
.rc__metric-row {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
}
.rc__metric-val {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0D1710;
  line-height: 1;
}
.rc__metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34,197,94,0.12);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 10px;
  font-weight: 600;
  color: #15803D;
}
.rc__metric-badge svg { width: 10px; height: 10px; }
.rc__metric-ctx {
  font-size: 11px;
  color: #9BA8A2;
  margin-top: var(--s1);
}

/* Gráfico SVG */
.rc__chart {
  width: 100%;
  height: 64px;
  display: block;
}

/* Separador */
.rc__sep {
  height: 1px;
  background: rgba(0,0,0,0.07);
}

/* Bloco de depoimento */
.rc__body {
  padding: var(--s5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.rc__quote-mark {
  font-size: 2rem;
  line-height: 0.7;
  color: var(--green-dark);
  font-family: Georgia, 'Times New Roman', serif;
  display: block;
  margin-bottom: var(--s2);
}

.rc__quote {
  font-size: var(--t-sm);
  color: #1E2820;
  line-height: 1.62;
}
.rc__quote-hl {
  color: var(--green-dark);
  font-weight: 600;
}

/* Autor */
.rc__author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: auto;
}

.rc__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-sm);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rc__avatar--a { background: #2D6A4F; }
.rc__avatar--b { background: #7B4397; }
.rc__avatar--c { background: #0E7490; }

.rc__author-name {
  font-size: var(--t-sm);
  font-weight: 700;
  color: #0D1710;
}
.rc__author-info {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: #6B7B74;
}
.rc__author-info svg { width: 11px; height: 11px; }


/* Nichos */
.results__niches {
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
  text-align: center;
}
.results__niches-lbl {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--s4);
}
.results__niches-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.niche-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.28rem 0.8rem;
  font-size: var(--t-xs);
  color: var(--text-muted);
}
.niche-tag--on { color: var(--text); border-color: var(--border-md); }


/* ==========================================================================
   PRA QUEM É / NÃO É
   ========================================================================== */

.fit {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.fit__header { text-align: center; margin-bottom: var(--s10); }

.fit__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: 780px;
  margin-inline: auto;
}
@media (min-width: 640px) { .fit__cols { grid-template-columns: 1fr 1fr; } }

.fit__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
}
.fit__col--yes {
  border-color: var(--green-border);
  background: rgba(34,197,94,0.03);
}

.fit__col-title {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-md);
  font-weight: 700;
  margin-bottom: var(--s5);
}
.fit__col--yes .fit__col-title { color: var(--green); }
.fit__col--no  .fit__col-title { color: var(--text-muted); }

.fit__col-title svg { width: 18px; height: 18px; }

.fit__items { display: flex; flex-direction: column; gap: var(--s3); }

.fit__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.5;
}
.fit__item-icon { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.fit__item-icon--yes { color: var(--green); }
.fit__item-icon--no  { color: var(--text-subtle); }

.fit__msg {
  text-align: center;
  margin: var(--s8) auto 0;
  max-width: 780px;
  padding: var(--s5);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  font-size: var(--t-sm);
  color: var(--gold);
  font-weight: 500;
}


/* ==========================================================================
   TUDO QUE VOCÊ LEVA
   ========================================================================== */

.delivers {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.delivers__header { text-align: center; margin-bottom: var(--s10); }

.delivers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: var(--s10);
}
@media (min-width: 640px) { .delivers__grid { grid-template-columns: repeat(3, 1fr); } }

.delivers__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color var(--ease-base);
}
.delivers__card:hover { border-color: var(--border-md); }

.delivers__card-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivers__card-icon svg { width: 18px; height: 18px; color: var(--green); }

.delivers__card h3 { font-size: var(--t-sm); font-weight: 600; color: var(--text); }
.delivers__card p  { font-size: var(--t-xs); color: var(--text-muted); line-height: 1.5; }

/* Bloco de preço */
.delivers__offer {
  max-width: 840px;
  margin-inline: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
  text-align: center;
}
@media (min-width: 640px) {
  .delivers__offer { flex-direction: row; text-align: left; }
}

.delivers__offer-left { flex: 1; }
.delivers__offer-tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--s2);
}
.delivers__offer-val {
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.delivers__offer-ctx { font-size: var(--t-sm); color: var(--text-muted); margin-top: var(--s1); }

.delivers__offer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: center;
}
@media (min-width: 640px) { .delivers__offer-right { align-items: flex-start; } }

.delivers__price-old { font-size: var(--t-sm); color: var(--text-subtle); text-decoration: line-through; }
.delivers__price-new { font-size: var(--t-3xl); font-weight: 700; letter-spacing: -0.02em; }
.delivers__price-note { font-size: var(--t-xs); color: var(--text-muted); }


/* ==========================================================================
   OFERTA PRINCIPAL
   ========================================================================== */

.offer {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.offer__header { text-align: center; margin-bottom: var(--s10); }

.offer__card {
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (min-width: 640px) { .offer__card { grid-template-columns: 1fr 1fr; } }

.offer__left {
  padding: var(--s8);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
@media (min-width: 640px) {
  .offer__left { border-bottom: 0; border-right: 1px solid var(--border); }
}

.offer__left-title {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Mock de dispositivos */
.offer__device {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.offer__screen {
  height: 100px;
  background: linear-gradient(135deg, #101B14 0%, #0A0E0C 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
/* Três pontinhos de controle */
.offer__screen::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  width: 30px;
  height: 6px;
  border-radius: 999px;
  background: var(--border-md);
  box-shadow: 14px 0 0 var(--border-md), 28px 0 0 var(--border-md);
}
.offer__screen-lbl {
  font-size: 10px;
  color: var(--text-subtle);
  position: relative;
  z-index: 1;
}

.offer__phones {
  display: flex;
  justify-content: center;
  gap: var(--s2);
}
.offer__phone-sm {
  width: 34px;
  height: 60px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.offer__phone-sm::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(160deg, #1A2A1A, #0D1A10);
  border-radius: 4px;
}

.offer__feats {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.offer__feat {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.offer__feat svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }

/* Lado direito — preço */
.offer__right {
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.offer__right-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 0.28rem 0.7rem;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.offer__right-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.offer__right-sub {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

.offer__price-block {
  padding: var(--s4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.offer__price-old {
  font-size: var(--t-sm);
  color: var(--text-subtle);
  text-decoration: line-through;
  font-weight: 500;
}

.offer__price-main {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.offer__price-sub { font-size: var(--t-sm); color: var(--text-muted); }

.offer__seals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}
.offer__seal {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--t-xs);
  color: var(--text-subtle);
}
.offer__seal svg { width: 13px; height: 13px; color: var(--text-subtle); }

/* Faixa de garantia */
.offer__guarantee {
  max-width: 880px;
  margin: var(--s5) auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}
.offer__guarantee-icon {
  width: 38px;
  height: 38px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer__guarantee-icon svg { width: 18px; height: 18px; color: var(--green); }
.offer__guarantee-title {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s1);
}
.offer__guarantee-text { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.55; }


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq__header { text-align: center; margin-bottom: var(--s10); }

.faq__list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease-base);
}
.faq__item.is-open { border-color: var(--border-md); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform var(--ease-base), color var(--ease-base);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); color: var(--green); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq__a-inner {
  padding: 0 var(--s6) var(--s5);
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
}


/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.cta-final {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  text-align: center;
}
.cta-final__inner {
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
}

.cta-final__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-final__icon svg { width: 26px; height: 26px; color: var(--gold); }

.cta-final__title {
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
}
.cta-final__sub {
  font-size: var(--t-md);
  color: var(--text-muted);
  line-height: 1.65;
}

.cta-final__seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--s2);
}
.cta-seal {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--t-xs);
  color: var(--text-muted);
}
.cta-seal svg { width: 13px; height: 13px; color: var(--text-subtle); }


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: var(--s12);
  padding-bottom: var(--s8);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  padding-bottom: var(--s10);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .footer__main { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s12); }
}

.footer__brand { display: flex; flex-direction: column; gap: var(--s4); }
.footer__brand-logo { font-size: var(--t-md); font-weight: 700; letter-spacing: -0.01em; }
.footer__brand-logo span { color: var(--green); }
.footer__brand-desc { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.6; max-width: 28ch; }

.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--s4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.footer__links a {
  font-size: var(--t-sm);
  color: var(--text-muted);
  transition: color var(--ease-fast);
}
.footer__links a:hover { color: var(--text); }

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  color: var(--text-muted);
  transition: color var(--ease-fast);
}
.footer__social:hover { color: var(--text); }
.footer__social svg { width: 15px; height: 15px; }

.footer__bottom {
  padding-top: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  align-items: center;
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

.footer__copy { font-size: var(--t-xs); color: var(--text-subtle); }

.footer__payment {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.footer__payment-lbl { font-size: var(--t-xs); color: var(--text-subtle); white-space: nowrap; }
.footer__pills { display: flex; gap: var(--s1); flex-wrap: wrap; }
.footer__pill {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.18rem 0.5rem;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}


/* ==========================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-str); }
