/*** Footer ***/
.footer {
    background-color:  #eee6d8;
    color: var(--cinza-texto) !important;
}

.footer h5 {
    color: var(--vermelho_escuro) !important; 
}

.footer .btn.btn-link {
    /* caso precise, altere de volta para block */
    display: inline-block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--cinza-texto);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
    color: var(--vermelho_escuro);
}

.footer .btn.btn-link:hover {
    color: var(--vermelho_escuro);
    font-weight: bolder;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link:focus {
    background: none !important;
    box-shadow: none !important;
}

