:root{
  --bg:#ffffff;
  --card:#ffffff;
  --muted:#5b667a;
  --text:#0f172a;
  --accent:#16a34a;
  --border:rgba(15,23,42,.12);
  --shadow: 0 10px 28px rgba(15,23,42,.10);
  --radius: 18px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; color:var(--text); background: var(--bg); }
a{ color:inherit; text-decoration:none; }

.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px; position:sticky; top:0; z-index:20;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.brand{ display:flex; gap:12px; align-items:center; }
.brandLogo{
  width:44px; height:44px; border-radius:12px;
  object-fit:cover;
  border:1px solid var(--border);
  background:#fff;
}
.brandName{ font-weight:900; letter-spacing:.2px; }
.brandTagline{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:16px; color:var(--muted); }
.nav a:hover{ color:var(--text); }

.cta{
  padding:10px 14px; border-radius:14px;
  background: rgba(22,163,74,.12);
  border:1px solid rgba(22,163,74,.35);
  font-weight:800;
}
.cta:hover{ filter:brightness(1.05); }

.hero{
  display:grid; grid-template-columns: 1.3fr 1fr; gap:18px;
  padding:28px 20px 10px;
  max-width: 1100px; margin: 0 auto;
}
.heroLeft h1{ font-size:44px; line-height:1.05; margin:0 0 12px; }
.heroLeft p{ color:var(--muted); font-size:16px; line-height:1.65; margin:0 0 18px; }

.heroActions{ display:flex; gap:12px; flex-wrap:wrap; }

.btnPrimary{
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(22,163,74,.40);
  background: rgba(22,163,74,.12);
  font-weight:900; display:inline-flex; align-items:center; justify-content:center;
}
.btnPrimary:hover{ filter:brightness(1.05); }

.btnGhost{
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(15,23,42,.04);
  font-weight:800;
}
.btnGhost:hover{ background: rgba(15,23,42,.06); }

.heroBadges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; color:var(--muted); font-size:13px; }
.heroBadges span{ border:1px solid var(--border); background: rgba(15,23,42,.03); padding:8px 10px; border-radius:999px; }

.heroRight{ display:flex; align-items:stretch; }
.heroCard{
  width:100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  padding:18px;
}
.heroCardTop{ display:flex; gap:10px; margin-bottom:12px; }
.pill{ font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid var(--border); background: rgba(15,23,42,.04); color: var(--muted);}
.pillDark{ color: var(--text); border-color: rgba(22,163,74,.35); background: rgba(22,163,74,.12); }

.heroCardTitle{ font-size:20px; font-weight:900; }
.heroCardText{ color:var(--muted); margin-top:8px; line-height:1.65; }
.heroCardActions{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }

.section{
  max-width:1100px; margin: 0 auto;
  padding: 28px 20px;
}
.sectionAlt{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background: rgba(15,23,42,.02);
}
.sectionHeader h2{ margin:0 0 6px; font-size:26px; }
.sectionHeader p{ margin:0 0 16px; color:var(--muted); }

.filters{ display:flex; gap:12px; align-items:flex-start; flex-wrap:wrap; margin-bottom:14px; }
.search{
  flex:1; min-width:260px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline:none;
}
.search::placeholder{ color: rgba(15,23,42,.45); }

.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(15,23,42,.03);
  color: var(--muted);
  cursor:pointer;
  font-weight:700;
}
.chipActive{ color: var(--text); border-color: rgba(22,163,74,.45); background: rgba(22,163,74,.12); }

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

.card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #fff;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.cardImgWrap{
  height: 190px;
  background: rgba(15,23,42,.03);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
}

.cardImg{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.cardBody{ padding:14px; }

.cardTop{ display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(22,163,74,.35);
  background: rgba(22,163,74,.12);
  color: var(--text);
  font-weight:800;
}
.price{ font-weight:900; }

.cardTitle{ margin:0 0 10px; font-size:16px; font-weight:900; }
.meta{ color:var(--muted); font-size:13px; line-height:1.6; margin-bottom:12px; }
.btnFull{ width:100%; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.step{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #fff;
  padding:14px;
  box-shadow: var(--shadow);
}
.stepNum{
  width:34px; height:34px; border-radius:10px;
  display:grid; place-items:center;
  border:1px solid rgba(22,163,74,.40);
  background: rgba(22,163,74,.12);
  font-weight:900;
}
.stepTitle{ margin-top:10px; font-weight:900; }
.stepText{ margin-top:6px; color:var(--muted); line-height:1.6; }

.quoteBox{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #fff;
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
  max-width: 640px;
  box-shadow: var(--shadow);
}

.small{ color:var(--muted); font-size:13px; }

.footer{
  max-width:1100px; margin: 0 auto;
  padding: 18px 20px 70px;
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:14px;
  border-top:1px solid var(--border);
}
.footerTitle{ font-weight:900; margin-bottom:8px; }
.footerText{ color:var(--muted); line-height:1.6; }
.footerLink{ color:var(--muted); display:block; margin:6px 0; }
.footerLink:hover{ color:var(--text); }

.whatsFloat{
  position: fixed; right: 16px; bottom: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(22,163,74,.16);
  border: 1px solid rgba(22,163,74,.45);
  box-shadow: var(--shadow);
  font-weight: 900;
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
@media (max-width: 560px){
  .heroLeft h1{ font-size:34px; }
  .grid{ grid-template-columns: 1fr; }
}
.actionsRow {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Botões lado a lado no desktop */
.actionsRow .btnPrimary,
.actionsRow .btnGhost {
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
}

/* Em telas pequenas, empilha (mobile) */
@media (max-width: 480px) {
  .actionsRow {
    flex-direction: column;
  }
}
