/* Mãe Legal — estilos básicos (cores brand-friendly) */
:root {
  --brand: #DD2174;
  --sage: #9DC183;
  --light: #F5F5F5;
  --text: #111111;
  --muted: #666666;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body { font-family: ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Noto Sans', 'Apple Color Emoji','Segoe UI Emoji'; color: var(--text); background: var(--light); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.header { position: sticky; top:0; z-index:10; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(0,0,0,.05); }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:16px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand-name { font-weight: 800; line-height:1.1; }
.brand-sub { font-size:12px; color: var(--muted); }
.nav a { font-size: 14px; margin-left: 20px; }
.cta-btn { display:inline-flex; align-items:center; gap:8px; background: var(--sage); padding:10px 14px; border-radius: 12px; font-weight: 700; }
.hero { background: linear-gradient(180deg,#fff, var(--light)); padding: 56px 0; }
h1 { font-size: 40px; margin: 12px 0; }
.lead { color:#333; font-size: 18px; line-height:1.6; }
.btn-primary { background: var(--brand); color:#fff; border-radius: 12px; padding:10px 14px; display:inline-flex; align-items:center; gap:8px; font-weight:700; }
.btn-secondary { background: var(--sage); color:#111; border-radius: 12px; padding:10px 14px; display:inline-flex; align-items:center; gap:8px; font-weight:700; }
.grid-2 { display:grid; grid-template-columns:1fr; gap:24px; }
.grid-3 { display:grid; grid-template-columns:1fr; gap:24px; }
.card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius: 16px; padding: 20px; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.section { padding: 56px 0; }
.kicker { color: var(--sage); font-weight:700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.section h2 { font-size: 32px; margin: 8px 0 6px; }
.section p.sub { color:#444; }
.stats { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.stat { text-align:center; background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px; padding:20px; }
.stat .big { font-size: 28px; font-weight:800; }
.testimonials { display:grid; grid-template-columns:1fr; gap:16px; margin-top:16px; }
blockquote { margin:0; color:#333; }
.footer { background:#fff; border-top:1px solid rgba(0,0,0,.06); }
.footer-inner { display:grid; grid-template-columns:1fr; gap:16px; padding: 40px 0; }
.newsletter { display:flex; gap:8px; }
.newsletter input { flex:1; padding:10px; border-radius: 10px; border:1px solid #d0d0d0; }
.newsletter button { border-radius: 10px; background: var(--sage); padding:10px 14px; font-weight:700; }
.badge { display:inline-block; background: var(--brand); color:#fff; padding:4px 10px; border-radius: 999px; font-size:12px; }
.input, .select, .textarea { width:100%; padding:10px 12px; border-radius: 12px; border:1px solid #d0d0d0; background:#fff; }
label span { display:block; font-size: 13px; font-weight:700; margin-bottom: 6px; }
.hint { font-size:12px; color:#777; }
.result { background: var(--light); border-radius: 12px; padding: 14px; }
.float-chat { position:fixed; right:16px; bottom:16px; background: var(--sage); border-radius: 999px; padding:12px 16px; font-weight:700; box-shadow:0 8px 24px rgba(0,0,0,.15); }
small.muted { color:#666; }
/* Responsive */
@media(min-width: 720px){
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .stats { grid-template-columns: repeat(4,1fr); }
  .footer-inner { grid-template-columns: 1.2fr .8fr .8fr 1fr; }
}
