footer {
    display: block;
    width: 100%;
    /* height: 222px; */
    margin: 96px 0 40px 0;
    overflow: hidden;
}
footer .content {
    display: flex;
    justify-content: space-between;
    /* padding: 0 102px; */
    gap: 3rem;
    display: grid;
    align-items: start;
    justify-content: space-around;
    align-content: center;
    grid-auto-columns: calc(100vh / 3);
    /*
    align-items: flex-end; */
}
/* LOGO */
footer .logo-div {
    padding: 0 0 0 20px;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .logo-div > a img {
    width: 285px;
    height: 68px;
}
footer .logo-div p {
    width: 100%;
    font-size: 14px;
    margin-top: 32px;
    text-align: center;
}
.redes-sociais {
    width: 100%;
    height: 23px;
    margin-top: 20px;
    gap: 24px;
    display: flex;
    justify-content: space-evenly;
    padding: 0 40px;
}
.redes-sociais img {
    width: 23px;
    height: 23px;
}
/* BUTTONS */
footer .buttons {
    width: 302px;
    grid-column: 2;
    display: grid;
    gap: 3rem;
    row-gap: 2.5rem;
    justify-content: space-between;
   /*  display: flex;
    flex-direction: row;
    width: 100%;
    font-size: 14px;
    justify-content: center; */
}
footer .buttons div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
footer .buttons div:first-child {
    grid-column: 1;
}
footer .buttons div:nth-child(2) {
    grid-column: 2;
}
footer .buttons div:last-child {
    grid-column: 1 / 3;
}
/* ENDEREÇO */
.endereco {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 0 0;
}
.endereco p {
    font-size: 14px;
    margin: 0;
}
/* COPYRIGTH */
.copyright {    
    margin-top: 12px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
    background: transparent linear-gradient(90deg, var(--primary) 0%, var(--secondary) 89%, var(--theme-dark) 100%) 0% 0% no-repeat padding-box;
    text-indent: 85px;
}
.copyright span {   
    color: white;
    font-size: 12px;
}