:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #1a2233;
  --muted: #5c6b7f;
  --brand: #0e7c66;
  --brand-dark: #0a5c4c;
  --line: #e6e9ef;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(20, 30, 50, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand span { color: var(--brand); }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
}
.nav a:hover { color: var(--brand); }
@media (max-width: 560px) { .nav { display: none; } }

/* Layout de 1 dobra: header + hero + footer cabem na tela, footer sempre visível */
body { display: flex; flex-direction: column; min-height: 100vh; }
main.hero-section { flex: 1 0 auto; }

/* Hero — 1 dobra, botão visível sem rolar */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.hero-content {
  text-align: center;
  max-width: 620px;
}
.kicker {
  color: var(--brand);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
h1 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
@media (max-width: 560px) { h1 { font-size: 27px; } }
.lead {
  font-size: 18px;
  color: #2c3648;
  margin: 0 auto 8px;
  max-width: 520px;
}
p { margin: 0 0 16px; }

/* CTA */
.cta-wrap { text-align: center; margin: 34px 0 0; }
.cta-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(14, 124, 102, 0.28);
  transition: transform 0.12s ease, background 0.2s ease;
}
.cta-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }
.cta-note { color: var(--muted); font-size: 13px; margin-top: 12px; }

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 26px 0;
  margin-top: 20px;
}
.site-footer p { color: var(--muted); font-size: 13px; text-align: center; margin: 0 0 6px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--brand); }

/* ============ LEGAL PAGES ============ */
.legal { padding: 40px 20px 60px; max-width: 760px; }
.legal h1 { font-size: 30px; line-height: 1.25; margin: 0 0 8px; }
.legal .byline {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.legal h2 { font-size: 19px; margin: 30px 0 10px; }
.legal p { margin: 0 0 14px; color: #2c3648; font-size: 15.5px; }
.legal a { color: var(--brand); }

/* ============ COOKIE BANNER (LGPD) ============ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 900px;
  margin: 0 auto;
  background: #1a2233;
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  z-index: 90;
  font-size: 14px;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; flex: 1; line-height: 1.5; }
.cookie-banner a { color: #6fcfbb; text-decoration: underline; }
.cookie-accept {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-accept:hover { background: var(--brand-dark); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============ VSL PAGE (fundo preto — converte mais) ============ */
.vsl-dark { background: #000; }
.vsl-dark .site-header {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
}
.vsl-dark .brand { color: #fff; }
.vsl-dark .brand span { color: #14a085; }
.vsl-dark .kicker { color: #14a085; }
.vsl-dark .vsl-title { color: #fff; }
.vsl-dark .vsl-note { color: #8a8a8a; }
.vsl-dark .site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
}
.vsl-dark .site-footer p { color: #6a6a6a; }
.vsl-dark .footer-links a { color: #6a6a6a; }
.vsl-dark .footer-links a:hover { color: #14a085; }

.vsl-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
}
.vsl-wrap {
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.vsl-title {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 6px 0 18px;
}
.vsl-player {
  width: 100%;
  margin: 0 auto;
}
.vsl-note {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}

/* ============ AGE GATE (Etapa 2) ============ */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 34, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.gate-overlay.active { display: flex; }
.gate-box {
  background: var(--surface);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 34px 28px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: gateIn 0.28s ease;
}
@keyframes gateIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gate-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #eef7f4;
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  margin: 0 auto 16px;
}
.gate-box h2 { font-size: 22px; margin: 0 0 10px; }
.gate-box p { color: var(--muted); font-size: 15px; margin: 0 0 24px; }

/* Slider */
.slider-track {
  position: relative;
  height: 62px;
  border-radius: 14px;
  background: #eef1f6;
  border: 1px solid var(--line);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.slider-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 62px;
  background: linear-gradient(90deg, #0e7c66, #14a085);
  border-radius: 14px;
  z-index: 1;
  transition: background 0.2s ease;
}
.slider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  z-index: 2;
  pointer-events: none;
  padding-left: 40px;
}
.slider-handle {
  position: absolute;
  left: 4px; top: 4px;
  width: 54px;
  height: 54px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 3;
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
}
.slider-handle:active { cursor: grabbing; }
.slider-track.done .slider-label { color: #fff; }
.slider-track.done .slider-handle { color: var(--brand); }

.gate-decline {
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13.5px;
  text-decoration: underline;
  cursor: pointer;
}
.gate-fineprint { font-size: 12px; color: var(--muted); margin-top: 14px; }
