:root {
  --rose: #e23b6a;
  --ink: #1c1216;
  --muted: #6d5a61;
  --paper: #fff8f6;
  --line: #f0d9df;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}
a { color: var(--rose); }
header, main, footer { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 18px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand img { width: 44px; height: 44px; border-radius: 12px; }
.brand strong { font-size: 22px; letter-spacing: -0.03em; }
nav { display: flex; gap: 16px; flex-wrap: wrap; font-family: system-ui, sans-serif; font-size: 14px; }
nav a { text-decoration: none; color: var(--muted); }
nav a:hover, nav a[aria-current="page"] { color: var(--rose); }
h1 { font-size: 40px; line-height: 1.15; margin: 12px 0 16px; }
h2 { font-size: 22px; margin: 32px 0 10px; }
p, li { color: #3a2b31; }
.lead { font-size: 20px; color: var(--muted); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  margin: 18px 0;
}
.langs { display: flex; gap: 8px; font-family: system-ui, sans-serif; font-size: 13px; }
.langs button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}
.langs button[aria-pressed="true"] { background: var(--rose); color: white; border-color: var(--rose); }
[data-lang] { display: none; }
body[data-locale="pt"] [data-lang="pt"],
body[data-locale="en"] [data-lang="en"],
body[data-locale="es"] [data-lang="es"] { display: block; }
footer {
  padding: 40px 0 48px;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 13px;
}
footer a { color: inherit; }
