.footer {
    background-color: var(--footer-background);
    height: 250px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
}

.footer-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    margin: 0;
}

.footer-section img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

/* Responsividad básica */
@media screen and (max-width: 900px) {
    .footer {
        height: auto;
        padding: 40px 20px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-section {
        padding: 0;
    }
}







/*Estilos de Movil */ 
@media screen and  (max-width:800px) {
       
}


/*Fin Estilos de Movil */ 