/* Páginas de conteúdo do site: guias, blog e Sobre (geradas por conteudo/build.mjs) */
:root { --ink: #21262e; --muted: #6f7885; --line: #e8eaee; --soft: #f6f6f8; --brand: #fd297b; --brand-2: #ff655b; --dark: #0b0a10; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #fff; color: var(--ink); font-size: 17px; line-height: 1.7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
a { color: var(--brand); }

.bar { max-width: 760px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
header.site { border-bottom: 1px solid var(--line); }
header.site img { height: 30px; width: auto; display: block; }
header.site nav { display: flex; align-items: center; gap: 16px; }
header.site nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px; }
header.site nav a.cta { color: #fff; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
@media (max-width: 480px) {
  header.site img { height: 26px; }
  header.site nav { gap: 12px; }
  header.site nav .hide-sm { display: none; }
}

main { max-width: 760px; margin: 0 auto; padding: 22px 20px 64px; }
.crumbs { font-size: 14px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.kicker { margin: 18px 0 0; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.kicker a { text-decoration: none; }
h1 { font-size: clamp(30px, 6vw, 40px); line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 10px; }
.kicker + h1 { margin-top: 6px; }
.meta { color: var(--muted); font-size: 14px; margin: 0 0 26px; }
.lead { font-size: 19px; line-height: 1.6; color: #3b424d; }

article h2 { font-size: 24px; line-height: 1.3; letter-spacing: -0.01em; margin: 42px 0 10px; scroll-margin-top: 16px; }
article h3 { font-size: 19px; margin: 26px 0 6px; }
article ul, article ol { padding-left: 22px; }
article li { margin: 8px 0; }
article li::marker { color: var(--brand); }
.note { background: var(--soft); border-left: 4px solid var(--brand); border-radius: 0 16px 16px 0; padding: 2px 20px; margin: 26px 0; }

.checklist { list-style: none; padding-left: 0 !important; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 0.3em; width: 20px; height: 20px; border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.checklist li::after { content: ""; position: absolute; left: 9px; top: calc(0.3em + 4px); width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.cta-box { margin-top: 48px; padding: 28px; border-radius: 24px; background: var(--dark); color: #fff; }
.cta-box h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.3; }
.cta-box p { margin: 0 0 20px; color: #c9c4d3; }
.cta-box a { display: inline-block; padding: 12px 22px; border-radius: 999px; color: #fff; font-weight: 700; text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); }

.related { margin-top: 48px; }
.related h2 { font-size: 20px; margin: 0 0 14px; }
.cards { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-lg { grid-template-columns: 1fr; margin-top: 28px; }
.card { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: 18px; color: var(--ink); text-decoration: none;
  transition: border-color .15s, transform .15s; }
.card:hover { border-color: var(--brand); transform: translateY(-2px); }
.card small { display: block; margin-bottom: 4px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.card b { display: block; font-size: 17px; line-height: 1.35; }
.cards-lg .card b { font-size: 20px; }
.card span { display: block; margin-top: 6px; font-size: 15px; line-height: 1.5; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 6px; }
.chips a { padding: 7px 14px; border-radius: 999px; background: var(--soft); color: var(--ink); font-size: 14px; font-weight: 600; text-decoration: none; }
.chips a:hover { background: #ffe3ee; }
.category { margin-top: 36px; scroll-margin-top: 16px; }
.category h2 { font-size: 22px; line-height: 1.3; margin: 0; }
.category > p { margin: 2px 0 14px; color: var(--muted); }

footer.site { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer.site .bar { justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
footer.site a { color: var(--muted); }
