
:root{
  --bg:#F8F9FA;
  --card:#FFFFFF;
  --ink:#0E3A5D;
  --muted:#5C6A78;
  --green:#1E7F43;
  --yellow:#E2A800;
  --shadow:0 10px 30px rgba(14,58,93,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:linear-gradient(180deg,#ffffff 0%,#f4f6f8 100%);
  color:var(--ink);
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  background:white;
  border-bottom:1px solid rgba(0,0,0,.05);
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; text-decoration:none}
.brand-logo{height:55px; width:auto; display:block}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  color:var(--ink);
  padding:10px 10px;
  border-radius:10px;
  font-size:14px;
}
.nav a:hover{background:rgba(14,58,93,.06)}
.nav a.active{background:rgba(14,58,93,.06)}

.hero{
  padding:78px 0;
  background:linear-gradient(90deg, rgba(30,127,67,.08), rgba(226,168,0,.08));
}

.hero-inner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.kicker{
  font-size:12px;
  font-weight:700;
  color:var(--green);
  letter-spacing:.1em;
  margin:0;
}

.hero h1{
  font-size:48px;
  margin:14px 0 10px;
  line-height:1.08;
}

.lead{
  font-size:18px;
  color:var(--muted);
  margin:0;
  max-width:65ch;
}

.hero-cta{
  margin-top:26px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  border:2px solid transparent;
  white-space:nowrap;
}

.btn-primary{
  background:var(--green);
  color:white;
  box-shadow:0 8px 20px rgba(30,127,67,.25);
}
.btn-primary:hover{filter:brightness(.98)}

.btn-ghost{
  background:transparent;
  border-color:rgba(30,127,67,.35);
  color:var(--green);
}
.btn-ghost:hover{background:rgba(30,127,67,.08)}

.btn-small{
  padding:10px 14px;
  border-width:0;
  border-radius:999px;
}

.hero-badges{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.badge{
  background:#e9eef2;
  padding:8px 14px;
  border-radius:30px;
  font-weight:600;
  font-size:13px;
}

.hero-card{
  background:white;
  padding:28px;
  border-radius:16px;
  box-shadow:var(--shadow);
}

.stat-label{
  font-size:12px;
  font-weight:700;
  color:#6b7a88;
  letter-spacing:.06em;
}

.stat-value{
  margin-top:6px;
  font-weight:700;
  font-size:18px;
}

.divider{
  height:1px;
  background:#e6e9ed;
  margin:18px 0;
}

.section{padding:60px 0}
.section-alt{background:linear-gradient(180deg, rgba(14,58,93,.03), rgba(14,58,93,0))}
.section-head h2{margin:0; font-size:28px}
.section-head p{margin:12px 0 0; color:var(--muted); max-width:85ch}

.grid{display:grid; gap:16px; margin-top:22px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--card);
  padding:20px;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.card h3{margin:0; font-size:18px}
.card p{margin:10px 0 0; color:var(--muted)}
.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

.cta-strip{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  background:white;
  border-radius:16px;
  box-shadow:var(--shadow);
}
.cta-strip h3{margin:0}
.cta-strip p{margin:6px 0 0; color:var(--muted)}

.site-footer{
  margin-top:80px;
  background:var(--ink);
  color:white;
  text-align:center;
  padding:40px 0;
}

.footer-inner{display:flex; flex-direction:column; gap:10px; align-items:center}
.footer-links a{color:white; text-decoration:none; font-weight:600}
.footer-meta{opacity:.92}
.sep{opacity:.7; padding:0 8px}

.doc{padding:46px 0 70px}
.doc-card{
  background:white;
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.doc-head{
  padding:26px;
  background:linear-gradient(90deg, rgba(30,127,67,.08), rgba(226,168,0,.08));
  border-bottom:1px solid rgba(0,0,0,.05);
}
.doc-head h1{margin:0; font-size:30px}
.doc-sub{margin:10px 0 0; color:var(--muted)}
.doc-update{margin:8px 0 0; font-size:13px; color:var(--muted)}
.doc-body{padding:26px}
.doc-body h2{margin:22px 0 8px; font-size:18px}
.doc-body p{margin:0 0 10px; color:var(--muted); line-height:1.7}
.doc-list{margin:8px 0 10px; padding-left:18px; color:var(--muted)}
.doc-actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
  background:#25D366;
  color:white;
  text-decoration:none;
  font-weight:800;
  padding:12px 14px;
  border-radius:999px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  gap:10px;
}
.wa-dot{width:10px;height:10px;border-radius:50%; background:rgba(255,255,255,.9)}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero h1{font-size:40px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .cta-strip{flex-direction:column; align-items:flex-start}
}

/* Ajuste botão Entrar superior direito */
.nav .btn-small {
  background: #1E7F43 !important;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 10px 18px;
}

.nav .btn-small:hover {
  filter: brightness(0.95);
}
