/* Estilo compartilhado das páginas legais (Termos, Privacidade, Cookies). */
:root {
  --bone: #eeeae0;
  --ink: #0e0e0e;
  --coral: #e8552b;
  --muted: #5f5e5a;
  --border: rgba(14, 14, 14, 0.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: var(--ink);
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

header.top { border-bottom: 1px solid var(--border); }
header.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand img { height: 24px; width: auto; display: block; }
.brand span { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.back { font-size: 14px; color: var(--muted); text-decoration: none; }
.back:hover { color: var(--ink); }

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--coral);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 30px 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #7c2d12;
}
.notice strong { font-weight: 700; }

main { padding: 8px 0 56px; }
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600; letter-spacing: -0.02em;
  margin: 30px 0 6px;
}
.updated { color: var(--muted); font-size: 14px; margin: 0 0 4px; }
h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin: 38px 0 10px;
}
p, li { font-size: 15.5px; color: #1f1f1d; }
ul { padding-left: 20px; }
li { margin: 4px 0; }
a { color: var(--coral); }
.todo { color: var(--coral); font-style: italic; }
.todo::before { content: "[ a preencher: "; }
.todo::after { content: " ]"; }

footer.bot { border-top: 1px solid var(--border); padding: 22px 0 40px; font-size: 13px; color: var(--muted); }
footer.bot .wrap { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
footer.bot a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
footer.bot a:hover { color: var(--ink); }
footer.bot .sep { opacity: 0.4; }
