/**
 * Hoja de Estilos "Don Facturo" - Páginas Legales (v2.0 - Armonizada)
 * -----------------------------------------------------------------
 * - Estilos rediseñados para ser consistentes con el dashboard y auth.
 * - Usa la misma paleta de colores, tipografía y sombras.
 */
:root {
    --color-primary: #3a55b1;
    --color-primary-dark: #2f458e;
    --color-text: #324148;
    --color-text-muted: #6f7a7f;
    --color-bg: #f4f6f7;
    --color-white: #fff;
    --color-border: #e0e3e4;
    --font-family-base: 'Poppins', sans-serif;
    --border-radius: 0.5rem; /* 8px */
    --panel-shadow: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.05);
}

body {
    font-family: var(--font-family-base);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    padding: 2rem 1rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 2rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--panel-shadow);
}

.legal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-header img {
    height: 50px;
    width: auto;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-content .last-updated {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    text-align: center;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    text-align: justify;
    color: var(--color-text-muted);
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
.legal-content a:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.legal-footer a {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}
.legal-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 1.5rem;
    }
    .legal-content h1 {
        font-size: 1.75rem;
    }
    .legal-content h2 {
        font-size: 1.15rem;
    }
}

