:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e5e7eb;
  --brand:#d97706;  /* laranja */
  --green:#22c55e;
  --shadow:0 12px 30px rgba(2,6,23,.08);
  --radius:18px;
  --max:1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

/* ================= TOP BAR ================= */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}

.brand-badge{
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--brand);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow:0 6px 14px rgba(217,119,6,.35);
}

.brand-badge svg{
  width:22px;
  height:22px;
  color:#fff;
  fill:#fff;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-text strong{ font-weight:800; }
.brand-text small{
  color:var(--muted);
  font-size:12px;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .05s ease, box-shadow .2s ease, background .2s ease;
  user-select:none;
  white-space:nowrap;
}

.btn:active{ transform: translateY(1px); }

.btn-whats{
  background:var(--green);
  color:#fff;
  box-shadow:0 10px 20px rgba(34,197,94,.25);
}

/* ================= HERO ================= */

.hero{
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%);
  border-bottom:1px solid var(--border);
}

.hero-inner{
  padding:34px 0 26px;
  text-align:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid #fde68a;
  color:#92400e;
  font-weight:800;
  font-size:12.5px;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
}

.hero h1{
  margin:18px auto 10px;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-0.02em;
  max-width:980px;
}

.hero h1 .accent{ color:var(--brand); }

.hero p{
  margin:0 auto 18px;
  max-width:860px;
  color:var(--muted);
  font-size:clamp(14px, 1.6vw, 18px);
}

.chips{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin:18px 0;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--border);
  font-weight:700;
  font-size:13.5px;
}

.chip svg{
  width:18px;
  height:18px;
  color:var(--brand);
}

.hero-cta{
  display:flex;
  justify-content:center;
  margin:10px 0 8px;
}

.hero-note{
  color:var(--muted);
  font-size:12.5px;
}

/* ================= SECTIONS ================= */

section{ padding:46px 0; }

.section-title{
  text-align:center;
  margin-bottom:26px;
}

.section-title h2{
  margin:0 0 8px;
  font-size:clamp(22px, 2.6vw, 34px);
  letter-spacing:-0.02em;
}

.section-title p{
  margin:0 auto;
  max-width:820px;
  color:var(--muted);
}

.section-plain{ background:#fff; }

/* ================= GRID ================= */

/* base */
.grid{
  display:grid;
  gap:18px;
  align-items:stretch; /* garante cards esticando de forma consistente */
}

/* Desktop: 3 por linha (força 3 colunas em qualquer grid usado) */
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* ✅ Ajuste: mesmo a grid-2 agora vira 3 por linha no desktop */
.grid-2{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.spacer{ height:18px; }

/* ================= CARD ================= */

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 14px 30px rgba(2,6,23,.06);
  padding:18px 18px 16px;
  height:100%;
}

.card-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.iconbox{
  width:44px;
  height:44px;
  border-radius:14px;
  background:var(--brand);      /* laranja sólido */
  border:none;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  box-shadow:0 6px 14px rgba(217,119,6,.35);
}

.iconbox svg{
  width:22px;
  height:22px;
  color:#fff;
  fill:#fff;
}

.card h3{
  margin:2px 0 0;
  font-size:18px;
  letter-spacing:-0.01em;
}

.card p{
  margin:10px 0 12px;
  color:var(--muted);
  font-size:14px;
}

.examples{
  margin-top:8px;
  font-weight:800;
  font-size:13px;
}

.bullets{
  margin:8px 0 0;
  padding-left:18px;
  color:#92400e;
  font-size:13.5px;
}

.bullets li{ margin:6px 0; }

/* ================= STEPS ================= */

.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
}

.step{
  text-align:center;
  padding:18px 14px;
  border-radius:18px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:0 14px 30px rgba(2,6,23,.06);
}

.stepicon{
  width:56px;
  height:56px;
  border-radius:999px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  background:rgba(217,119,6,.12);
  border:1px solid rgba(217,119,6,.18);
}

.stepicon svg{
  width:24px;
  height:24px;
  color:var(--brand);
}

.step h3{
  margin:6px 0;
  font-size:16px;
}

.step p{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
}

.steps-note{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin-top:16px;
}

/* ================= FAQ ================= */

.faq{
  max-width:940px;
  margin:0 auto;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  box-shadow:0 14px 30px rgba(2,6,23,.05);
  overflow:hidden;
  margin-bottom:12px;
}

.faq-q{
  width:100%;
  background:transparent;
  border:0;
  text-align:left;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
  font-weight:900;
  font-size:14.5px;
}

.faq-q span{ flex:1; }

.chev{
  width:18px;
  height:18px;
  color:var(--brand);
  transition:transform .2s ease;
}

.faq-a{
  display:none;
  padding:0 16px 16px;
  color:var(--muted);
  font-size:14px;
}

.faq-item.open .faq-a{ display:block; }
.faq-item.open .chev{ transform:rotate(180deg); }

/* ================= CTA ================= */

.cta{
  background:var(--brand);
  color:#fff;
  padding:56px 0;
}

.cta-container{ max-width:980px; }

.cta h2{
  margin:0 0 10px;
  text-align:center;
  font-size:clamp(22px, 2.8vw, 36px);
  letter-spacing:-0.02em;
}

.cta p{
  margin:0 auto 18px;
  text-align:center;
  max-width:780px;
  opacity:.92;
}

.cta-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.btn-cta{
  background:#fff;
  color:#111827;
  border-color:rgba(255,255,255,.7);
  box-shadow:0 14px 26px rgba(2,6,23,.25);
  padding:12px 18px;
}

.cta-fast{
  display:flex;
  align-items:center;
  gap:10px;
}

.cta-meta{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
  font-size:13px;
  opacity:.95;
}

/* ================= FOOTER ================= */

footer{
  background:#0b1220;
  color:#e5e7eb;
  padding:40px 0 26px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:18px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

footer h3{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.01em;
}

footer p,
footer li{
  color:#cbd5e1;
  font-size:13px;
  line-height:1.55;
}

footer ul{
  margin:0;
  padding-left:18px;
}

.footer-bottom{
  border-top:1px solid rgba(148,163,184,.25);
  margin-top:18px;
  padding-top:16px;
  color:#cbd5e1;
  font-size:12.5px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width:980px){
  .grid-3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .brand{ min-width:unset; }
}

/* Mobile */
@media (max-width:640px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
}
