/* Claudeploy — paleta quente, alinhada ao visual do Claude: creme, quase-preto, terracota. */
:root {
  --bg: #f5f4ef;
  --surface: #ffffff;
  --subtle: #edebe3;
  --line: #e3e0d6;
  --text: #191917;
  --muted: #6b6a63;
  --faint: #9c9b93;
  --accent: #d97757;
  --accent-hover: #c4623f;
  --accent-soft: #f7e4da;
  --ok: #4f8a5b;
  --ok-soft: #e5f1e7;
  --warn: #9a6c07;
  --warn-soft: #f8efd6;
  --bad: #b4413c;
  --bad-soft: #f7e2e0;
  /* Uma familia so (Manrope): titulos em 600, texto em 400. Escolha do Michel, opcao 9. */
  --serif: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: var(--accent-hover); text-decoration: none; }
a:hover { text-decoration: underline; }
code, .mono { font-family: var(--mono); font-size: .92em; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 .5em; }
h1 { font-size: clamp(36px, 5.8vw, 64px); letter-spacing: -.03em; }
h2 { font-size: clamp(26px, 3.2vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* navegação */
.nav { position: sticky; top: 0; background: rgba(245,244,239,.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); z-index: 10; }
.navrow { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand svg { width: 28px; height: 28px; }
.nav nav { display: flex; gap: 22px; }
.nav nav a { color: var(--muted); font-size: 15px; }
.nav nav a:hover, .nav nav a.active { color: var(--text); text-decoration: none; }
@media (max-width: 720px) { .nav nav { display: none; } }

/* botões */
.btn, button { font: inherit; font-weight: 600; border: 1px solid transparent; border-radius: 10px; padding: 12px 20px; background: var(--text); color: #fff; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; line-height: 1.2; }
.btn:hover, button:hover { background: #2c2b28; text-decoration: none; }
.btn.accent, button.accent { background: var(--accent); }
.btn.accent:hover, button.accent:hover { background: var(--accent-hover); }
.btn.ghost, button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn.ghost:hover, button.ghost:hover { background: var(--subtle); }
.btn.sm, button.sm { padding: 8px 14px; font-size: 14px; border-radius: 8px; }
button:disabled { opacity: .45; cursor: default; }

/* blocos */
.section { padding: 72px 0; }
.section.tight { padding: 40px 0; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.grid { display: grid; gap: 18px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.lead { font-size: 20px; color: var(--muted); max-width: 620px; }
.hero { padding: 84px 0 40px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* chat de exemplo */
.chat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: grid; gap: 14px; }
.msg { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; font-size: 15px; }
.msg .who { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.msg.user .who { background: var(--subtle); color: var(--muted); }
.msg.ai .who { background: var(--accent); color: #fff; }
.msg .body { padding-top: 3px; }
.msg .body b { font-weight: 600; }
.msg table { border-collapse: collapse; margin: 8px 0; font-size: 14px; }
.msg td { padding: 3px 14px 3px 0; color: var(--muted); }
.msg td:first-child { white-space: nowrap; }
.msg td:last-child { color: var(--text); }
.msg .link { display: inline-block; margin-top: 6px; padding: 6px 10px; background: var(--accent-soft); border-radius: 8px; color: var(--accent-hover); font-family: var(--mono); font-size: 13px; }

/* caixa da URL */
.urlbox { display: flex; gap: 10px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 10px 10px 10px 14px; }
.urlbox code { flex: 1; overflow: auto; white-space: nowrap; font-size: 15px; }
.steps { counter-reset: s; display: grid; gap: 14px; padding: 0; margin: 18px 0 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.steps li::before { counter-increment: s; content: counter(s); width: 26px; height: 26px; border-radius: 50%; background: var(--text); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.steps li b { font-weight: 600; }
.steps li p { margin: 2px 0 0; color: var(--muted); font-size: 15px; }

/* estatísticas */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.stat .v { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; font-size: 28px; line-height: 1.1; }
.stat .k { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* listas */
ul.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
ul.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: var(--muted); font-size: 15px; }
ul.checks li::before { content: ""; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--ok-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f8a5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
ul.checks li b { color: var(--text); font-weight: 600; }

/* tabelas */
table.data { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
table.data th, table.data td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data th { color: var(--muted); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; background: var(--bg); }
table.data tr:last-child td { border-bottom: 0; }
table.data td.addr { font-family: var(--mono); font-size: 13px; }
.tablewrap { overflow-x: auto; }
.empty { color: var(--muted); padding: 28px; text-align: center; background: var(--surface); border: 1px dashed var(--line); border-radius: 12px; }
.bar { height: 6px; background: var(--subtle); border-radius: 999px; overflow: hidden; min-width: 90px; }
.bar i { display: block; height: 100%; background: var(--accent); }

/* docs */
.doc { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.toc { position: sticky; top: 84px; font-size: 14px; display: grid; gap: 8px; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--text); text-decoration: none; }
.doc article > section { padding: 8px 0 34px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.doc article h2 { font-size: 26px; scroll-margin-top: 84px; }
.doc article h3 { font-size: 18px; margin-top: 22px; }
.doc pre { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; overflow: auto; font-size: 13px; }
@media (max-width: 800px) { .doc { grid-template-columns: 1fr; } .toc { position: static; } }
table.params { width: 100%; border-collapse: collapse; font-size: 14px; }
table.params th, table.params td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.params th { color: var(--muted); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
table.params code { background: var(--subtle); padding: 1px 6px; border-radius: 5px; }

/* faq */
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
details summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 20px; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 10px 0 0; font-size: 15px; }

/* rodapé */
footer { border-top: 1px solid var(--line); padding: 40px 0 56px; color: var(--muted); font-size: 14px; margin-top: 60px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 28px 48px; justify-content: space-between; }
footer .links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
footer .fine { margin-top: 22px; font-size: 13px; color: var(--faint); max-width: 720px; }

/* página de assinatura */
.sign { max-width: 640px; margin: 36px auto 80px; }
.sign .head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.big { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; font-size: 28px; line-height: 1.1; }
.sub { color: var(--muted); font-size: 14px; }
.kv { display: grid; grid-template-columns: 140px 1fr; gap: 9px 16px; font-size: 15px; }
.kv .k { color: var(--muted); }
.kv .v { overflow-wrap: anywhere; }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); white-space: nowrap; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); }
.status.ok i { background: var(--ok); }
.status.warn i { background: var(--warn); }
.status.bad i { background: var(--bad); }
.status.busy i { background: var(--accent); animation: pulse 1s infinite alternate; }
@keyframes pulse { from { opacity: .3; } to { opacity: 1; } }
.notice { border-radius: 10px; padding: 12px 14px; font-size: 14px; margin: 14px 0; border: 1px solid var(--line); background: var(--surface); }
.notice.warn { background: var(--warn-soft); border-color: #eadcb0; color: var(--warn); }
.notice.bad { background: var(--bad-soft); border-color: #ecc5c2; color: var(--bad); }
.notice.ok { background: var(--ok-soft); border-color: #c9e0cd; color: var(--ok); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.wallets { display: flex; flex-wrap: wrap; gap: 10px; }
.wallets img { width: 20px; height: 20px; border-radius: 4px; }
.ca { font-family: var(--mono); font-size: 15px; background: var(--bg); border: 1px solid var(--line); padding: 12px; border-radius: 10px; word-break: break-all; }
.label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin: 18px 0 6px; }
hr.soft { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
