/* Estilos compartidos para páginas legales (privacidad, términos) */
:root {
  --bg: #070b14; --surface: rgba(255,255,255,.04); --border: rgba(255,255,255,.1);
  --text: #f4f7fb; --muted: #93a1b8; --faint: #5d6b85; --blue: #3b82f6; --teal: #14b8a6;
  --fb: "Roboto", system-ui, sans-serif; --fd: "Space Grotesk", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: var(--fb); line-height: 1.75; color: var(--text);
  background: radial-gradient(120% 90% at 50% 0%, #0c1424, var(--bg) 55%); min-height: 100vh;
}
.bar {
  position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
  background: rgba(7,11,20,.72); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: .5rem; font-family: var(--fd); font-weight: 700; text-decoration: none; color: var(--text); }
.logo b { background: linear-gradient(120deg,#3b82f6,#0ea5e9 55%,#14b8a6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo b i { color: #ff6b35; -webkit-text-fill-color: #ff6b35; font-style: normal; }
.back { font-family: var(--fd); font-size: .9rem; color: var(--muted); text-decoration: none; }
.back:hover { color: var(--text); }
main { max-width: 820px; margin: 0 auto; padding: clamp(2.5rem,6vw,4.5rem) clamp(1.1rem,4vw,2rem) 5rem; }
h1 { font-family: var(--fd); font-weight: 700; font-size: clamp(1.8rem,5vw,2.6rem); letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .4rem; }
.upd { color: var(--muted); font-size: .9rem; margin: 0 0 2rem; }
.toc { border: 1px solid var(--border); background: var(--surface); border-radius: 14px; padding: 1.2rem 1.4rem; margin: 0 0 2.5rem; }
.toc strong { font-family: var(--fd); display: block; margin-bottom: .6rem; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.toc a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.toc a:hover { color: var(--blue); }
h2 { font-family: var(--fd); font-weight: 600; font-size: 1.3rem; margin: 2.6rem 0 .7rem; color: #fff; scroll-margin-top: 80px; }
h2 .n { color: var(--blue); margin-right: .4rem; }
h3 { font-family: var(--fd); font-weight: 600; font-size: 1.05rem; margin: 1.6rem 0 .5rem; color: #fff; }
p, li { color: #cdd6e6; }
a { color: var(--blue); }
ul, ol { padding-left: 1.2rem; }
li { margin-bottom: .45rem; }
.box { border: 1px solid var(--border); background: var(--surface); border-radius: 14px; padding: 1.2rem 1.4rem; margin-top: 1rem; }
.box p { margin: .2rem 0; }
.muted { color: var(--muted); }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; }
th, td { text-align: left; padding: .6rem .8rem; border: 1px solid var(--border); vertical-align: top; }
th { background: rgba(255,255,255,.04); font-family: var(--fd); color: #fff; }
footer { border-top: 1px solid var(--border); padding: 2rem clamp(1.1rem,4vw,2rem); text-align: center; color: var(--faint); font-size: .85rem; }
footer a { color: var(--muted); }
@media (max-width: 600px) { .toc ol { columns: 1; } }
