/* ═══════════════════════════════════════════════════════════
   SOS CRIMINAL — Identidade visual
   Preto · Dourado #F5C83C · Vermelho · Glow radial
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0b0f;
  --bg-card: #16161c;
  --bg-card-hover: #1c1c24;
  --text: #f5f5f8;
  --text-muted: #b0b0ba;
  --text-dim: #707080;
  --gold: #F5C83C;
  --gold-2: #D4A73C;
  --gold-soft: rgba(245, 200, 60, 0.1);
  --red: #FF2B2B;
  --green: #2ECC71;
  --blue: #3FA7E0;
  --border: rgba(245, 200, 60, 0.15);
  --border-soft: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── GLOW DOURADO de fundo ─── */
body::before {
  content: "";
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(245,200,60,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ─── NAVEGAÇÃO ─── */
nav.top {
  position: sticky;
  top: 0;
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  padding: 12px 0;
}
nav.top .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
nav.top .brand img { height: 40px; width: 40px; }
nav.top .brand span { letter-spacing: 0.5px; }
nav.top .links {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav.top .links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
nav.top .links a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 80px 24px 64px;
  max-width: 900px;
  margin: 0 auto;
}
.hero img.logo {
  width: 140px;
  height: 140px;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 40px rgba(245,200,60,0.4));
}
.hero .pill {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero .lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: #0b0b0f;
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}

/* ─── SEÇÕES ─── */
section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
section .tag-section {
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
section h2 {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
section h2 em { color: var(--gold); font-style: italic; }
section .section-lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 56px;
}

/* ─── GRID DE RECURSOS ─── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.2s;
}
.feature:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.feature .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
}
.feature .icon.gold { background: rgba(245,200,60,0.15); }
.feature .icon.red { background: rgba(255,43,43,0.15); }
.feature .icon.green { background: rgba(46,204,113,0.15); }
.feature .icon.blue { background: rgba(63,167,224,0.15); }
.feature h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ─── PASSO A PASSO ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
}
.step .num {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: 14px; }

/* ─── PLANOS ─── */
.planos-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg-card);
  border-radius: 100px;
  padding: 6px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-soft);
}
.planos-tabs button {
  flex: 1;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.planos-tabs button.active {
  background: var(--gold);
  color: #0b0b0f;
}

.planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.plano {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}
.plano.destaque {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(245,200,60,0.05), var(--bg-card));
  transform: scale(1.02);
}
.plano .badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--gold);
  color: #0b0b0f;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.plano .badge.gratis {
  background: var(--green);
  color: #0b0b0f;
  right: auto;
  left: 24px;
}
.plano h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plano .subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.plano .price {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plano .price small {
  font-family: -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.plano ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.plano li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plano li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── TEXTO IMPORTANTE APPLE (renovação automática) ─── */
.legal-block {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 24px;
}
.legal-block strong { color: var(--text); }
.legal-block a { color: var(--gold); }

/* ─── TECNOLOGIA / SELOS ─── */
.selos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.selo {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 16px;
}
.selo .icon-big { font-size: 32px; margin-bottom: 12px; }
.selo strong {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.selo span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── CTA FINAL ─── */
.cta-final {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(245,200,60,0.05));
  border-top: 1px solid var(--border-soft);
}
.cta-final h2 { margin-bottom: 24px; }
.cta-final .contatos {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ─── DISCLAIMER ─── */
.disclaimer {
  background: rgba(255, 43, 43, 0.05);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 32px auto;
  max-width: 800px;
  font-size: 14px;
  color: var(--text-muted);
}
.disclaimer strong { color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: #07070a;
  padding: 60px 24px 32px;
  border-top: 1px solid var(--border-soft);
}
footer .inner {
  max-width: 1100px;
  margin: 0 auto;
}
footer .brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
footer .brand-block img { height: 48px; width: 48px; }
footer .brand-block strong {
  font-size: 18px;
  letter-spacing: 0.5px;
}
footer .descricao {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 600px;
}
footer .empresa {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}
footer .empresa strong { color: var(--text-muted); }
footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
footer h5 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { padding: 6px 0; }
footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); }
footer .copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 700px) {
  nav.top .links { display: none; }
  .hero h1 { font-size: 36px; }
  .hero .lead { font-size: 17px; }
  section h2 { font-size: 30px; }
  .plano.destaque { transform: none; }
}
