/* --- ESTILOS PÁGINAS LEGALES --- */

.legal-page {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    padding-top: 100px;
    /* Header spacing */
    padding-bottom: 80px;
    color: #333;
}

.legal-container {
    max-width: 800px;
    /* Ancho de lectura óptimo */
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 10px;
}

.legal-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Tipografía del Contenido */
.legal-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.legal-content h3 {
    color: #0d47a1;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }
}