/* DISEÑO PROFESIONAL PARA PÁGINAS LEGALES - IGLESIA EMANUEL */

body{
    background: linear-gradient(135deg, var(--azul-emanuel) 0%, var(--granate-emanuel) 100%);
}
.legal-container {
    background-color: #f9f9f9;
    padding: 50px 15px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.legal-content {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #333;
}

.legal-content h1 {
    color: #4a0e0e; /* Granate Emanuel */
    border-bottom: 4px solid #d4af37; /* Dorado Emanuel */
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.last-update {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
}

/* ALERTA DE SEGURIDAD ANTIFRAUDE */
.security-alert {
    background-color: #fff5f5;
    border: 2px solid #ff0000;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.security-alert h3 {
    color: #cc0000;
    margin-top: 0;
    font-size: 1.3rem;
}

.security-alert ul {
    color: #b30000;
    font-weight: bold;
}

/* SECCIONES LEGALES */
.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: #0056b3; /* Azul Emanuel */
    font-size: 1.5rem;
    border-left: 5px solid #d4af37;
    padding-left: 15px;
    margin-bottom: 15px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn-regresar {
    display: inline-block;
    background-color: #4a0e0e;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-regresar:hover {
    background-color: #d4af37;
    color: #4a0e0e;
}

/* AJUSTES PARA MÓVILES */
@media (max-width: 600px) {
    .legal-content { padding: 20px; }
    .legal-content h1 { font-size: 1.5rem; }
    .legal-section h2 { font-size: 1.2rem; }
}