.footer {
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-grid a {
    max-width: 220px;
}

.footer-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-menu-address > a {
    font-size: 1rem;
    text-transform: capitalize;
}

.footer-menu a + a{
    margin-top: 5px;
}
.footer-grid .redes-sociais img {
    max-width: 40px;
}

.footer-grid .redes-sociais {
    margin-top: 20px;
}

.footer h6 {
    font-size: 1rem;
    margin-bottom: 10px;
}


.footer h6:nth-child(3) {
    margin-top: 20px;
}

.footer-address {
    display: flex;
    grid-gap: 10px;
}

.copy {
    background-color: #181617;
    padding-top: 5px;
    padding-bottom: 5px;
}

.copy-grid {
    text-align: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 825px) {
    .footer {
        max-width: 600;
        margin-left: auto;
        margin-right: auto;
        grid-gap: 40px;
        grid-template-columns: 1fr;
    }

  .footer-grid, .footer-menu-address, .footer-menu  {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
        justify-content: start;
    }

    .footer-menu {
        text-align: center;
    } 
}