/* NAV */
nav { background: rgba(13,13,13,0.97); border-bottom: 1px solid rgba(236,37,42,0.2); padding: 0 5%; height: 70px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-back { display: flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: color .2s; }
.nav-back:hover { color: var(--red); }

/* HERO LEGAL */
.legal-hero { background: var(--night2); border-bottom: 1px solid rgba(236,37,42,0.1); padding: 3.5rem 5% 2.5rem; }
.legal-hero .tag { display: inline-block; background: var(--red-light); border: 1px solid var(--red-border); color: var(--red); border-radius: 50px; padding: 4px 16px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.legal-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: .6rem; }
.legal-hero p { color: var(--muted); font-size: 0.9rem; }
.legal-hero .meta { display: flex; gap: 2rem; margin-top: 1.2rem; flex-wrap: wrap; }
.legal-hero .meta span { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* CONTENT */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 3rem 5% 5rem; }
.legal-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.legal-section h2 .num { background: var(--red); color: var(--white); width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; flex-shrink: 0; }
.legal-section p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: .8rem; }
.legal-section ul { list-style: none; margin: .5rem 0 .8rem; }
.legal-section ul li { color: var(--muted); font-size: 0.92rem; line-height: 1.7; padding: .3rem 0 .3rem 1.2rem; position: relative; }
.legal-section ul li::before { content: ''; position: absolute; left: 0; top: .75rem; width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
.highlight-box { background: rgba(236,37,42,0.07); border: 1px solid rgba(236,37,42,0.2); border-radius: 10px; padding: 1rem 1.4rem; margin: 1rem 0; }
.highlight-box p { color: var(--text) !important; font-weight: 700; margin: 0; }

/* PRIVACIDAD */
.rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; margin: 1rem 0; }
.right-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.2rem; }
.right-card h4 { font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: .4rem; display: flex; align-items: center; gap: 7px; }
.right-card h4 svg { color: var(--red); flex-shrink: 0; }
.right-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* TERMINOS */
.reg-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: .8rem;
  display: flex; align-items: flex-start; gap: 1rem;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.reg-card:hover { border-color: var(--red); background: rgba(236,37,42,0.05); }
.reg-card .reg-ico { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.reg-card .reg-title { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: .25rem; }
.reg-card .reg-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.reg-card .reg-meta { font-size: 0.74rem; color: var(--red); font-weight: 700; margin-top: .3rem; }
.rights-banner {
  background: rgba(236,37,42,0.07); border: 1.5px solid rgba(236,37,42,0.2);
  border-radius: 14px; padding: 1.4rem 1.8rem; margin: 1rem 0;
}
.rights-banner h4 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: .8rem; }
.rights-list { list-style: none; }
.rights-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.87rem; color: var(--muted); padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); line-height: 1.6; }
.rights-list li:last-child { border: none; }
.rights-list li .rn { background: var(--red); color: var(--white); width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* FOOTER LEGAL */
.legal-footer { background: #080808; border-top: 1px solid rgba(236,37,42,0.1); padding: 2rem 5% 5rem; text-align: center; }
.legal-footer p { color: var(--muted); font-size: 0.8rem; margin-bottom: .4rem; }
.legal-footer a { color: var(--red); text-decoration: none; font-weight: 700; }
.legal-footer a:hover { color: var(--red-dark); }
