/* ===================================================
   ESTILOS ESPECÍFICOS PARA PÁGINAS LEGALES
   =================================================== */
.legal-page {
    background-color: var(--bg-deep);
}

/* Espaciado superior para que el contenido no quede oculto bajo la cabecera fija */
.legal-container {
    max-width: 800px;
    margin: 120px auto 6rem auto;
    padding: 0 1.5rem;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-pure);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

/* Estilo del contenido puramente de texto */
.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-pure);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-content strong {
    color: var(--text-pure);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Ajustes finos para el footer en páginas limpias */
.legal-footer-simple {
    padding: 2rem 0;
    text-align: center;
    background-color: #030509;
}

