
/* Footer */
footer {
    background-color: #8C4C28; /* #a34f30; */
    color: #ffff;
    padding: 20px 15%;
}

.conteiner_footer{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.item_footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 8px;
    font-family: AbhayaLibre, sans-serif;
}

.logo_footer{
    display: flex;
    width: 90px;
}

.logo_footer img{
    display: block;
    width: 100%;
}

.redes_sociais{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.link_rede_social{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffff;
    font-size: 18px;
    &:hover{
        text-decoration: underline;
    }
}

.link_rede_social img{
    display: block;
    width: 15px;
}

.copy{
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: FoundersGrotesk, sans-serif;
}

.separador_com_borda_footer{
    display: none;
    bottom: 0;
    left: 0;
    height: 3px; /* altura da "borda" */
    width: 100%;
    background: linear-gradient(to right, transparent, #8c4c28, transparent);
}

/* Fim footer */
@media(max-width: 960px){
   footer{
        padding: 20px 5%;
   }
}

@media(max-width: 760px){
   footer{
        padding: 20px 0;
   }
}

@media(max-width: 595px){
    .separador_com_borda_footer{
        display: flex;
    }
    .conteiner_footer{
        flex-direction: column;
        align-items: center;
    }
    .item_footer{
        align-items: center;
    }
    .redes_sociais{
        align-items: center;
        text-align: center;
        padding: 0 70px;
    }
}
