/* style.css */
:root{
  --primary:#7C3AED;
  --accent:#22D3EE;
  --pink:#FB7185;
  --yellow:#FDE047;
  --cta:#FF7A00;
  --bg:#070A1A;
  --text:#F2F6FF;
  --muted:#B9C4E6;
  --border:rgba(255,255,255,.14);
  --shadow:0 18px 60px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1160px, 92%); margin:0 auto; }

.topbar{
  position: sticky; top:0; z-index:10;
  backdrop-filter: blur(12px);
  background: rgba(7,10,26,.70);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}
.brand{ display:flex; gap: 12px; align-items:center; }
.logo{
  width:48px; height:48px; border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
  box-shadow: var(--shadow);
  font-weight: 1000;
  letter-spacing: .3px;
}
.brand-name{ font-weight: 1000; letter-spacing:.2px; font-size: 18px; }
.ia{
  background: linear-gradient(90deg, var(--yellow), var(--cta), var(--accent), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  font-weight: 1000;
}
.brand-sub{ font-size: 12px; color: var(--muted); margin-top:3px; }

.nav{ display:flex; gap: 14px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.nav a{ font-weight: 900; opacity:.95; }
.nav a:hover{ opacity:1; text-decoration: underline; }

.hero{
  padding: 64px 0 28px;
  background:
    radial-gradient(1200px 520px at 12% 18%, rgba(124,58,237,.40), transparent 60%),
    radial-gradient(1100px 520px at 85% 15%, rgba(34,211,238,.30), transparent 60%),
    radial-gradient(900px 460px at 78% 80%, rgba(255,122,0,.24), transparent 60%),
    radial-gradient(900px 460px at 20% 85%, rgba(251,113,133,.18), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 18px;
  align-items:start;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.8vw, 50px);
  line-height: 1.03;
}
.grad{
  background: linear-gradient(90deg, var(--yellow), var(--cta), var(--accent), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.proof{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 12px 0 10px;
}
.proof-item{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
}

.cta{ display:flex; gap: 10px; flex-wrap:wrap; margin: 14px 0 10px; }

.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--cta);
  color: #111;
  font-weight: 1000;
  border: 0;
  cursor:pointer;
  box-shadow: 0 12px 34px rgba(255,122,0,.20);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.09);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-sm{ padding: 10px 12px; border-radius: 12px; }
.btn-full{ width:100%; text-align:center; }

.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.badge{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--muted);
}

.section{ padding: 52px 0; }
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2{ margin:0 0 8px; font-size: 30px; letter-spacing:.1px; }
.sub{ margin:0 0 18px; color: var(--muted); line-height: 1.6; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.card{
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.icon{ font-size: 30px; margin-bottom: 6px; }
h3{ margin: 6px 0 8px; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }

.bullets{ margin: 0; padding-left: 18px; line-height: 1.75; color: var(--muted); }
.check{ margin: 12px 0 0; padding-left: 18px; line-height: 1.75; color: var(--muted); }

.hero-card .mini{
  margin-top: 6px;
  display:grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.line{
  height:1px;
  background: var(--border);
  margin: 14px 0;
}
.note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.highlight{
  background:
    radial-gradient(650px 280px at 15% 20%, rgba(253,224,71,.12), transparent 60%),
    radial-gradient(650px 280px at 85% 15%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(650px 280px at 70% 90%, rgba(251,113,133,.10), transparent 60%),
    rgba(255,255,255,.075);
  border: 1px solid rgba(253,224,71,.22);
}

.cta-section{
  background:
    radial-gradient(1000px 440px at 20% 20%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(1000px 440px at 80% 60%, rgba(34,211,238,.18), transparent 60%);
  border-top: 1px solid var(--border);
}
.cta-box{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.contact-card{ padding: 16px; }

.contact-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--text);
  transition: transform .15s ease, filter .15s ease;
}
.chip:hover{ filter: brightness(.98); transform: translateY(-1px); }

.mini-divider{
  height:1px;
  background: var(--border);
  margin: 14px 0;
}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap: 14px; flex-wrap:wrap;
}
.footer-links{ display:flex; gap: 12px; }
.footer-links a{ color: var(--muted); font-weight: 900; }
.footer-links a:hover{ color: var(--text); text-decoration: underline; }

@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .cta-box{ grid-template-columns: 1fr; }
}

/* =========================================================
   FIX MOBILE (SEM MUDAR CORES / ESTILO):
   No celular o menu quebrava em várias linhas e deixava o topo gigante.
   Aqui a gente mantém o desktop igual e, no mobile, mostra só o CTA.
   ========================================================= */
@media (max-width: 940px){

  /* Deixa o topo mais limpo no celular (evita estourar altura) */
  .brand-sub{ display:none; }

  /* Impede o "menu gigante" no mobile: some os links... */
  .nav a{ display:none; }

  /* ...e mantém só o botão "Agendar conversa" */
  .nav a.btn{ display:inline-block; white-space:nowrap; }

  /* Evita que o header fique alto demais */
  .nav{ flex-wrap:nowrap; }
}
