/* ============================================================
   GRUPO DIMARTINS — PÁGINAS DE VENDAS — sales.css
   Sistema de Design: verde petróleo + dourado premium
   Cobre: página de vendas VSL, quiz, obrigado
   ============================================================ */

/* ---------- VARIÁVEIS CSS ---------- */
:root {
  /* Cores base */
  --bg-darkest:   #030a05;
  --bg-dark:      #060e08;
  --bg-medium:    #0a1a0e;
  --bg-card:      #0d2011;
  --bg-elevated:  #102614;

  /* Dourado */
  --gold-primary: #c9a227;
  --gold-light:   #d4b44a;
  --gold-muted:   #a07d1c;
  --gold-bg:      rgba(201, 162, 39, 0.08);
  --gold-border:  rgba(201, 162, 39, 0.35);
  --gold-border-strong: rgba(201, 162, 39, 0.6);

  /* Texto */
  --text-primary:   #eef5ef;
  --text-secondary: #c4d6c8;
  --text-muted:     #7a9880;

  /* Verdes para acento */
  --green-cta:    #25d366;
  --green-hover:  #1ebe5d;

  /* Alertas */
  --red-alert:    #e74c3c;
  --amber-warn:   #f39c12;

  /* Tipografia */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* Layout */
  --content-max: 720px;
  --wide-max:    960px;

  /* Transições */
  --t: 0.3s ease;
  --t-slow: 0.6s ease;

  /* Sombras */
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.15);
  --shadow-cta:  0 8px 32px rgba(201, 162, 39, 0.35);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: radial-gradient(circle at 18% 10%, #0f4838 0%, #062318 36%, #030a05 100%) fixed;
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Overlay de luz dourada — cria profundidade sobre o gradiente */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.14), transparent 24%);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold-primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-wide {
  width: 100%;
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- HEADER MÍNIMO ---------- */
.sales-header {
  background: rgba(3, 10, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  padding: 1rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.sales-header img {
  height: 40px;
  margin: 0 auto;
}

/* ---------- BADGE / ATENÇÃO ---------- */
.attention-badge {
  display: inline-block;
  background: var(--red-alert);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: badge-pulse 2.5s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.gold-badge {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

/* ---------- HERO VSL ---------- */
.vsl-hero {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.11) 0%, transparent 65%);
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vsl-hero h1 {
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.vsl-hero .subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---------- VÍDEO VSL ---------- */
.vsl-video-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-border);
}

.vsl-video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
}

/* Overlay "Toque para ouvir" */
.vsl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 5, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.vsl-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.vsl-overlay-icon {
  font-size: 3rem;
  line-height: 1;
}

.vsl-overlay-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- CTA PRINCIPAL ---------- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-darkest);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: var(--shadow-cta);
  text-decoration: none;
  width: 100%;
  max-width: 520px;
}

.cta-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), #e8ca5f);
  color: var(--bg-darkest);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.5);
}

.cta-primary:active {
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-cta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.cta-secondary:hover {
  background: var(--green-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.cta-anchor {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- SEÇÕES GENÉRICAS ---------- */
.sales-section {
  padding: 4rem 1.25rem;
  position: relative;
  z-index: 1;
}

.sales-section.dark {
  background: rgba(3, 10, 5, 0.78);
  backdrop-filter: blur(2px);
}

.sales-section.medium {
  background: rgba(10, 26, 14, 0.62);
}

.sales-section.card-bg {
  background: rgba(13, 32, 17, 0.80);
}

.section-label-sm {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Divisor dourado */
.gold-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin: 0.6rem auto 1.25rem;
}

/* ---------- PROBLEMA / 3 BOXES ---------- */
.problem-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.problem-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.problem-box-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.problem-box h4 {
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.problem-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- LISTA DE FATORES OCULTOS ---------- */
.factors-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.factor-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.1);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  transition: border-color var(--t);
}

.factor-item:hover {
  border-color: var(--gold-border);
}

.factor-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.factor-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---------- CONSEQUÊNCIAS ---------- */
.consequences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.consequence-card {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color var(--t);
}

.consequence-card:hover {
  border-color: rgba(231, 76, 60, 0.5);
}

.consequence-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.consequence-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.consequence-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- CHECKLIST DOURADO ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-darkest);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- PROVA / CONFIANÇA ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.trust-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 1.25rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* ---------- SEÇÃO OFERTA ---------- */
.offer-box {
  background: var(--bg-card);
  border: 2px solid var(--gold-border-strong);
  border-radius: 12px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
}

.price-anchor {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-anchor s {
  color: rgba(231, 76, 60, 0.7);
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-family: var(--font-title);
  color: var(--gold-primary);
  margin-top: 0.5rem;
  font-weight: 700;
}

.price-value {
  font-size: 4rem;
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-weight: 800;
  line-height: 1;
}

.price-cents {
  font-size: 1.5rem;
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 0.5rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: #a0e0b0;
  margin-top: 1rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- COUNTDOWN ---------- */
.countdown-section {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-digits {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red-alert);
  line-height: 1;
  min-width: 60px;
  text-align: center;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
}

.countdown-sep {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--red-alert);
  line-height: 1.2;
}

.countdown-unit-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.scarcity-text {
  font-size: 0.9rem;
  color: var(--amber-warn);
  font-weight: 600;
}

/* ---------- QUIZ ---------- */
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Barra de progresso */
.quiz-progress-bar-wrap {
  margin-bottom: 2rem;
}

.quiz-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.quiz-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Tela de pergunta */
.quiz-question-screen {
  display: none;
  animation: fadeInUp 0.35s ease;
}

.quiz-question-screen.active {
  display: block;
}

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

.quiz-question-number {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.quiz-question-text {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

/* Cards de resposta */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  background: var(--bg-card);
  border: 2px solid rgba(201, 162, 39, 0.15);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.quiz-option:hover {
  border-color: var(--gold-primary);
  background: var(--bg-elevated);
  color: var(--text-primary);
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: var(--gold-primary);
  background: var(--gold-bg);
  color: var(--text-primary);
}

.quiz-option-letter {
  width: 32px;
  height: 32px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: all 0.2s;
}

.quiz-option.selected .quiz-option-letter {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

/* Tela de formulário (passo 9) */
.quiz-form-screen {
  display: none;
  animation: fadeInUp 0.35s ease;
}

.quiz-form-screen.active {
  display: block;
}

.quiz-form-title {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-align: center;
}

.quiz-form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: border-color var(--t);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* Tela de resultado (passo 10) */
.quiz-result-screen {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.quiz-result-screen.active {
  display: block;
}

.result-warning {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.result-warning-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.result-warning h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Barras de métricas */
.result-metrics {
  margin: 2rem 0;
}

.metric-item {
  margin-bottom: 1.5rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.metric-value {
  font-size: 0.88rem;
  color: var(--red-alert);
  font-weight: 700;
}

.metric-track {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 5px;
  width: 0%;
  transition: width 1.2s ease;
  background: linear-gradient(90deg, var(--red-alert), var(--amber-warn));
}

/* Caixa amarela do resultado */
.result-reveal-box {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid var(--gold-border-strong);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2rem;
}

.result-reveal-box h4 {
  color: var(--gold-primary);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.result-social-proof {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-social-proof strong {
  color: var(--gold-primary);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}

.result-alt-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-alt-link a {
  color: var(--green-cta);
}

/* ---------- PÁGINA OBRIGADO ---------- */
.thank-you-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,162,39,0.07) 0%, transparent 65%),
    var(--bg-dark);
}

/* Check animado */
.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  animation: check-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes check-pop {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.check-circle svg {
  width: 40px;
  height: 40px;
  color: var(--bg-darkest);
}

.thank-you-wrap h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.thank-you-wrap .sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* Caixa "O que acontece agora" */
.next-steps-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border-strong);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  max-width: 520px;
  width: 100%;
  text-align: left;
  margin: 0 auto 2rem;
}

.next-steps-box h3 {
  color: var(--gold-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.next-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.next-step:last-child { margin-bottom: 0; }

.next-step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-darkest);
  flex-shrink: 0;
}

.next-step-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.next-step-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- FOOTER MINIMAL ---------- */
.sales-footer {
  background: rgba(3, 10, 5, 0.88);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem;
  text-align: center;
}

.sales-footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.sales-footer a {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.sales-footer a:hover {
  color: var(--gold-primary);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  background: var(--green-cta);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ---------- ANIMAÇÕES ---------- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.cta-shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0); }
}

.pulse-gold {
  animation: pulse-border 2s infinite;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (min-width: 480px) {
  .problem-boxes {
    grid-template-columns: 1fr;
  }

  .consequences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) {
  .factors-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .problem-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .vsl-hero {
    padding: 5rem 1.5rem 4rem;
  }

  .consequences-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
