:root{
  --bg:#fbfbff;
  --panel:#ffffff;
  --text:#1f2937;
  --muted:#5b6575;

  --brand:#7c5cff;     /* roxo suave */
  --brand2:#22c55e;    /* verde suave */
  --brand3:#ffb703;    /* amarelo quente */

  --border:rgba(31,41,55,.10);
  --shadow:0 18px 40px rgba(31,41,55,.10);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(34,197,94,.14), transparent 55%),
    radial-gradient(600px 300px at 70% 110%, rgba(255,183,3,.18), transparent 55%),
    linear-gradient(180deg,#fff, #fbfbff 40%, #fff);
}

a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 18px}
strong{color:#111827}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;min-height:72px;gap:14px}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-dot{
  width:12px;height:12px;border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:0 0 0 6px rgba(124,92,255,.12);
}
.brand-text{font-weight:900;letter-spacing:.2px}

.menu-btn{
  display:none;
  background:#fff;border:1px solid var(--border);
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

.nav{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.nav a{color:rgba(31,41,55,.85);text-decoration:none;font-weight:700}
.nav a:hover{color:#111827}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:14px;border:0;cursor:pointer;
  background:var(--brand);color:#fff;font-weight:900;
  box-shadow:0 12px 26px rgba(124,92,255,.20);
  text-decoration:none;
}
.btn:hover{filter:brightness(1.03)}
.btn.ghost{
  background:#fff;color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}

.section{padding:56px 0}
.section.alt{
  background:rgba(124,92,255,.05);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

h1{font-size:44px;line-height:1.05;margin:12px 0}
h2{font-size:32px;margin:0 0 10px}
h3{margin:0 0 8px}
p{color:var(--muted);line-height:1.65;margin:0 0 12px}
.lead{max-width:880px}

.pill{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px dashed rgba(124,92,255,.40);
  background:rgba(124,92,255,.06);
  color:#3b4b6a;
  font-size:13px;
  font-weight:800;
}

/* HERO LÚDICO */
.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:stretch
}
.hero-copy .subtitle{
  font-size:16px;
  color:#3b4b6a;
  max-width:58ch;
}

.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0}
.badges{display:flex;gap:10px;flex-wrap:wrap}
.badges span{
  font-size:13px;
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);
  color:#3b4b6a;
  background:#fff;
  font-weight:700;
}

/* “cartões” com ícone */
.icon-card{
  display:flex;gap:12px;align-items:flex-start;
}
.icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.25);
  font-size:20px;
  flex:0 0 auto;
}

/* Foto */
.profile{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:14px;
  align-items:center;
}
.avatar{
  width:140px;height:140px;border-radius:28px;
  object-fit:cover;
  border:1px solid var(--border);
  box-shadow:0 12px 26px rgba(31,41,55,.12);
}
.profile .name{font-weight:1000;font-size:20px;margin:0}
.profile .role{margin:6px 0 0;color:var(--muted);font-weight:700}

/* grids existentes */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px;align-items:start}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px}
.step{
  padding:16px;border:1px solid var(--border);
  border-radius:16px;background:#fff;
}
.step-n{
  width:36px;height:36px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(124,92,255,.10);
  border:1px solid rgba(124,92,255,.25);
  margin-bottom:10px;
  font-weight:1000;
  color:#2b2f45;
}

.faq details{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background:#fff;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:1000}

.form{max-width:860px}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
label{display:block;margin:12px 0 6px;color:#3b4b6a;font-weight:900;font-size:13px}

input,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(124,92,255,.55)}
textarea{resize:vertical}

.lgpd{
  display:flex;gap:10px;align-items:flex-start;
  margin:14px 0 6px;
}
.lgpd input{width:18px;height:18px;margin-top:3px}
.lgpd a{color:#3b82f6;text-decoration:underline}

.honeypot{display:none!important}

.contact-card .divider{
  height:1px;background:var(--border);
  margin:16px 0;
}

.footer{
  padding:24px 0;
  background:#fff;
  border-top:1px solid var(--border);
}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.muted{color:var(--muted);font-size:14px}
.muted.small{font-size:13px}

@media (max-width: 980px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .profile{grid-template-columns:120px 1fr}
  .avatar{width:120px;height:120px}

  .menu-btn{display:inline-flex}
  .nav{
    display:none;
    position:absolute;
    top:72px; right:18px; left:18px;
    padding:12px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex;flex-direction:column;align-items:stretch}
  .nav a{padding:10px 10px;border-radius:12px}
  .nav a:hover{background:rgba(124,92,255,.06)}
}
