/* ==========================================================================
   Tokens de design — EDITE AQUI cores, fontes e espaçamentos.
   (O web designer pode mudar tudo deste bloco com segurança.)
   ========================================================================== */
:root {
  /* Cores */
  --navy:    #0a2540;
  --navy-2:  #143458;
  --orange:  #ff9600;
  --mint:    #00ffc8;
  --teal:    #00d4ff;
  --white:   #ffffff;
  --black:   #000000;

  --bg:        var(--navy);
  --text:      var(--white);
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-mute: rgba(255, 255, 255, 0.55);
  --accent:    var(--orange);
  --accent-2:  var(--mint);
  --card-bg:   rgba(0, 0, 0, 0.35);
  --card-border: rgba(255, 255, 255, 0.12);

  /* Tipografia */
  --font: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaçamento / forma */
  --radius:    1rem;
  --radius-sm: .625rem;
  --maxw:      72rem;
  --section-y: 4.5rem;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-y) 0; position: relative; z-index: 1; }
.section--tint { background: rgba(255, 255, 255, 0.03); }
.eyebrow {
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 .75rem;
}
.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.1;
  letter-spacing: -0.02em; margin: 0 0 1.5rem; font-weight: 600;
}
.lead { font-size: 1.125rem; color: var(--text-soft); max-width: 48rem; }

/* Fundo decorativo */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 255, 200, 0.14), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(0, 212, 255, 0.16), transparent 42%),
    radial-gradient(circle at 70% 92%, rgba(255, 150, 0, 0.12), transparent 45%);
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-block; appearance: none; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 1.0625rem;
  letter-spacing: .02em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 1.5rem; border-radius: var(--radius-sm); color: var(--black);
  background: linear-gradient(180deg, var(--accent), #e07e00);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 6px 18px rgba(255, 150, 0, 0.35);
  transition: transform .08s ease, filter .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .65; cursor: not-allowed; }
.btn:focus-visible { outline: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 0 0 3px rgba(255, 150, 0, 0.45); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); box-shadow: none;
}

/* ==========================================================================
   Cabeçalho
   ========================================================================== */
.site-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0;
}
.site-header .brand { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; }
.site-header .brand .accent { color: var(--accent); }
.site-header .btn { padding: .625rem 1rem; font-size: .9rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 3rem 0 var(--section-y); position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }

.badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .75rem;
  border-radius: 999px; background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.45); color: var(--teal);
  font-weight: 700; font-size: .8125rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.badge .pulse {
  width: .5rem; height: .5rem; border-radius: 999px; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55); animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}
.hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 3.5rem); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 1.25rem; font-weight: 400;
}
.hero h1 strong { font-weight: 700; color: var(--accent); }
.hero .sub { font-size: 1.2rem; color: var(--text-soft); margin: 0 0 1.25rem; max-width: 34rem; }
.hero .intro { color: var(--text-soft); margin: 0 0 2rem; max-width: 34rem; }

/* ==========================================================================
   Grids de conteúdo (benefícios, diferenciais, prova social)
   ========================================================================== */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 1.5rem;
}
.card h3 { margin: 0 0 .5rem; font-size: 1.15rem; font-weight: 600; }
.card p { margin: 0; color: var(--text-soft); }

.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.list-check li { display: flex; gap: .75rem; align-items: flex-start; color: var(--text-soft); }
.list-check li::before {
  content: "✓"; color: var(--navy); background: var(--accent-2);
  width: 1.5rem; height: 1.5rem; border-radius: 999px; flex: 0 0 auto;
  display: grid; place-items: center; font-weight: 700; font-size: .85rem;
}

/* Credibilidade — stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stats .stat { text-align: center; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.25rem .5rem; }
.stats .stat .value { font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.stats .stat .label { font-size: .85rem; color: var(--text-mute); }

/* Depoimentos */
.testimonial { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.5rem; }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--text); }
.testimonial .author { font-weight: 600; }
.testimonial .role { color: var(--text-mute); font-size: .9rem; }

/* ==========================================================================
   Formulário
   ========================================================================== */
.form-wrap { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 1.75rem; backdrop-filter: blur(6px); }
form.lead-form { display: flex; flex-direction: column; gap: .9rem; }
.field { display: flex; flex-direction: column; gap: .375rem; }
.field label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }
.field input {
  appearance: none; width: 100%; padding: .875rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(0, 0, 0, 0.45);
  color: var(--white); font-family: inherit; font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.38); }
.field input:focus {
  outline: 0; border-color: var(--accent-2); background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.18);
}
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--text-mute); }
.consent input { margin-top: .2rem; }
.consent a { color: var(--text-soft); }

/* Honeypot — escondido de humanos, visível para bots. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fine { margin: .25rem 0 0; font-size: .8125rem; color: var(--text-mute); text-align: center; }
.error { display: none; margin: .25rem 0 0; font-size: .85rem; font-weight: 600; color: var(--accent); }
.error.is-on { display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq details {
  border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: .75rem; background: var(--card-bg);
}
.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .75rem 0 0; color: var(--text-soft); }

/* ==========================================================================
   CTA final + Rodapé
   ========================================================================== */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: .75rem; }
.final-cta p { color: var(--text-soft); margin: 0 auto 2rem; max-width: 38rem; }

.site-footer { border-top: 1px solid var(--card-border); padding: 2rem 0; color: var(--text-mute); font-size: .9rem; }
.site-footer .links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-footer .links a { color: var(--text-soft); text-decoration: none; }
.site-footer .links a:hover { text-decoration: underline; }
.site-footer .row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Página simples (obrigado / legais)
   ========================================================================== */
.simple-page { min-height: 100vh; display: grid; place-items: center; padding: 3rem 1.5rem; position: relative; z-index: 1; }
.simple-card { max-width: 36rem; text-align: center; }
.simple-card .check {
  width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 999px;
  background: var(--accent-2); display: grid; place-items: center; color: var(--navy);
}
.simple-card .check svg { width: 2rem; height: 2rem; }
.simple-card h1 { font-size: 2rem; margin: 0 0 1rem; }
.simple-card p { color: var(--text-soft); margin: 0 0 2rem; }
.simple-card .actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

.legal { max-width: 48rem; margin: 0 auto; padding: 3rem 1.5rem; position: relative; z-index: 1; }
.legal h1 { font-size: 2rem; }
.legal h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal .note { background: rgba(255,150,0,0.1); border: 1px solid rgba(255,150,0,0.35); border-radius: var(--radius-sm); padding: 1rem; color: var(--text-soft); }

/* ==========================================================================
   Acessibilidade / responsivo
   ========================================================================== */
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
@media (max-width: 480px) {
  :root { --section-y: 3rem; }
  .form-wrap { padding: 1.25rem; }
  .stats { grid-template-columns: 1fr; }
}
