/* ===== FOOTER ENTERPRISE ===== */

/* Contenedor Principal */
.footer-enterprise {
    background-color: #212529; /* Gris Oscuro (Coincide con TopBar) */
    color: #e9ecef;            /* Texto casi blanco para lectura cómoda */
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

/* Logo (Efecto Blanco) */
.footer-logo {
    filter: brightness(0) invert(1); /* Convierte el logo a blanco puro */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Títulos de Sección */
.footer-enterprise h5,
.footer-enterprise h6 {
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Enlaces de Navegación */
.footer-link {
    color: #adb5bd; /* Gris medio */
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #198754; /* Verde Institucional */
    padding-left: 5px; /* Pequeño desplazamiento a la derecha */
}

/* Botones Sociales */
.social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: all 0.3s ease;
    margin-right: 8px;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-btn:hover {
    background-color: #198754; /* Verde al pasar mouse */
    border-color: #198754;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Lista de Contacto */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    color: #198754; /* Iconos en Verde */
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px; /* Alineación óptica con el texto */
}

/* Mapa */
.map-container iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    filter: grayscale(0.2); /* Un toque sutil para que no desentone */
    transition: filter 0.3s;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3); /* Un poco más oscuro que el footer */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
    margin-top: 2rem;
    font-size: 0.85rem;
}

.footer-bottom-link {
    color: #adb5bd;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Ajustes Responsive */
@media (max-width: 767px) {
    .footer-enterprise {
        text-align: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-link {
        display: block;
        margin: 10px 0 0 0;
    }
    
    /* En móvil, quitamos el desplazamiento del hover para que no se sienta raro */
    .footer-link:hover {
        padding-left: 0;
        color: #198754;
    }
}