/* ===== Tokens (direção visual D1 — "Zap") ===== */
:root {
  --green: #1FAA59;
  --green-dark: #138a52;
  --green-deep: #0e6e41;
  --chat: #DCF8C6;
  --bg: #F4F7F3;
  --surface: #ffffff;
  --ink: #16261C;
  --ink-soft: #46564d;
  --line: #e4ece5;
  --radius: 16px;
  --radius-lg: 22px;
  --pill: 999px;
  --maxw: 1080px;
  --shadow: 0 10px 30px rgba(20, 40, 28, .10);
  --shadow-soft: 0 4px 14px rgba(20, 40, 28, .07);
  --font: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .4em; }
h1 { font-size: clamp(28px, 7vw, 46px); font-weight: 900; }
h2 { font-size: clamp(23px, 5vw, 32px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 800; }
p { margin: 0 0 1em; color: var(--ink-soft); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-tint { background: var(--surface); }
.center { text-align: center; }
.lead { font-size: 18px; max-width: 34em; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ===== Botão (pill verde) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 17px;
  padding: 14px 24px; border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
  transition: transform .08s ease, background .15s ease;
  min-height: 52px;
}
.btn:hover { background: var(--green-dark); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--green-deep); outline-offset: 2px; }
.btn-sm { padding: 9px 16px; font-size: 15px; min-height: 0; box-shadow: none; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(244, 247, 243, .9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-weight: 900; font-size: 19px; text-decoration: none; color: var(--green-dark); letter-spacing: -.02em; display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 400px) { .brand-logo { height: 36px; } }

/* ===== Bolha de chat (motivo recorrente) ===== */
.bubble {
  background: var(--chat); color: var(--ink);
  border-radius: 16px 16px 16px 5px;
  padding: 12px 15px; font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-soft); max-width: 280px;
}

/* ===== Hero ===== */
.hero { padding-top: 40px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.hero-note { font-size: 14px; font-weight: 700; color: var(--green-dark); margin-top: 14px; }
.hero-art { display: flex; flex-direction: column; gap: 12px; }
.bubble-in { align-self: flex-start; }
.bubble-out { align-self: flex-end; background: #fff; border-radius: 16px 16px 5px 16px; border: 1px solid var(--line); }
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .hero { padding-top: 64px; }
}

/* ===== Passos ===== */
.steps { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 18px; grid-template-columns: 1fr; text-align: left; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--pill);
  background: var(--green); color: #fff; font-weight: 900; font-size: 18px; margin-bottom: 12px;
}
.step p { margin-bottom: 0; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* ===== Documento (exemplo de orçamento) ===== */
.doc-wrap { margin-top: 30px; display: flex; justify-content: center; }
.doc {
  background: #fff; color: var(--ink); width: 100%; max-width: 640px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 26px; text-align: left; font-size: 14px;
}
.doc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; border-bottom: 2px solid var(--green); padding-bottom: 14px; }
.doc-brand { font-weight: 900; font-size: 20px; color: var(--green-dark); }
.doc-meta { color: var(--ink-soft); font-size: 12.5px; margin-top: 2px; }
.doc-num { text-align: right; font-size: 12.5px; color: var(--ink-soft); }
.doc-num strong { display: block; color: var(--ink); letter-spacing: .04em; }
.doc-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); font-weight: 800; margin-bottom: 2px; }
.doc-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 16px 0; }
.doc-service { margin: 0 0 16px; }
.doc-table { width: 100%; border-collapse: collapse; margin: 6px 0 0; }
.doc-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding: 6px 8px; }
.doc-table th:nth-child(n+2), .doc-table td:nth-child(n+2) { text-align: right; white-space: nowrap; }
.doc-table td { padding: 9px 8px; border-bottom: 1px solid var(--line); }
.doc-total { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding: 12px 8px; background: var(--chat); border-radius: 10px; font-weight: 700; }
.doc-total strong { font-size: 20px; font-weight: 900; }
.doc-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.doc-block, .doc-about { margin-top: 16px; }
.doc-steps { margin: 6px 0 0; padding-left: 18px; }
.doc-steps li { margin: 3px 0; }
.doc-about p { margin: 0; }
@media (min-width: 560px) {
  .doc { padding: 34px; }
  .doc-row { grid-template-columns: 1fr 1fr 1fr; }
}

/* ===== Benefícios ===== */
.benefits { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; text-align: left; }
.benefit { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.benefit-ic { font-size: 26px; display: block; margin-bottom: 8px; }
.benefit p { margin-bottom: 0; }
@media (min-width: 720px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .benefits { grid-template-columns: repeat(4, 1fr); } }

/* ===== Preço ===== */
.price-card { max-width: 460px; margin: 30px auto 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 28px; }
.price-list { list-style: none; margin: 0 0 22px; padding: 0; text-align: left; }
.price-list li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.price-list li:last-child { border-bottom: 0; }
.price-list strong { color: var(--ink); }

/* ===== CTA final ===== */
.cta-final { background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #fff; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: rgba(255, 255, 255, .92); }
.btn-on-green { background: #fff; color: var(--green-deep); }
.btn-on-green:hover { background: #f0fff6; }

/* ===== Rodapé ===== */
.site-footer { background: var(--ink); color: #d8e4dc; padding: 28px 0; }
.site-footer .brand { color: #fff; }
.foot { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.foot-links a { color: #bcd6c6; text-decoration: none; font-weight: 700; }
.foot-links a:hover { color: #fff; }
.site-footer small { color: #8fae9c; }
@media (min-width: 720px) { .foot { flex-direction: row; justify-content: space-between; } }

/* ===== Ajuste responsivo (telas muito estreitas) ===== */
@media (max-width: 380px) { .doc { font-size: 13px; padding: 20px; } }
