.footer {
    background-color: #f8f9fa;
    /* Fondo opcional */
    padding: 10px 0;
    margin-top: 7%;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    /* Distribuye los elementos a los extremos */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logos-section,
.contact-section {
    display: flex;
    align-items: center;
}

.logos-section .logo {
    margin-right: 10%;
    /* Espacio entre los logos */
}

.logos-section .logo img {
    width: 80%;
}

.contacto {
    color: black;
    font-size: clamp(20px, 2.5vw + 1rem, 38px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    margin-right: 10%;
    margin-left: 10%;
}

.contact-section img {
    width: 20%;
    /* height: 25%; */
}

/* Ajustes opcionales para pantalla pequeña */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .logos-section,
    .contact-section {
        justify-content: center;
        margin: 10px 0;
    }
}