/* =========================================
   WIS — Fórum de Investimento / Carlos Wizard
   Dark Luxury Premium Design System
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-elevated:   #1C1C1C;
  --gold:          #C9A84C;
  --gold-light:    #F0C040;
  --gold-dim:      #9A7A30;
  --text-primary:  #F5F5F0;
  --text-secondary:#B8B8B0;
  --text-muted:    #666660;
  --border:        rgba(201,168,76,0.2);
  --border-strong: rgba(201,168,76,0.5);
  --shadow-gold:   0 0 40px rgba(201,168,76,0.15);
  --shadow-deep:   0 20px 60px rgba(0,0,0,0.6);
  --font-title:    'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --radius:        4px;
  --max-width:     900px;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
.headline {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gold-text { color: var(--gold); }
.gold-text-light { color: var(--gold-light); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 60px 0;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
.divider--center {
  margin: 24px auto;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.03) 60px,
      rgba(201,168,76,0.03) 61px
    );
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero__meta-sep {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
}

/* --- Countdown Timer --- */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown__label-top {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
}

.countdown__number {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  min-width: 64px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px 8px;
}

.countdown__unit {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.countdown__sep {
  font-size: 32px;
  color: var(--gold-dim);
  font-weight: 700;
  margin-top: -16px;
}

/* --- Scarcity Badge --- */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 20px;
}

.scarcity-badge strong {
  color: var(--gold-light);
}

/* --- CTA Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0A0A0A;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--gold);
}

.btn--outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 16px;
  padding: 18px 44px;
}

.btn--full {
  width: 100%;
}

/* =========================================
   VSL SECTION
   ========================================= */
.vsl-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.vsl-section__pre {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.vsl-section__pre p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

.vsl-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-deep), 0 0 40px rgba(201,168,76,0.25);
  border: 2px solid var(--gold);
  max-width: 800px;
  margin: 0 auto;
}

.vsl-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.vsl-section__post {
  text-align: center;
  max-width: 560px;
  margin: 40px auto 0;
}

.vsl-section__post p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

/* =========================================
   CARLOS WIZARD SECTION
   ========================================= */
.wizard-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.wizard-section .section__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.wizard-photo {
  position: relative;
}

.wizard-photo__frame {
  aspect-ratio: 3/4;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-photo__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1C1C1C, #111111);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wizard-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-photo__corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  border-style: solid;
}
.wizard-photo__corner--tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.wizard-photo__corner--br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

.wizard-content h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.wizard-bio {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.wizard-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.wizard-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wizard-achievements li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.wizard-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.wizard-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.wizard-stat__number {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.wizard-stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================
   TIMELINE SECTION
   ========================================= */
.timeline-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.timeline-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

.timeline__item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  flex-shrink: 0;
}

.timeline__time {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 48px;
  padding-top: 2px;
  white-space: nowrap;
}

.timeline__content {
  flex: 1;
}

.timeline__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-footer {
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-footer__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.timeline-footer__item span.label {
  color: var(--gold);
  font-weight: 600;
}

/* =========================================
   QUALIFICATION SECTION
   ========================================= */
.qual-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.qual-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.qual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.qual-card--yes {
  border-color: rgba(201,168,76,0.4);
}

.qual-card--no {
  border-color: rgba(255,255,255,0.08);
}

.qual-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.qual-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.qual-card--yes .qual-card__icon { background: rgba(201,168,76,0.15); }
.qual-card--no .qual-card__icon { background: rgba(255,255,255,0.05); }

.qual-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.qual-list li .check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.qual-list li .cross { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.benefits-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.benefit-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.benefit-card__title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================
   URGENCY SECTION
   ========================================= */
.urgency-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(201,168,76,0.04) 50%, var(--bg-primary) 100%);
}

.urgency-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
}

.urgency-box h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.urgency-box p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.urgency-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.urgency-stat {
  text-align: center;
}

.urgency-stat__number {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.urgency-stat__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.faq-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item + .faq-item { margin-top: -1px; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(201,168,76,0.04); }
.faq-question:hover .faq-icon { color: var(--gold); }

.faq-item.open .faq-question {
  color: var(--gold-light);
  border-bottom: 1px solid var(--border);
}

.faq-icon {
  color: var(--text-muted);
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta__disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.footer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.98), rgba(10,10,10,0.9));
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sticky-cta .btn {
  font-size: 15px;
  padding: 16px 24px;
}

/* =========================================
   SECTION LABELS & HEADINGS
   ========================================= */
.section__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.section__subtitle--center {
  margin: 0 auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */
/* =========================================
   EVENT INFO GRID (substitui timeline-footer)
   ========================================= */
.event-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 48px auto 0;
}

.event-info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.event-info-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.event-info-card__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.event-info-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-info-card__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.event-info-card__value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================
   LEAD FORM SECTION
   ========================================= */
.lead-form-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.lead-form-box {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: var(--shadow-gold);
}

.lead-form-box__title {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}

.lead-form-box__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 36px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.lead-form__input {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.lead-form__input::placeholder {
  color: var(--text-muted);
}

.lead-form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.lead-form__input.error {
  border-color: #e05252;
}

.lead-form__submit {
  margin-top: 8px;
  font-size: 16px;
}

.lead-form__disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -4px;
}

@media (max-width: 768px) {
  /* --- Espaçamento geral reduzido --- */
  .section { padding: 44px 0; }
  .section--tight { padding: 32px 0; }

  .hero {
    padding: 60px 20px 44px;
    min-height: auto;
  }

  .vsl-section,
  .wizard-section,
  .timeline-section,
  .qual-section,
  .benefits-section,
  .urgency-section,
  .faq-section,
  .lead-form-section,
  .final-cta { padding: 44px 0; }

  .timeline-section__header,
  .qual-section__header,
  .benefits-section__header,
  .faq-section__header { margin-bottom: 32px; }

  /* --- Layout grids --- */
  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wizard-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .qual-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .wizard-stat-grid { grid-template-columns: repeat(3, 1fr); }

  /* --- Cards --- */
  .urgency-box { padding: 28px 20px; }
  .benefit-card { padding: 24px 20px; }
  .qual-card { padding: 24px 20px; }
  .lead-form-box { padding: 28px 20px; }

  /* --- Hero meta --- */
  .hero__meta-sep { display: none; }
  .hero__meta { flex-direction: column; gap: 6px; }
  .hero__badge { font-size: 10px; padding: 6px 16px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 28px; }

  /* --- Countdown --- */
  .countdown__number { font-size: 30px; min-width: 52px; }
  .countdown__sep { font-size: 24px; }

  /* --- Botões mobile --- */
  .btn--large { font-size: 15px; padding: 16px 32px; }
  .btn svg { width: 16px; height: 16px; }

  /* --- Sticky --- */
  .sticky-cta { display: block; }
  body { padding-bottom: 68px; }

  /* --- Info grid --- */
  .event-info-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* --- Timeline --- */
  .timeline { padding-left: 20px; }
  .timeline__item { margin-bottom: 24px; }
  .timeline-footer { flex-direction: column; gap: 12px; }

  /* --- Final CTA --- */
  .final-cta { padding: 56px 0; }
}

@media (max-width: 480px) {
  .countdown { gap: 8px; }
  .countdown__item { min-width: 48px; }
  .countdown__number { font-size: 24px; min-width: 44px; padding: 8px 4px 6px; }

  .urgency-stats { gap: 20px; }
  .urgency-stat__number { font-size: 36px; }

  .wizard-stat-grid { gap: 8px; }
  .wizard-stat { padding: 14px 10px; }
  .wizard-stat__number { font-size: 22px; }

  .section__title { margin-bottom: 12px; }

  .scarcity-badge { font-size: 12px; padding: 8px 14px; }
}
