/* ═══════════════════════════════════════════
   UPTIME Lajeado — Landing Page
   Paleta: #8d191b (vinho) | #fbb816 (ouro) | #2e368f (azul)
   ═══════════════════════════════════════════ */

/* ── RESET & VARIÁVEIS ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wine:        #8d191b;
  --wine-dark:   #6b1214;
  --wine-light:  #a82022;
  --gold:        #fbb816;
  --gold-dark:   #e0a510;
  --gold-light:  #fcc840;
  --blue:        #2e368f;
  --blue-dark:   #222a72;
  --blue-light:  #3a44b0;

  --bg:          #080808;
  --bg2:         #0f0f0f;
  --bg3:         #161616;
  --bg4:         #1e1e1e;

  --text:           #ffffff;
  --text-secondary: rgba(255,255,255,0.75);
  --muted:          rgba(255,255,255,0.42);
  --border:         rgba(255,255,255,0.08);
  --border2:        rgba(251,184,22,0.4);

  --glow-gold: 0 0 40px rgba(251,184,22,0.25);
  --glow-wine: 0 0 40px rgba(141,25,27,0.4);
  --radius:    14px;
  --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.3;
}

/* ── TIPOGRAFIA ─────────────────────────────── */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; letter-spacing: 0.04em; line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
h1 em, h2 em { font-style: normal; color: var(--gold); }

.section-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}

.section-desc {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 580px; font-weight: 300;
  margin-bottom: 44px; line-height: 1.75;
}

/* ── BOTÕES ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--wine-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.06em;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(251,184,22,0.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  padding: 16px 32px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── HEADER ─────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo-wrap { display: flex; align-items: center; }
.logo-img { height: 64px; width: auto; filter: drop-shadow(0 2px 8px rgba(251,184,22,0.2)); }
.header-cta {
  background: var(--gold); color: var(--wine-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.08em;
  padding: 10px 24px; border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative; min-height: 94vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 5%; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 40% 40%, rgba(141,25,27,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 90% 70%, rgba(46,54,143,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 85%, rgba(251,184,22,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 78%);
}
.hero-content { position: relative; z-index: 2; }

/* Prova social rápida */
.hero-social-proof {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease both;
}
.hero-avatars {
  font-size: 1.1rem; letter-spacing: -4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 5px 10px;
}
.hero-social-proof p {
  font-size: 0.82rem; color: var(--text-secondary);
}
.hero-social-proof strong { color: var(--gold); }

/* Mini benefícios */
.hero-benefits {
  list-style: none;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 8px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.hero-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: var(--text-secondary);
}
.hb-icon {
  color: var(--gold); font-weight: 700; font-size: 0.85rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(251,184,22,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Botão WhatsApp */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  padding: 16px 28px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-whatsapp:hover {
  border-color: #25d366; color: #25d366;
  background: rgba(37,211,102,0.06);
}

/* CTA com pulso para chamar atenção */
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(251,184,22,0.5); }
  60%      { box-shadow: 0 0 0 12px rgba(251,184,22,0); }
}
.btn-pulse { animation: ctaPulse 2.5s 1.5s infinite; }

/* ── VÍDEO DO HERO ──────────────────────────── */
.hero-video-col {
  position: relative; z-index: 2;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-video-wrap {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(251,184,22,0.08);
}
.hero-video-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.hero-video-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  cursor: pointer;
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine-dark);
  box-shadow: 0 0 0 8px rgba(251,184,22,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-video-placeholder:hover .play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(251,184,22,0.12);
}
.video-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.video-cta {
  font-size: 0.82rem; color: var(--muted);
  text-align: center; max-width: 200px;
}
.hero-video-caption {
  margin-top: 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.vc-stars { color: var(--gold); font-size: 0.8rem; }
.hero-video-caption p {
  font-size: 0.88rem; color: var(--text-secondary);
  font-style: italic;
}
.vc-name { font-size: 0.76rem; color: var(--muted); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,184,22,0.08);
  border: 1px solid rgba(251,184,22,0.3);
  color: var(--gold);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.6); }
}

.hero h1 { margin-bottom: 22px; animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 540px; margin-bottom: 38px;
  font-weight: 300; line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.hero-notice {
  margin-top: 18px; font-size: 0.77rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-notice::before { content: '⚡'; font-size: 0.72rem; }

/* ── STATS BAR ──────────────────────────────── */
.stats-bar {
  background: var(--wine-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(251,184,22,0.15);
  padding: 24px 5%;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--gold);
  letter-spacing: 0.05em; line-height: 1;
}
.stat-label {
  font-size: 0.74rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.09em; margin-top: 4px;
}

/* ── SEÇÕES ─────────────────────────────────── */
section { padding: 88px 5%; }

/* ── QUIZ ───────────────────────────────────── */
#quiz { background: var(--bg2); }
.quiz-wrapper { max-width: 840px; margin: 0 auto; }

.quiz-progress-bar {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50px; height: 9px; margin-bottom: 8px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  border-radius: 50px; width: 5%;
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}
.quiz-progress-label {
  font-size: 0.76rem; color: var(--muted);
  text-align: right; margin-bottom: 26px;
}

.quiz-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 42px 46px;
  position: relative; overflow: hidden;
}
.quiz-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--blue));
}

.quiz-number {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; opacity: 0.8;
}
.quiz-question {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.03em; line-height: 1.2;
  color: var(--text); margin-bottom: 30px;
}

.quiz-img-wrap {
  width: 100%; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 26px;
  border: 1px solid var(--border);
  background: var(--bg4); position: relative;
}
.quiz-img-wrap img {
  width: 100%; height: auto; display: block;
  max-height: 290px; object-fit: cover; object-position: center top;
}
.quiz-img-label {
  position: absolute; bottom: 10px; left: 12px;
  background: rgba(8,8,8,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(251,184,22,0.25);
  border-radius: 6px; padding: 4px 12px;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold);
}

.quiz-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 28px;
}
.has-image .quiz-options { grid-template-columns: 1fr; }

.quiz-option {
  background: var(--bg4); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; cursor: pointer;
  display: flex; align-items: flex-start; gap: 12px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left; font-family: 'Sora', sans-serif;
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5;
}
.quiz-option:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: var(--text); transform: translateY(-2px);
}
.quiz-option .opt-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.06em;
  color: var(--gold); flex-shrink: 0; min-width: 22px; line-height: 1.4;
}
.quiz-option.correct {
  border-color: #00c27a; background: rgba(0,194,122,0.07);
  pointer-events: none; color: var(--text);
}
.quiz-option.correct .opt-letter { color: #00c27a; }
.quiz-option.wrong {
  border-color: #e03050; background: rgba(224,48,80,0.07);
  pointer-events: none;
}
.quiz-option.wrong .opt-letter { color: #e03050; }
.quiz-option.disabled { pointer-events: none; opacity: 0.38; }

.quiz-feedback {
  display: none; padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 24px; animation: slideIn 0.3s ease;
}
.quiz-feedback.show { display: flex; align-items: center; gap: 10px; }
.quiz-feedback.correct-fb {
  background: rgba(0,194,122,0.08);
  border: 1px solid rgba(0,194,122,0.25); color: #00c27a;
}
.quiz-feedback.wrong-fb {
  background: rgba(224,48,80,0.08);
  border: 1px solid rgba(224,48,80,0.25); color: #e03050;
}

.quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.quiz-score-mini {
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.quiz-score-mini strong { color: var(--gold); font-size: 1.05rem; }

.btn-quiz-next {
  background: var(--gold); color: var(--wine-dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.06em;
  padding: 13px 28px; border-radius: 50px;
  border: none; cursor: pointer; display: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-quiz-next.show { display: inline-flex; align-items: center; gap: 8px; }
.btn-quiz-next:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }

/* ── RESULTADO ──────────────────────────────── */
.quiz-result {
  display: none; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 52px 46px; text-align: center;
  position: relative; overflow: hidden; animation: fadeUp 0.5s ease;
}
.quiz-result.show { display: block; }
.quiz-result::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--blue));
}
.quiz-result::after {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,184,22,0.06), transparent 70%);
  pointer-events: none;
}

.result-emoji { font-size: 4rem; margin-bottom: 18px; }
.result-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.result-label { font-size: 1rem; color: var(--muted); margin-bottom: 6px; }
.result-details {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap; margin: 22px 0 28px;
}
.result-stat {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 22px; text-align: center; min-width: 90px;
}
.result-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; color: var(--gold); line-height: 1;
}
.result-stat-lbl {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px;
}
.result-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 14px;
}
.result-desc {
  font-size: 0.96rem; color: var(--text-secondary);
  max-width: 460px; margin: 0 auto 34px;
  line-height: 1.78; font-weight: 300;
}
.result-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-restart {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-secondary); font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 50px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-restart:hover { border-color: var(--gold); color: var(--gold); }

.level-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px;
}
.level-badge.beginner { background: rgba(224,48,80,0.1);  border: 1px solid rgba(224,48,80,0.3); color: #e03050; }
.level-badge.basic    { background: rgba(251,184,22,0.1); border: 1px solid rgba(251,184,22,0.3); color: var(--gold); }
.level-badge.inter    { background: rgba(46,54,143,0.18); border: 1px solid rgba(100,115,220,0.4); color: #8a96f0; }
.level-badge.advanced { background: rgba(0,194,122,0.09); border: 1px solid rgba(0,194,122,0.3); color: #00c27a; }

/* ── SOBRE ──────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1080px; margin: 0 auto;
}
.about-video {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-video::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(141,25,27,0.06), transparent); pointer-events: none;
}
.video-placeholder { text-align: center; color: var(--muted); z-index: 1; }
.video-placeholder span { font-size: 3.5rem; display: block; margin-bottom: 10px; }
.video-placeholder p { font-size: 0.88rem; }

/* ── PILARES ────────────────────────────────── */
.pillars { background: var(--bg2); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px,1fr));
  gap: 22px; max-width: 1080px; margin: 0 auto;
}
.pillar-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.pillar-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.pillar-card:hover::before { opacity: 1; }
.pillar-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem; line-height: 1;
  color: rgba(255,255,255,0.05); margin-bottom: 14px; transition: color 0.3s;
}
.pillar-card:hover .pillar-number { color: rgba(251,184,22,0.18); }
.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
  color: var(--gold); margin-bottom: 10px;
}
.pillar-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.72; }

/* ── DEPOIMENTOS ────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 22px; max-width: 1080px; margin: 0 auto 44px;
}
.test-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px; transition: border-color 0.2s;
}
.test-card:hover { border-color: rgba(251,184,22,0.18); }
.test-quote { font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 12px; opacity: 0.35; font-family: Georgia,serif; }
.test-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.test-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 22px; font-weight: 300; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; color: #080808; flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.test-role { font-size: 0.74rem; color: var(--muted); }

/* ── FORMULÁRIO ─────────────────────────────── */
.lead-section { background: var(--bg2); }
.form-wrapper { max-width: 520px; margin: 0 auto; text-align: center; }
.form-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 46px 38px;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--blue));
}
.form-card::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,184,22,0.05), transparent 70%);
  pointer-events: none;
}
.form-card h2 { font-size: clamp(1.7rem,4vw,2.5rem); margin-bottom: 10px; }
.form-card .section-desc { margin: 0 auto 28px; font-size: 0.92rem; }
.form-field { margin-bottom: 14px; text-align: left; }
.form-field label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-field input {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 16px; color: var(--text);
  font-family: 'Sora', sans-serif; font-size: 0.94rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(251,184,22,0.08); }
.form-field input::placeholder { color: rgba(255,255,255,0.2); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--wine-dark);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.05em; padding: 17px;
  border: none; border-radius: 50px; cursor: pointer; margin-top: 6px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(251,184,22,0.3); }
.form-privacy { font-size: 0.73rem; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── FAQ ────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; padding: 20px 0;
  font-family: 'Sora', sans-serif; font-size: 0.97rem; font-weight: 600;
  color: var(--text-secondary); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--text); }
.faq-arrow {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--gold);
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(251,184,22,0.08); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ── CTA FINAL ──────────────────────────────── */
.cta-section {
  background: var(--wine-dark); text-align: center;
  position: relative; overflow: hidden; border-top: 2px solid var(--gold);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(251,184,22,0.06) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 14px; }
.cta-section .section-desc { margin: 0 auto 32px; color: rgba(255,255,255,0.7); }

/* ── FAIXA AZUL ─────────────────────────────── */
.blue-stripe {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 5%; text-align: center;
}
.blue-stripe p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: white; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #050505; border-top: 1px solid var(--border);
  padding: 32px 5%; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-logo { height: 42px; width: auto; opacity: 0.8; }
.footer-copy { font-size: 0.74rem; color: var(--muted); }

/* ── ANIMAÇÕES ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVO — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  header { padding: 12px 4%; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto; padding: 60px 5% 64px;
    gap: 36px;
  }
  .hero-content { max-width: 100%; order: 0; }
  .hero-sub { max-width: 100%; }
  .hero-video-col { order: 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-whatsapp { width: 100%; justify-content: center; max-width: 380px; }

  /* Stats */
  .stats-bar { gap: 24px; padding: 20px 4%; }

  /* Seções */
  section { padding: 64px 5%; }

  /* Quiz card */
  .quiz-card { padding: 24px 18px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
  .quiz-score-mini { order: 2; }
  .btn-quiz-next { order: 1; width: 100%; justify-content: center; max-width: 360px; }

  /* Resultado (mantém centralizado — faz sentido) */
  .quiz-result { padding: 32px 20px; }
  .result-stat { min-width: 80px; padding: 12px 16px; }
  .result-cta-group { flex-direction: column; align-items: center; }
  .result-cta-group .btn-primary,
  .result-cta-group .btn-restart { width: 100%; justify-content: center; max-width: 360px; }

  /* Sobre */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Pilares */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Depoimentos */
  .test-grid { grid-template-columns: 1fr; }

  /* Formulário */
  .form-card { padding: 28px 18px; }

  /* CTA (mantém centralizado) */
  .cta-inner .btn-primary { width: 100%; justify-content: center; max-width: 360px; }
  .cta-inner .hero-notice { justify-content: center; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 400px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .btn-primary { font-size: 1rem; padding: 14px 24px; }
  .quiz-card { padding: 20px 14px; }
}
