:root{
  --bg:#ffffff;
  --text:#111;
  --muted:#666;
  --brand:#7b2cf4;
  --brand-2:#22c55e;
  --stroke:#eaeaea;
  --shadow:0 6px 30px rgba(0,0,0,.06);
  --radius:16px;
  --radius-lg:20px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color:var(--text); background:var(--bg); line-height:1.5;
}
.container{width:min(1120px, 92%); margin:auto}

/* Header */
.site-header{position:sticky; top:0; z-index:30; background:#fff; border-bottom:1px solid var(--stroke)}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:14px; align-items:flex-start; text-decoration:none; color:inherit}
.logo{display:inline-grid; place-items:center; width:38px; height:38px; border-radius:12px; background:var(--brand); color:#fff; font-weight:800}
.logo.small{width:30px; height:30px; border-radius:10px}
.brand-text{display:flex; flex-direction:column; gap:4px}
.brand-name{font-weight:800; letter-spacing:.5px}
.brand-payoff{font-size:.9rem; color:#6b7280}
.brand-tags{display:flex; gap:10px; align-items:center; color:#6b7280; font-size:.78rem; margin-top:4px; flex-wrap:wrap}
.brand-tags .dot{opacity:.55}

/* Hero */
.gradient{background:linear-gradient(180deg, #f8edff 0%, #fff 45%)}
.hero-inner{padding:64px 0 28px}
.title{font-size:clamp(28px, 4vw, 44px); line-height:1.08; font-weight:900; letter-spacing:-0.3px; max-width:980px; margin:0 0 10px}
.subtitle{color:var(--muted); margin:6px 0 22px}

/* Section */
.section{padding:56px 0}
.section.alt{background:#fafafa}
.section-title{font-size:clamp(22px,3vw,28px); margin:0 0 6px; font-weight:800}
.section-subtitle{margin:0 0 22px; color:var(--muted)}

/* Cards */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{position:relative; background:#fff; border:1px solid var(--stroke); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow); display:flex; flex-direction:column}
.card-featured{border-color:#a855f7}
.badge{position:absolute; top:-12px; left:16px; background:#fff; border:1px solid #d8c2ff; color:#7b2cf4; padding:6px 10px; border-radius:999px; font-size:.75rem; font-weight:800}
.card-title{margin:8px 0 0; font-weight:800}
.card-note{color:var(--muted); font-size:.82rem; margin:10px 0 0}
.card-price{font-size:1.8rem; font-weight:800; margin:0 0 12px}
.list{margin:0 0 18px 0; padding-left:18px}

/* Form */
.form{background:#fff; border:1px solid var(--stroke); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow)}
.grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.field{display:flex; flex-direction:column; gap:6px}
.field-full{grid-column:1/-1}
.field span{font-weight:700; font-size:.9rem}
input,select,textarea{
  width:100%; padding:12px 14px; border:1px solid #dcdcdc; border-radius:12px; font:inherit; background:#fff
}
input:focus,select:focus,textarea:focus{outline:none; border-color:#b08cf8; box-shadow:0 0 0 4px rgba(160,120,255,.12)}
.form-actions{display:flex; gap:12px; margin-top:10px}
.privacy-note,.small-hint{color:var(--muted); font-size:.86rem}

/* Buttons */
.btn{display:inline-block; padding:12px 18px; border-radius:999px; text-decoration:none; font-weight:700; border:1px solid transparent}
.btn-primary{background:var(--brand); color:#fff; box-shadow:var(--shadow)}
.btn-secondary{background:#fff; border:1px solid #cfcfcf}
.btn-whatsapp{background:var(--brand-2); color:#fff}
.btn-block{display:block; width:100%; text-align:center}

/* Footer */
.site-footer{border-top:1px solid var(--stroke); background:#fff; padding:26px 0}
.footer-inner{display:flex; justify-content:space-between; align-items:center}
.footer-brand{display:flex; gap:10px; align-items:center}
.footer-title{font-weight:800}
.footer-sub{color:var(--muted); font-size:.9rem}

/* Responsive */
@media (max-width: 960px){
  .cards{grid-template-columns:1fr; gap:14px}
  .brand-tags{display:none}
  .grid{grid-template-columns:1fr}
}
