/* FOOTER */
footer {
    background-color: var(--bg-footer);
    padding: 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.contato .tel > div {
    display: flex;
    flex-direction: column;
}
.contato .tel > div > span {
    margin-block: -3px;
}
.contato > div {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contato i {
    font-size: 1.4rem;
    color: var(--first-color);
    text-align: center;
}

footer .copyright {
    font-size: 0.7rem;
    margin-bottom: -20px;
    text-align: center;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social-media a {
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
}
.social-media a:hover {
    border-color: var(--first-color);
    color: var(--first-color);
}
/* FIM FOOTER */