.footer {
    margin-top: 5rem;
    background-color: var(--blue-d);
    color: var(--white);

    display: grid;
    grid-template-columns: 50.75% 49.25%;

}

.footer-info {
    display: flex;
    justify-content: right;
}

.info-a {
    max-width: 65%;
    padding: 3rem 3rem;
    margin-right: 0px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;

    text-align: center;

}

.maps {
    width: 100%;
    height: 100%;
    background-color: var(--white);
}

.redes {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.redes-icons {
    display: flex;
    gap: 1.25rem;
    justify-content:center;
}

.icon-red {
    min-width: 3.5rem;
    min-height: 3.5rem;
    border-radius: 1rem;
    cursor: pointer;
}

.fb {
    background-image: url('../img/fb.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ins {
    background-image: url('../img/insta.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.wtpp {
    background-image: url('../img/wtpp.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.map {
    background-image: url('../img/map.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-color: var(--white);
}


@media (max-width: 1050px) {

    .footer {
        display: grid;
        grid-template-columns: 100%;
    }

    .footer-info {
        display: flex;
        justify-content: center;
    }

    .info-a {
        max-width: 85%;
        padding: 4rem 0rem;
    }

    .maps {
        height: 30rem;
    }
}
