/* css/modulos/footer.css - v4.0 Discreet Micro-Legal Style */

.main-footer {
    background: transparent; /* Totalmente integrado */
    padding: 30px 15px 50px 15px; /* Espacio respirable, extra abajo para móviles */
    text-align: center;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10; /* Por encima del video background si fuera necesario */
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* --- ENLACES LEGALES (Muy discretos) --- */
.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    opacity: 0.7; /* Transparencia inicial para que no pesen */
    transition: opacity 0.3s ease;
}

.footer-links:hover {
    opacity: 1; /* Se iluminan al acercarse */
}

.footer-links a {
    color: #bdc3c7; /* Gris muy suave */
    text-decoration: none;
    font-weight: 400; /* Sin negrita */
    font-size: 0.75rem; /* Letra pequeña */
    cursor: pointer;
    border-bottom: 1px solid transparent; /* Para efecto hover sutil */
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #ecf0f1; /* Blanco al pasar el ratón */
    border-bottom-color: #ecf0f1;
}

.footer-links .separator {
    color: #7f8c8d;
    font-size: 0.7rem;
    opacity: 0.5;
}

/* --- COPYRIGHT & SLOGAN --- */
.footer-copy {
    font-size: 0.8rem;
    color: #95a5a6; /* Gris medio */
    line-height: 1.5;
}

.footer-slogan {
    display: inline-block;
    margin-left: 6px;
    font-style: italic;
    color: #7f8c8d; /* Más oscuro que el copy */
    font-size: 0.75rem;
}

/* --- ESTILOS DEL MODAL LEGAL (Contenido interior) --- */
#modal-legal-content {
    text-align: left;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    font-family: 'Inter', sans-serif;
}

#modal-legal-content h1, 
#modal-legal-content h2, 
#modal-legal-content h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: 'Crimson Pro', serif;
}

#modal-legal-content p {
    margin-bottom: 15px;
    color: #555;
}

#modal-legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    color: #555;
}

/* Ajustes Móvil */
@media (max-width: 600px) {
    .main-footer {
        padding-bottom: 90px; /* Evitar solapamiento con barras de navegación móviles */
    }
    .footer-break-mobile {
        display: block;
        content: "";
        margin-top: 4px;
    }
    .footer-slogan {
        margin-left: 0;
        display: block;
    }
}