/* ═══════════════════════════════════════════
   UPTIME LP — base.css (compartilhado por todas as páginas)
   Gerado na refatoração — fonte única em /assets
   ═══════════════════════════════════════════ */

/* ── 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: 44px; 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: 60px 5%; }
#quiz { padding: 40px 5% 48px; }

/* ── 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: 16px 14px; }
  .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: 14px 12px; }
}

/* ── THUMBNAIL YOUTUBE CLICÁVEL ─────────────── */
.hero-video-thumb {
  display: block;
  width: 100%; height: 100%;
  position: relative; text-decoration: none;
}
.hero-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.hero-video-thumb:hover img { transform: scale(1.03); }

.play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}
.hero-video-thumb:hover .play-overlay { background: rgba(0,0,0,0.22); }

.play-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── BOTÃO VOLTAR ─────────────────────────── */
.btn-quiz-back {
  display: none; /* controlado via JS */
  align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid rgba(141,25,27,0.3);
  color: var(--wine);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  padding: 9px 18px; border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-quiz-back:hover {
  background: rgba(141,25,27,0.08);
  border-color: var(--wine);
  color: var(--wine-dark);
}

/* quiz-nav agora tem 3 itens: voltar | score | próxima */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* No mobile o botão voltar fica menor */
@media (max-width: 600px) {
  .btn-quiz-back {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

/* ── DEPOIMENTOS COM VÍDEO ────────────────── */
.test-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.test-video-card {
  display: flex; flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.test-video-card:hover {
  border-color: rgba(251,184,22,0.25);
  transform: translateY(-4px);
}
.test-video-wrap {
  position: relative; width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden; background: var(--bg4);
}
.test-video-wrap .yt-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  aspect-ratio: unset;
}
.test-video-wrap .yt-facade img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.test-video-info {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.test-video-info .test-stars { color: var(--gold); font-size: .82rem; }
.test-video-info .test-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .05em; color: var(--text);
}
.test-video-info .test-role { font-size: .74rem; color: var(--muted); margin-bottom: 4px; }
.test-video-info .test-text { font-size: .86rem; color: var(--text-secondary); line-height: 1.65; }
@media (max-width: 900px) { .test-video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .test-video-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ═══════════════════════════════════════════
   HOMEPAGE — Estilos exclusivos
   ═══════════════════════════════════════════ */

/* ── IMAGINE ──────────────────────────────── */
.imagine-section { background: var(--bg2); }
.imagine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; max-width: 1080px; margin: 0 auto;
}
.imagine-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.imagine-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}
.imagine-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.imagine-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: .05em;
  color: var(--gold); margin-bottom: 10px;
}
.imagine-card p {
  font-size: .88rem; color: var(--text-secondary);
  line-height: 1.72;
}
.imagine-cta-text {
  font-size: 1.05rem; color: var(--text);
  max-width: 560px; margin: 0 auto;
  line-height: 1.6;
}

/* ── MÉTODO ───────────────────────────────── */
.method-section { background: var(--bg); }
.method-intro {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 740px; margin: 0 auto 48px;
  text-align: center; line-height: 1.8; font-weight: 300;
}
.method-intro strong { color: var(--text); }
.method-results {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative; overflow: hidden;
}
.method-results::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--blue));
}
.method-results h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .04em; color: var(--text);
  margin-bottom: 32px; text-align: center;
}
.method-results h3 em { font-style: normal; color: var(--gold); }
.method-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.method-result-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.mr-icon {
  font-size: 1.6rem; flex-shrink: 0; margin-top: 2px;
}
.method-result-item strong {
  display: block; font-size: .95rem;
  color: var(--text); margin-bottom: 6px;
}
.method-result-item p {
  font-size: .84rem; color: var(--text-secondary);
  line-height: 1.65;
}

/* ── NÍVEL ────────────────────────────────── */
.nivel-section { background: var(--bg2); }
.nivel-cards {
  display: flex; flex-direction: column;
  gap: 14px; max-width: 600px; margin: 0 auto;
}
.nivel-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-decoration: none; color: var(--text);
  transition: border-color .2s, transform .2s, background .2s;
}
.nivel-card:hover {
  border-color: var(--border2);
  background: rgba(251,184,22,0.04);
  transform: translateX(4px);
}
.nivel-card-icon {
  font-size: 1.8rem; flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(251,184,22,0.08);
  border: 1px solid rgba(251,184,22,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.nivel-card-body { flex: 1; text-align: left; }
.nivel-card-body strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .06em;
  color: var(--gold); margin-bottom: 4px;
}
.nivel-card-body p {
  font-size: .83rem; color: var(--text-secondary); line-height: 1.5;
}
.nivel-card-arrow {
  font-size: 1.2rem; color: var(--gold);
  flex-shrink: 0; transition: transform .2s;
}
.nivel-card:hover .nivel-card-arrow { transform: translateX(4px); }

/* ── RESPONSIVO HOMEPAGE ──────────────────── */
@media (max-width: 768px) {
  .imagine-grid { grid-template-columns: 1fr 1fr; }
  .method-results { padding: 28px 20px; }
  .method-results-grid { grid-template-columns: 1fr; }
  .nivel-cards { max-width: 100%; }
}
@media (max-width: 480px) {
  .imagine-grid { grid-template-columns: 1fr; }
}

/* ── VÍDEO NO MÉTODO (horizontal 16:9) ───── */
.method-video-wrap {
  max-width: 780px; margin: 0 auto 48px;
}
.method-video-inner {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(251,184,22,0.08);
}
.method-video-inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.method-video-caption {
  margin-top: 14px; text-align: center;
  font-size: .86rem; color: var(--muted);
  font-style: italic;
}

/* ── RESPONSIVO VÍDEOS ───────────────────── */
@media (max-width: 900px) {
  .test-video-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) {
  .test-video-grid { grid-template-columns: 1fr; max-width: 380px; }
  .method-video-wrap { max-width: 100%; }
}

/* ── FACADE YOUTUBE — layout correto ─────── */
.yt-facade {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  background: #111;
  border-radius: inherit;
}
.yt-facade img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.yt-facade:hover img { opacity: .82; }
.yt-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.yt-play-btn svg {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.6));
  transition: transform .2s;
}
.yt-facade:hover .yt-play-btn svg { transform: scale(1.1); }

/* Hero — 16:9 */
.hero-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
}
.hero-video-wrap .yt-facade {
  aspect-ratio: unset;
  height: 100%;
}

/* Depoimentos — 9:16 vertical */
.test-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.test-video-wrap .yt-facade {
  aspect-ratio: unset;
  height: 100%;
}
.test-video-wrap .yt-facade img {
  object-position: top center;
}

/* Método — 16:9 */
.method-video-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.method-video-inner .yt-facade {
  aspect-ratio: unset;
  height: 100%;
}

/* ── MODAL WHATSAPP (classes — antes inline) ── */
.wa-overlay{display:none;position:fixed;inset:0;z-index:1000;background:rgba(0,0,0,.85);backdrop-filter:blur(4px)}
.wa-modal{display:none;position:fixed;top:50%;left:50%;transform:translate(-50%,-48%) scale(.96);z-index:1001;width:min(480px,94vw);background:#fff;border-radius:16px;border:2px solid rgba(251,184,22,.4);box-shadow:0 32px 80px rgba(0,0,0,.5);overflow:hidden;opacity:0;transition:transform .3s cubic-bezier(.34,1.26,.64,1),opacity .25s ease}
.wa-modal-head{background:#8d191b;padding:16px 20px;display:flex;align-items:center;justify-content:space-between}
.wa-modal-title{display:flex;align-items:center;gap:10px}
.wa-modal-title span{font-family:'Bebas Neue',sans-serif;font-size:1rem;letter-spacing:.1em;color:#fbb816}
.wa-modal-close{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.15);border:1.5px solid rgba(255,255,255,.4);color:#fff;font-size:1.1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;line-height:1}
.wa-modal-body{padding:28px 28px 24px}
.wa-modal-body>p{font-family:'Sora',sans-serif;font-size:.93rem;color:#4a2a2a;margin-bottom:20px;line-height:1.6}
.wa-form{display:flex;flex-direction:column;gap:12px}
.wa-form input,.wa-form textarea{background:#faf8f4;border:1.5px solid rgba(141,25,27,.2);border-radius:10px;padding:13px 16px;font-family:'Sora',sans-serif;font-size:.92rem;color:#1a0a0a;outline:none}
.wa-form textarea{resize:none}
.wa-form button{background:#25D366;color:#fff;font-family:'Bebas Neue',sans-serif;font-size:1.05rem;letter-spacing:.06em;padding:15px;border:none;border-radius:50px;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:10px}
.wa-success{display:none;text-align:center;padding:20px 0}
.wa-success .wa-ok{font-size:2.5rem;margin-bottom:12px}
.wa-success .wa-t1{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;color:#8d191b;letter-spacing:.04em;margin-bottom:8px}
.wa-success .wa-t2{font-family:'Sora',sans-serif;font-size:.9rem;color:#4a2a2a}

/* ── RODAPÉ EM LINHA ÚNICA ── */
.footer-line {
  display: flex; align-items: center; gap: 26px;
  padding: 18px 6%;
  flex-wrap: wrap;
}
.footer-logo-sm { height: 32px; width: auto; opacity: .95; flex-shrink: 0; }
.footer-dados { font-family: 'Sora', sans-serif; font-size: .74rem; color: var(--text-secondary); }
.footer-nav { display: flex; gap: 20px; margin-left: auto; }
.footer-nav a { font-family: 'Sora', sans-serif; font-size: .76rem; color: var(--text-secondary); text-decoration: none; white-space: nowrap; }
.footer-nav a:hover { color: var(--gold); }
.footer-nav .footer-wa-link { color: #25D366; }
.footer-line .footer-copy { font-size: .7rem; color: var(--muted); white-space: nowrap; }


@media (max-width: 900px) {
  .footer-line { flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 22px 6%; }
  .footer-nav { margin-left: 0; }
}
