/* ══════════════════════════════════════════════════════════════════════
   Skin "Affair Detect" — step1 e step2.

   Portado da v1 que roda em rutinaquotidiana.com/fra-new, porque esses dois
   steps são o CONTROLE de um A/B onde a única variável deve ser o checkout.
   Qualquer diferença visual aqui vira confundidor no teste.

   ⚠️ Por que é um arquivo separado e não uma seção do styles.css:
   a v1 define `.card`, `.hero`, `.step` e `.form-card` com valores diferentes
   dos nossos. Sobrescrever esses nomes no styles.css quebraria o step3, que
   usa `.card` em toda página. Aqui eles vivem isolados.

   O step3 continua no styles.css. Quando a copy dele chegar, estende aqui.
   ══════════════════════════════════════════════════════════════════════ */

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

/* Paleta da v1 — verde #00c853, NÃO o #25d366 do styles.css. */
:root {
  --green: #00c853;
  --green-dark: #00a844;
  --green-glow: rgba(0, 200, 83, 0.18);
  --red: #ff3b30;
  --yellow: #ffd60a;
  --bg: #0d1117;
  --surface: #161b22;
  --surface2: #1e2530;
  --text: #e6edf3;
  --muted: #8b949e;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 14px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 200, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%   { opacity: 1;   transform: scale(1);   box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5); }
  50%  { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(0, 200, 83, 0); }
  100% { opacity: 1;   transform: scale(1);   box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

@keyframes pulse-red {
  0%   { box-shadow: 0 4px 20px rgba(210, 30, 30, 0.5); }
  50%  { box-shadow: 0 4px 30px rgba(210, 30, 30, 0.85); }
  100% { box-shadow: 0 4px 20px rgba(210, 30, 30, 0.5); }
}

@keyframes pulse-btn {
  0%   { transform: scale(1);    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35); }
  50%  { transform: scale(1.03); box-shadow: 0 6px 32px rgba(0, 200, 83, 0.7); }
  100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35); }
}

/* ══════════════════════════════════════════════════════════════════════
   STEP 1 — captura
   Container 420px, tudo centralizado, padding no body.
   ══════════════════════════════════════════════════════════════════════ */

body.step1 {
  padding: 24px 16px 48px;
}

body.step1 .page {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-wrap {
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease both;
}

.logo-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 200, 83, 0.4));
  display: block;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
  animation: fadeDown 0.6s 0.1s ease both;
}

.hero h1 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--green);
}

.steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}

.step:hover {
  border-color: rgba(0, 200, 83, 0.25);
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-glow);
  border: 1px solid rgba(0, 200, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green);
}

.step-body {
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  animation: fadeUp 0.6s 0.35s ease both;
}

.form-label-big {
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
  color: var(--text);
}

/* intl-tel-input: as bandeiras vêm do CDN, o campo é estilizado por cima. */
.iti {
  width: 100%;
  margin-bottom: 14px;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags@2x.png");
  }
}

.iti--separate-dial-code .iti__selected-flag {
  background: var(--surface2);
  border-radius: 10px 0 0 10px;
}

#phone {
  width: 100% !important;
  padding: 14px 16px 14px 90px !important;
  font-size: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#phone::placeholder {
  color: var(--muted);
}

#phone:focus {
  border-color: rgba(0, 200, 83, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

/* Erro inline em vez do alert() da v1 — ver nota no HANDOFF.
   Some por padrão; o .show liga. */
.field-error {
  display: none;
  margin: -6px 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b63;
  text-align: center;
}

.field-error.show {
  display: block;
}

.utm-fields {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   STEP 2 — perfil + VSL + progressão
   Container 480px, blocos com margin lateral própria (o body não tem padding).
   ══════════════════════════════════════════════════════════════════════ */

body.step2 {
  padding: 0 0 48px;
}

body.step2 .page {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 0 0 24px;
}

.banner-warning {
  background: rgba(255, 59, 48, 0.12);
  border-bottom: 1px solid rgba(255, 59, 48, 0.3);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff6b63;
  line-height: 1.4;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin: 0 12px;
}

.card.success {
  border-color: rgba(0, 200, 83, 0.25);
  background: rgba(0, 200, 83, 0.06);
}

.card.tight {
  padding: 12px 16px 8px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.card-title.green {
  color: var(--green);
}

.card-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Vídeo ────────────────────────────────────────────────────────────
   O funnel.js monta o player aqui: procura um <video> e um .unmute dentro
   deste container. A nota do timer fica DENTRO da caixa, como na v1. */
.video-wrap {
  margin: 0 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.video-wrap video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
}

.timer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 8px 0 0;
}

.unmute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  background: rgba(210, 30, 30, 0.93);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.2s, transform 0.15s;
  animation: pulse-red 1.8s infinite;
  font-family: inherit;
}

.unmute:hover {
  background: rgba(180, 20, 20, 0.97);
  transform: translate(-50%, -50%) scale(1.04);
}

.unmute .ic {
  font-size: 1.5rem;
  line-height: 1;
}

.unmute .lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── CTA atrasado ─────────────────────────────────────────────────────
   Escondido até a barra de progresso bater 100%. O nome `delayzin` veio
   da v1 — mantido pra facilitar comparar as duas páginas lado a lado. */
.delayzin {
  display: none;
}

.delayzin.visible {
  display: block !important;
  animation: fadeUp 0.4s ease both;
}

.cta-wrap {
  margin: 0 12px;
  text-align: center;
}

.cta-found {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.btn-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--green);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
  animation: pulse-btn 1.5s infinite;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: var(--green-dark);
}

/* ── Perfil do alvo ─────────────────────────────────────────────────── */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#loadingIndicator {
  font-size: 0.8rem;
  color: var(--muted);
}

.profile-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
  opacity: 0.9;
  transition: opacity 0.4s, transform 0.3s;
}

.profile-image.loaded {
  opacity: 1;
  transform: scale(1.04);
}

/* Sem foto pública, entra o selo verde em vez de um avatar genérico. */
.success-avatar {
  display: none;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a844, #00c853);
  border: 3px solid var(--green);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.success-avatar.visible {
  display: flex;
}

.phone-pill {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid rgba(0, 200, 83, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
}

/* ── Progressão ─────────────────────────────────────────────────────── */
.progress-wrap {
  margin: 0 12px;
}

.progress-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}

#progress-container {
  width: 100%;
  background: var(--surface2);
  border-radius: 999px;
  overflow: hidden;
  height: 22px;
  border: 1px solid var(--border);
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00a844, #00c853);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.4s;
  border-radius: 999px;
}

.scan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 12px;
}

.scan-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

#scan-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  min-height: 1.4em;
}

.info-card {
  background: rgba(255, 214, 10, 0.07);
  border: 1px solid rgba(255, 214, 10, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd60a;
}

.satellite-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   STEP 3 — relatório + checkout

   ⚠️ Vários nomes de classe daqui TAMBÉM existem no step2 com valores
   diferentes (`.profile-card`, `.profile-image`, `.phone-pill`, `.video-wrap`,
   `.btn-cta`). Por isso tudo que divergir vem escopado em `body.step3` —
   sem isso, mexer no step3 muda o step2 de tabela.
   ══════════════════════════════════════════════════════════════════════ */

body.step3 {
  padding: 0 0 60px;
}

body.step3 .page {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

/* O halo do step3 é VERMELHO (alerta), não verde como nos outros dois. */
body.step3::before {
  top: -100px;
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(255, 59, 48, 0.08) 0%, transparent 70%);
}

.alert-banner {
  background: rgba(255, 59, 48, 0.12);
  border-bottom: 2px solid rgba(255, 59, 48, 0.4);
  padding: 14px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ff6b63;
  line-height: 1.4;
}

.alert-banner span {
  color: #fff;
}

.card.red-border {
  border-color: rgba(255, 59, 48, 0.3);
}

.sec-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 8px;
}

body.step3 .profile-card {
  border-color: rgba(0, 200, 83, 0.25);
  gap: 10px;
}

body.step3 .profile-image {
  width: 100px;
  height: 100px;
  opacity: 1;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}

body.step3 .phone-pill {
  padding: 5px 16px;
}

/* O selo de fallback acompanha o avatar menor do step3 (100px, não 110px). */
body.step3 .success-avatar {
  width: 100px;
  height: 100px;
}

.report-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 59, 48, 0.85);
  padding: 4px 12px;
  border-radius: 999px;
}

.findings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.findings li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text);
}

.findings li .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.findings li strong {
  color: #ff6b63;
}

/* ── Prints bloqueados ────────────────────────────────────────────────
   O blur de 6px e a tarja são aplicados POR CIMA pelo CSS, então o arquivo
   a subir é o print NÍTIDO. Print já borrado borra duas vezes e vira mancha.
   Sem imagem no config, o `.mock` embaixo mantém o bloco de pé. */
.screenshot-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.screenshot-wrap img {
  width: 100%;
  display: block;
  filter: blur(6px) brightness(0.6);
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(13, 17, 23, 0.5);
  text-align: center;
  padding: 16px;
}

.lock-icon {
  font-size: 2rem;
}

.screenshot-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.screenshot-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Mock em CSS pra quando não houver print real — mesma altura aproximada,
   mesmo blur, zero dependência de arquivo. */
.screenshot-mock {
  height: 190px;
  background:
    repeating-linear-gradient(180deg, var(--surface2) 0 26px, var(--surface) 26px 52px),
    var(--surface);
  filter: blur(6px) brightness(0.6);
}

.screenshot-mock.grid {
  background:
    repeating-linear-gradient(90deg, var(--surface2) 0 33%, var(--surface) 33% 34%),
    repeating-linear-gradient(180deg, var(--surface2) 0 48%, var(--surface) 48% 50%);
}

/* ── Vídeo vertical ─────────────────────────────────────────────────── */
body.step3 .video-wrap {
  margin: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: none;
}

body.step3 .video-wrap video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* ── Mapa ─────────────────────────────────────────────────────────────── */
.map-card {
  margin: 0 12px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-header {
  background: var(--surface);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

#map {
  height: 260px;
  width: 100%;
}

/* ── Card de venda ────────────────────────────────────────────────────
   Sem preço na página, de propósito: a v1 não mostra valor nenhum ("o app é
   grátis, você paga só uma taxa simbólica") e o valor aparece só no checkout.
   Se aparecer preço aqui, preço vira uma segunda variável do A/B. */
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 20px;
  padding: 24px 20px;
  margin: 0 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
}

.pricing-badge {
  display: inline-block;
  background: rgba(255, 214, 10, 0.15);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
}

.pricing-features li .check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 20px;
  text-align: left;
}

.guarantee img {
  width: 48px;
  flex-shrink: 0;
}

/* Stand-in do selo da v1, cujo PNG está num domínio morto. Mesmo footprint
   de 48px, então trocar por imagem real não move o layout. */
.guarantee-seal {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.guarantee-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.guarantee-text strong {
  color: var(--text);
  display: block;
  font-size: 0.82rem;
}

/* O CTA do step3 é maior que o do step2 e NÃO tem scale na pulsação. */
body.step3 .btn-cta {
  padding: 18px 16px;
  border-radius: 14px;
  font-size: 1rem;
  line-height: 1.3;
  box-shadow: 0 4px 24px rgba(0, 200, 83, 0.4);
  animation: pulse-btn-3 1.8s infinite;
}

body.step3 .btn-cta:hover {
  transform: translateY(-1px);
}

@keyframes pulse-btn-3 {
  0%   { box-shadow: 0 4px 24px rgba(0, 200, 83, 0.4); }
  50%  { box-shadow: 0 4px 36px rgba(0, 200, 83, 0.65); }
  100% { box-shadow: 0 4px 24px rgba(0, 200, 83, 0.4); }
}

.btn-cta .btn-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 3px;
}

.urgency-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.4;
}

.urgency-note span {
  color: #ff6b63;
  font-weight: 700;
}

/* ── Depoimentos ────────────────────────────────────────────────────── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 12px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-stars {
  font-size: 0.75rem;
  color: var(--yellow);
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Cascata de entrada do step3 */
.fade { animation: fadeUp 0.5s ease both; }
.fade-1 { animation-delay: 0.05s; }
.fade-2 { animation-delay: 0.1s; }
.fade-3 { animation-delay: 0.15s; }
.fade-4 { animation-delay: 0.2s; }
.fade-5 { animation-delay: 0.25s; }
.fade-6 { animation-delay: 0.3s; }

/* ── Contador ao vivo (os dois steps) ───────────────────────────────── */
.live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

body.step1 .live-badge {
  margin-top: 18px;
  animation: fadeUp 0.6s 0.5s ease both;
}

body.step2 .live-badge {
  padding: 0 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

/* ── Popup de conteúdo bloqueado (step3) ──────────────────────────────
   Nasceu do Clarity: os prints borrados, o mapa e o card do alvo recebiam
   clique e não respondiam nada. Clique morto em elemento que PARECE clicável
   é o que o Clarity marca como rage click — e ali o lead está pedindo pra ver
   o conteúdo, que é exatamente o momento de mostrar o CTA.

   ⚠️ SEM PREÇO aqui dentro, igual ao resto da página. A v1 não mostra valor,
   e no funil 15 (braço B do A/B) preço na tela viraria uma segunda variável.

   As classes `.open` e `[data-close]` seguem a convenção que o
   `Funnel.armBackRedirect` (funnel.js) já espera. Quando a oferta de saída for
   religada, ela reusa esta mesma marcação em vez de criar um segundo modal. */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 8, 12, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 20px;
  padding: 28px 20px 20px;
  text-align: center;
  transform: translateY(14px);
  transition: transform 0.18s ease;
}

.modal.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text);
}

.modal-lock {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 18px;
}

.modal-later {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
}

.modal-later:hover {
  color: var(--text);
}

/* Os blocos que abrem o popup. Sem isto o lead não tem sinal de que dá pra
   tocar — o cursor é o que transforma "imagem borrada" em "imagem clicável". */
.lockable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lockable:active {
  filter: brightness(1.12);
}
