/* Páginas legais (privacidade, termos e anexos por produto).
   Paleta e tipografia do index.html — mantidas em arquivo próprio para as três
   páginas não divergirem entre si com o tempo. */
:root {
  --bg: #0a0e1a;
  --card: #131a2e;
  --border: #1e2a45;
  --primary: #f4c542;
  --text: #e8ecf4;
  --text-muted: #8b95a8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 40px 24px 96px; }
a { color: var(--primary); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.back { font-size: 14px; text-decoration: none; color: var(--text-muted); }
.back:hover { color: var(--primary); }

/* Alternador de idioma */
.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}
.lang button {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 12px;
  cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--primary); color: #0a0e1a; }

h1 { font-size: 30px; line-height: 1.25; font-weight: 700; margin-bottom: 10px; }
h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
h3 { font-size: 15px; font-weight: 600; margin: 22px 0 6px; color: var(--primary); }
p, li { color: var(--text-muted); font-size: 15px; }
p { margin-bottom: 14px; }
ul { margin: 0 0 16px 20px; }
li { margin-bottom: 8px; }
strong { color: var(--text); font-weight: 600; }

code {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 13px;
  color: var(--primary);
}

.meta { font-size: 13px; color: var(--text-muted); margin-bottom: 36px; }

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text); font-weight: 600; font-size: 13px; }
td { color: var(--text-muted); }

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Sem JS, o bloco PT continua com [hidden] e o inglês aparece — que é o
   idioma do site e o do revisor do Google. */
[hidden] { display: none !important; }
