/* ---------------------------------------------------- */
/* --- ESTILOS PARA PÁGINAS LEGALES (PRIVACIDAD, TÉRMINOS, FAQ) --- */
/* ---------------------------------------------------- */

.legal-page-content {
    background-color: #f4f4f4; /* Fondo claro para mayor legibilidad */
    color: #1a1a1a;
    padding: 60px 20px;
    /* 80vh + altura del header y footer. Asegura que el contenido llene la vista */
    min-height: calc(100vh - 100px); 
    font-family: 'Montserrat', sans-serif;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legal-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #CF1212; /* Color principal de la radio (Rojo) */
    margin-bottom: 5px;
}

.legal-last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Enlace de regreso */
.back-link-container {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    color: #45B8FF; /* Azul Eléctrico */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #CF1212;
}

/* Media Query para mejorar la lectura en móviles */
@media (max-width: 600px) {
    .legal-container {
        padding: 20px;
    }
    .legal-title {
        font-size: 2rem;
    }
    .legal-section h2 {
        font-size: 1.5rem;
    }
    .legal-section p {
        font-size: 0.95rem;
    }
}