:root {
    --ink: #07142b;
    --blue: #087ee8;
    --muted: #637187;
    --line: #dce6f0;
    --soft: #f3f7fb;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, .brand { font-family: "Manrope", Arial, sans-serif; }
a { color: var(--blue); }
.container { width: min(980px, calc(100% - 40px)); margin: 0 auto; }

.legal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 210px; height: 54px; object-fit: contain; }
.back-link { font-size: 13px; font-weight: 700; text-decoration: none; }

.legal-hero {
    padding: 76px 0 64px;
    color: white;
    background:
        radial-gradient(circle at 82% 25%, rgba(32,201,243,.22), transparent 32%),
        linear-gradient(135deg, #061227, #0a2448);
}
.eyebrow {
    color: #77ddfa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.legal-hero h1 {
    max-width: 780px;
    margin: 12px 0 16px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.legal-hero p { max-width: 690px; color: #b7c7da; font-size: 15px; }
.updated { display: inline-block; margin-top: 22px; color: #87a0bc; font-size: 12px; }

.legal-main { padding: 56px 0 82px; }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 46px; align-items: start; }
.legal-layout > * { min-width: 0; }
.legal-nav {
    position: sticky;
    top: 104px;
    padding: 20px;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}
.legal-nav li + li { margin-top: 9px; }
.legal-nav a { color: #526075; font-size: 12px; font-weight: 700; text-decoration: none; }
.legal-nav a:hover { color: var(--blue); }

.legal-content {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: 0 18px 55px rgba(13,36,67,.07);
}
.legal-content section { scroll-margin-top: 110px; }
.legal-content section + section { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 13px; font-size: 22px; line-height: 1.3; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: #536177; font-size: 14px; }
.legal-content p + p { margin-top: 12px; }
.legal-content ul { margin: 14px 0 0 20px; }
.legal-content li + li { margin-top: 7px; }
.notice {
    margin-top: 20px;
    padding: 17px 19px;
    border-left: 4px solid var(--blue);
    border-radius: 10px;
    background: #edf7ff;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.contact-card { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #f8fbfe; }
.contact-card span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { display: block; margin: 7px 0; font-family: "Manrope"; font-size: 15px; }
.contact-card a { font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }

.legal-footer { padding: 36px 0; color: #8495aa; background: #050f20; font-size: 11px; }
.footer-inner { display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #98a8bc; text-decoration: none; }

@media (max-width: 760px) {
    .container { width: calc(100% - 28px); max-width: calc(100% - 28px); }
    .header-inner { min-height: 66px; }
    .brand img { width: 164px; height: 44px; }
    .back-link { font-size: 0; }
    .back-link::after { content: "← Inicio"; font-size: 12px; }
    .legal-hero { padding: 56px 0 50px; }
    .legal-layout { display: block; }
    .legal-nav { position: static; display: flex; width: 100%; max-width: 100%; gap: 14px; margin-bottom: 20px; overflow-x: auto; }
    .legal-nav li, .legal-nav li + li { margin: 0; flex: 0 0 auto; }
    .legal-content { width: 100%; padding: 26px 22px; overflow-wrap: anywhere; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
}
