/* Aurora WebGL (JS puro) — camada no topo, com fade (igual referência) */
.aurora-wrap{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 72vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,.85) 35%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,.85) 35%, rgba(0,0,0,0) 100%);
}

#aurora-canvas{
  width: 100%;
  height: 100%;
  display: block;
}

/* conteúdo acima do aurora */
header,
main,
footer{
  position: relative;
  z-index: 1;
}

:root{
  --bg: #0b0c0f;
  --panel: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --accent: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 18px;
  --font-title: 'Space Grotesk', Inter, system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3,
.brand__name{
  font-family: var(--font-title);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.nav{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11,12,15,.55);
  border-bottom: 1px solid var(--border);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,255,255,.10);
}
.brand__name{ font-size: 14px; }

.nav__links{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.nav__links a{
  opacity: .9;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav__links a:hover{
  background: rgba(255,255,255,.06);
  opacity: 1;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #fff;
  color: #0b0c0f;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.btn--full{ width: 100%; }

.hero{
  padding: 54px 0 26px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 26px;
  align-items: start;
}
.badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 14px;
}
h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -.6px;
}
.accent{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
}
.cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

/* ✅ Stats compactos (não fica “separado”) */
.stats{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
.stat{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}
.stat__num{ line-height: 1; display: grid; place-items: center; }
.stat__num .icon{
  width: 22px;
  height: 22px;
  color: rgba(190, 120, 255, .95);
  filter: drop-shadow(0 0 6px rgba(190,120,255,.25));
}
.stat__txt{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card__title{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.checklist li{ margin: 8px 0; }

.card__divider{
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

/* Spotlight Card (hover premium) */
[data-spotlight]{
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  --spot: rgba(190,120,255,.22);
}
[data-spotlight] > *{
  position: relative;
  z-index: 2; /* ✅ conteúdo acima do glow */
}
[data-spotlight]::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), var(--spot), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
[data-spotlight]::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}
[data-spotlight]:hover::before,
[data-spotlight]:focus-within::before{ opacity: 1; }
[data-spotlight]:hover::after,
[data-spotlight]:focus-within::after{ opacity: 1; }

/* ✅ mais suave nos cards pequenos */
.mini[data-spotlight]{ --spot: rgba(190,120,255,.16); }

@media (hover: none){
  [data-spotlight]::before{ opacity: .30; }
  [data-spotlight]::after{ opacity: .35; }
}

.section{
  padding: 46px 0;
}
.section--alt{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

.section__head{
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

/* ✅ FIX: títulos grandes só das seções (não afeta outros h2) */
.section__head .section-title{
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  background: linear-gradient(90deg, #ffffff, #c9a7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.muted{ color: var(--muted); }
.small{ font-size: 12px; }

.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mini{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.mini h3{ margin: 0 0 6px; font-size: 14px; }
.mini p{ margin: 0; font-size: 13px; }

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.steps li{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.step__num{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 700;
}

.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__box{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.contact__actions{
  display: grid;
  gap: 10px;
  margin: 12px 0 6px;
}

.form{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
label{ display: grid; gap: 6px; margin-bottom: 12px; }
label span{ font-size: 12px; color: rgba(255,255,255,.80); }
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,255,255,.28);
}

.footer{
  padding: 26px 0 34px;
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* Selos de credibilidade */
.trust{
  padding: 26px 0 18px;
  border-top: 1px solid var(--border);
}

.trust__grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* ícones minimalistas */
.trust__icon{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  flex: 0 0 auto;
}

.trust__icon .icon{
  width: 18px;
  height: 18px;
  color: rgba(190,120,255,.95);
  filter: drop-shadow(0 0 6px rgba(190,120,255,.18));
}

/* spotlight mais suave pra não exagerar */
.trust__item[data-spotlight]{
  --spot: rgba(190,120,255,.14);
}

/* responsivo */
@media (max-width: 900px){
  .trust__grid{
    grid-template-columns: 1fr;
  }
  .trust__item{
    padding: 14px 14px;
  }
}

/* Responsivo */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav__links{ display: none; }
}

/* Nota técnica (Google / Cloudflare) */
.tech-note{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.tech-note strong{
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

/* mobile: mantém títulos confortáveis */
@media (max-width: 768px) {
  .section__head .section-title{
    font-size: clamp(22px, 7vw, 30px);
  }
}