/* Estilos para páginas legales */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 100;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 0;
}

.legal-container h1 {
    color: #06233a;
    font-size: 32px;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    color: #06233a;
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 0;
}

.legal-section h3 {
    color: #06233a;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: #087a8c;
}

/* Focus visible para accesibilidad */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Mejoras de contraste para elementos interactivos */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 700px) {
    .legal-container {
        padding: 16px;
    }

    .legal-container h1 {
        font-size: 26px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section h3 {
        font-size: 16px;
    }
}
