/* ── footer-nav-list: lista de enlaces del footer ─────────────── */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 9px;
}

.footer-nav-list li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-list li a i {
    width: 14px;
    text-align: center;
    font-size: 0.82em;
    color: #667eea;
    flex-shrink: 0;
}

.footer-nav-list li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* ── Ajuste 4 columnas ────────────────────────────────────────── */
.footer .col-md-3 {
    flex: 1;
    min-width: 220px;
    padding: 0 15px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .footer .col-md-3 {
        flex: 100%;
        text-align: center;
    }
    .footer-nav-list li a {
        justify-content: center;
    }
}

/* ── Páginas legales ──────────────────────────────────────────── */
.legal-page {
    max-width: 860px;
    margin: 40px auto 60px;
    padding: 0 20px;
    color: #343a40;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.75;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a2e;
}

.legal-page .legal-subtitle {
    color: #6c757d;
    font-size: 0.92rem;
    margin-bottom: 36px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 14px;
}

.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 10px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 9px;
}

.legal-page h2 i {
    color: #667eea;
    font-size: 1em;
}

.legal-page p,
.legal-page li {
    color: #495057;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.legal-page ul {
    padding-left: 22px;
    margin-bottom: 12px;
}

.legal-page .legal-highlight {
    background: #f0f4ff;
    border-left: 4px solid #667eea;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 18px 0;
    font-size: 0.93rem;
    color: #343a40;
}

.legal-page .legal-contact-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 40px;
}

.legal-page .legal-contact-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.legal-page .legal-contact-box a {
    color: #667eea;
    text-decoration: none;
}

.legal-page .legal-contact-box a:hover {
    text-decoration: underline;
}

/* Dark theme */
html.dark-theme .legal-page {
    color: #e9ecef;
}

html.dark-theme .legal-page h1,
html.dark-theme .legal-page h2 {
    color: #f8f9fa;
}

html.dark-theme .legal-page p,
html.dark-theme .legal-page li {
    color: #ced4da;
}

html.dark-theme .legal-page .legal-highlight {
    background: #1e2235;
    color: #e9ecef;
}

html.dark-theme .legal-page .legal-contact-box {
    background: #1a1a1a;
    border-color: #333;
}

html.dark-theme .legal-page .legal-contact-box h3 {
    color: #f8f9fa;
}
