:root{
  --primary:#1273ea;
  --text:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --radius:16px;
  --shadow:0 12px 30px rgba(2,6,23,.08);
  --success:#10b981;
  --warning:#eab308;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
}

a{
  color:var(--primary);
  text-decoration:none;
}

.container{
  max-width:1150px;
  margin:0 auto;
  padding:28px;
}

.price-page{
  min-height:calc(100vh - 220px);
}

.price-header{
  text-align:center;
  margin:28px auto 28px;
}

h1{
  margin:18px 0 8px;
  font-size:42px;
  line-height:1.1;
  color:var(--primary);
  text-align:center;
}

.lead{
  max-width:900px;
  margin:8px auto 22px;
  text-align:center;
  font-size:18px;
  color:#0b1324;
}

.pricing{
  display:grid;
  gap:18px;
  margin-top:18px;
}

.pricing-single{
  grid-template-columns:minmax(0, 360px);
  justify-content:center;
}

.plan{
  width:100%;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  position:relative;
  border:1px solid #e5e7eb;
}

.plan h3{
  margin:0 0 8px;
}

.price{
  font-size:28px;
  font-weight:900;
  margin:8px 0 10px;
}

.per{
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

.list{
  margin:10px 0 16px;
  padding-left:18px;
}

.list li{
  margin:4px 0;
}

.btn{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  border-radius:12px;
  padding:12px 16px;
  font-weight:800;
}

.btn:hover{
  color:#fff;
  filter:brightness(.96);
}

.muted-btn{
  background:#e5e7eb;
  color:#0f172a;
}

.ribbon{
  position:absolute;
  top:14px;
  right:-6px;
  background:#111827;
  color:#fff;
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  box-shadow:var(--shadow);
}

.badge{
  display:inline-block;
  background:#eef2ff;
  color:#1e3a8a;
  border:1px solid #c7d2fe;
  border-radius:999px;
  padding:4px 10px;
  font-size:12px;
  font-weight:800;
  margin-left:8px;
}

.popular{
  outline:2px solid var(--primary);
}

@media (max-width:680px){
  .container{
    padding:24px 18px;
  }

  h1{
    font-size:36px;
  }

  .lead{
    font-size:16px;
  }

  .pricing-single{
    grid-template-columns:1fr;
  }
}

/* ajuste final da página Preço IA Notarial */
.price-page .pricing,
.price-page .pricing-single{
  display:flex !important;
  justify-content:center !important;
  align-items:flex-start !important;
  width:100% !important;
  max-width:100% !important;
}

.price-page .plan{
  width:100% !important;
  max-width:360px !important;
  margin:0 auto !important;
}

.price-page .price-header{
  text-align:center !important;
}

