/* Tipografia e layout compartilhados das páginas legais (/privacidade, /termos, /status).
   Inline-ish CSS (sem bundler) — mantém simples pra páginas estáticas. */

:root {
  --brand: #265C42;
  --brand-deep: #1B4631;
  --brand-soft: #E8EFE9;
  --accent: #E65100;
  --ink: #1D1D1F;
  --ink-2: #424245;
  --ink-3: #6E6E73;
  --line: #D2D2D7;
  --line-soft: #E8E8ED;
  --bg: #FFFFFF;
  --bg-2: #FBFBFD;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 32px;
}

.legal-logo {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.legal-logo .accent { color: var(--accent); }

.legal-back {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.legal-back:hover { text-decoration: underline; }

h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 24px 0 8px;
}

.legal-meta {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 32px;
}

.legal-draft-notice {
  background: #FFF8E1;
  border-left: 3px solid #F9A825;
  padding: 12px 16px;
  font-size: 14px;
  color: #6D4C00;
  margin: 24px 0;
  border-radius: 2px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 8px;
}

p { margin: 0 0 14px; }

ul, ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

li { margin-bottom: 6px; }

a { color: var(--brand); }

code, .legal-todo {
  background: #FFF3E0;
  color: #BF360C;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 13px;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-3);
}

.legal-footer a {
  color: var(--ink-3);
  text-decoration: none;
  margin-right: 16px;
}

.legal-footer a:hover { color: var(--brand); }

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  margin-bottom: 12px;
  background: var(--bg);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-ok { background: #2E7D32; box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15); }

.status-name {
  font-weight: 600;
  color: var(--ink);
}

.status-detail {
  font-size: 13px;
  color: var(--ink-3);
  margin-left: auto;
}
