.footer-global {
    width: 91%;
    height: 4rem;
    position: fixed;
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    text-align: center;
    align-items: center;
    margin-left: 9%;
    background-image: linear-gradient(to right, 
        rgba(64, 77, 111, 0), 
        rgba(56, 66, 98, 0.8), 
        rgba(47, 55, 85, 1), 
        rgba(39, 45, 72, 1), 
        rgba(31, 35, 60, 1), 
        rgba(30, 36, 63, 1), 
        rgba(29, 37, 65, 1), 
        rgba(27, 38, 68, 1), 
        rgba(30, 50, 88, 1), 
        rgba(30, 64, 108, 1), 
        rgba(24, 77, 129, 0.8), 
        rgba(3, 92, 150, 0)
    );
}


.footer-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.footer-container-logo {
    width: 100%;
    height: 100%; /* Asegura que la imagen ocupe toda la altura del contenedor */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container img {
    width: 80%;
    height: 80%;
    
}

.footer-container-responsive{
    display: none;
}

@media screen and (max-width: 1000px) {
    .footer-global{
        display: none;
    }

    .footer-container-responsive {
        display: flex;
        flex-direction: row;
        height: 5rem;
        min-height: 5rem;
        margin-top: 2rem;
        width: 100%;
        align-items: center;
        justify-content: space-around;
        background-color: #1a1c31;
        order: 3;
    }

    .footer-container-responsive-logos{
        width: 80%;
        height: 60%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-container-logo {
        width: 15%;
        height: 65%;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }

    .footer-container-logo img{
        width: 40px;
        height: 40px;
    }
}