:root {
    --tinta: #1e293b;
    --tinta-suave: #475569;
    --tenue: #94a3b8;
    --acento: #4f46e5;
    --regla: #e2e8f0;
    --fondo: #ffffff;
    --panel: #f8fafc;
}
* { box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 800px; margin: 40px auto; padding: 0 20px;
    color: var(--tinta); line-height: 1.7; background: var(--fondo);
}
h1 { color: var(--acento); border-bottom: 2px solid var(--regla); padding-bottom: 12px; }
h2 { color: #334155; margin-top: 32px; font-size: 1.25rem; }
h3 { color: #334155; margin-top: 24px; font-size: 1.05rem; }
p, li { font-size: 15px; color: var(--tinta-suave); }
.version { font-size: 13px; color: var(--tenue); margin-top: -10px; }
table { border-collapse: collapse; width: 100%; margin: 16px 0; }
th, td { border: 1px solid var(--regla); padding: 10px 14px; font-size: 14px; text-align: left; vertical-align: top; }
th { background: var(--panel); color: #334155; }
.tabla-scroll { overflow-x: auto; }
.nav-legal {
    display: flex; flex-wrap: wrap; gap: 8px 18px;
    font-size: 13px; padding-bottom: 14px; margin-bottom: 8px;
    border-bottom: 1px solid var(--regla);
}
.nav-legal a { color: var(--tenue); text-decoration: none; }
.nav-legal a:hover, .nav-legal a:focus { color: var(--acento); text-decoration: underline; }
.nav-legal a[aria-current="page"] { color: var(--tinta); font-weight: 600; }
.destacado {
    background: var(--panel); border-left: 3px solid var(--acento);
    padding: 12px 16px; margin: 18px 0; font-size: 14.5px;
}
footer.legal-pie {
    margin-top: 48px; padding-top: 16px; border-top: 1px solid var(--regla);
    font-size: 13px; color: var(--tenue);
}
@media (prefers-color-scheme: dark) {
    :root {
        --tinta: #e2e8f0; --tinta-suave: #cbd5e1; --tenue: #94a3b8;
        --acento: #a5b4fc; --regla: #334155; --fondo: #0f172a; --panel: #1e293b;
    }
    h2, h3, th { color: #e2e8f0; }
    .nav-legal a[aria-current="page"] { color: #e2e8f0; }
}
