.footer {
    background: url(/img/fundofooter.webp)no-repeat center center;
    background-size: cover;
    padding: 50px 10px;
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
}
.footer-links {
    display: grid;
    grid-gap: 30px;
    max-width: fit-content;
    text-align: center;
}
.footer-links a {
    transition: .3s;
} 
.footer-links a:hover {
    color: #FDCF1A;
    text-shadow: 0px 0px 3px #000;
} 
.footer-contato div {
    display: flex;
    grid-gap: 10px;
}
.footer-contato {
    display: grid;
    grid-gap: 30px;
}
.footer-contato div:last-child > a {
    display: flex;
    grid-gap: 10px;
    max-width: 300px;
    transition: .3s;
}
.footer-contato div:last-child > a:hover {
    color: #FDCF1A;
    text-shadow: 0px 0px 3px #000;
}
.base {
    background-color: #fff;
    text-align: center;
    padding: 10px 10px;
}

@media only screen and (min-width:326px) and (max-width:870px) {

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        grid-gap: 30px;
    }

    .footer-contato {
        justify-items: center;
    }
    
}
@media only screen and (max-width:435px) {

    .base {
        font-size: .6rem;
    }
    
}
@media only screen and (min-width:0px) and (max-width:325px) {

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        grid-gap: 30px;
    }

    .footer-contato {
        justify-items: center;
    }

    .footer-grid {
        font-size: .8rem;
    }
    
}