/* Ruta: /assets/css/footer.css */

.footer-section {
    background: #ffffff; 
    border-top: 1px solid #eaeaea; 
    color: #333333; 
    padding-top: 60px;
    font-family: 'Work Sans', sans-serif; /* Texto base */
    position: relative;
    z-index: 10;
}

/* Títulos del Footer en Kallisto */
.footer-subtitle {
    font-family: 'Kallisto', sans-serif;
    font-size: 0.9rem; 
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    display: inline-block; 
    min-width: 150px; 
}

.footer-text {
    color: #000000; 
    font-size: 1.05rem; 
    line-height: 1.6;
    font-weight: 400;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

/* Enlaces con Kallisto y color NEGRO forzado (mata el azul de Bootstrap) */
.footer-links a,
.footer-contact a {
    font-family: 'Kallisto', sans-serif;
    color: #000000 !important; 
    text-decoration: none;
    font-weight: 300; 
    font-size: 0.85rem; 
    transition: all 0.3s ease;
    display: inline-block;
}

/* El texto de la dirección se mantiene en Work Sans para mejor lectura */
.footer-contact span.text-muted {
    font-family: 'Work Sans', sans-serif;
    color: #000000 !important;
    font-weight: 300;
}

/* Efecto Hover: Cambia a Gris Oscuro */
.footer-links a:hover,
.footer-contact a:hover {
    color: #555555 !important; 
    padding-left: 5px; 
}

/* Línea separadora inferior */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08); 
    margin-top: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Enlaces Legales (Privacidad, Cookies) en Kallisto */
.legal-links a {
    font-family: 'Kallisto', sans-serif;
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #555555 !important;
}

/* Íconos de redes sociales, teléfonos y correo (Color Negro) */
.social-icons a,
.footer-contact i {
    color: #000000 !important; 
    background-color: transparent; 
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; 
}

/* Efecto Hover en Íconos (Gris oscuro) */
.social-icons a:hover {
    color: #555555 !important; 
    transform: translateY(-3px); 
}

/* Responsivo */
@media (max-width: 991px) {
    .footer-section {
        text-align: center;
        padding-top: 40px;
    }
    
    .footer-subtitle {
        display: inline-block; 
        margin-top: 1rem;
    }

    .footer-links a:hover {
        padding-left: 0; 
        color: #555555 !important;
    }
    
    .social-icons {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-icons a {
        margin: 0 8px; 
    }
    
    .footer-bottom .col-lg-4 {
        margin-bottom: 15px;
    }
}