:root {
  --bg-primary: #f4f7fa;
  --bg-card: #ffffff;
  --bg-surface: #eef3f9;
  --text-primary: #0f2336;
  --text-secondary: #45596f;
  --text-muted: #647689;
  --accent-green: #0d9488;
  --accent-green-hover: #0f766e;
  --accent-orange: #ea580c;
  --border-color: rgba(15, 35, 54, 0.10);
  --border-highlight: rgba(15, 35, 54, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent-green); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 999; }
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: 820px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* BREADCRUMB */
.breadcrumb { padding-top: 76px; font-size: 13px; color: var(--text-muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--border-highlight); }
.breadcrumb a:hover { color: var(--accent-green); }

/* CONTENT */
.legal { padding: 28px 0 64px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 5vw, 40px); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.legal .updated {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--text-muted); background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 26px;
}
.legal .lead { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 21px; letter-spacing: -0.01em;
  margin: 38px 0 12px; padding-top: 22px;
  border-top: 1px solid var(--border-color);
}
.legal h3 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin: 22px 0 8px; }
.legal p { color: var(--text-secondary); margin-bottom: 14px; }
.legal ul, .legal ol { color: var(--text-secondary); margin: 0 0 16px 20px; }
.legal li { margin-bottom: 7px; }
.legal strong { color: var(--text-primary); font-weight: 600; }
.legal a:not(.header-cta) { color: var(--accent-green); text-decoration: underline; text-underline-offset: 2px; }
.legal a:not(.header-cta):hover { color: var(--accent-green-hover); }

.callout {
  background: var(--bg-surface); border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-green);
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 20px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout.warn { border-left-color: var(--accent-orange); }

.table-wrap { overflow-x: auto; margin: 18px 0 24px; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border-color); vertical-align: top; }
th { font-family: var(--font-display); font-weight: 700; font-size: 13px; background: var(--bg-surface); }
tbody tr:last-child td { border-bottom: none; }
td { color: var(--text-secondary); }

.contact-box {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 20px; margin: 20px 0;
}
.contact-box p { margin-bottom: 6px; }

/* FOOTER */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border-color); padding: 36px 0 28px; }
.footer .container { max-width: 900px; }
.footer-responsible {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 18px; margin-bottom: 18px;
}
.footer-responsible-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.footer-responsible p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.rg-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.rg-tool {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  background: var(--bg-surface); border: 1px solid var(--border-color);
  padding: 6px 11px; border-radius: 100px;
}
.rg-tool:hover { border-color: var(--accent-green); color: var(--accent-green); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--accent-orange); color: var(--accent-orange);
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
}
.footer-affiliate { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; margin-bottom: 14px; }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent-green); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

@media (max-width: 600px) {
  .legal { padding: 20px 0 48px; }
  .legal h2 { font-size: 19px; }
}
