footer {
    background-color: var(--bg-card);
    border-top: 1px solid #27272A;
    padding: 40px;
    display: flex;
    flex-direction: column;
    font-family: var(--texto-comum);
    font-size: 14px;
    color: var(--texto-muted-foreground);
}
footer .letter-space {
    letter-spacing: -2px;
}
footer .footer-top,
footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .footer-top h2 {
    font-family: var(--texto-logo);
    font-size: 24px;
    font-weight: 400;
    color: var(--texto-foreground);
}
footer .footer-social {
    text-decoration: none;
    color: var(--texto-muted-foreground);
    display: flex;
    gap: 5px;
}
footer .footer-divider {
    height: 1px;
    background-color: #27272A;
    margin: 25px 0;
}
footer .footer-bottom p {
    font-weight: 400;
}
footer .footer-bottom a {
    text-decoration: none;
    color: var(--texto-muted-foreground);
}
footer .footer-bottom a:hover,
footer .footer-social:hover {
    color: var(--red-primary);
    transition: 0.3s;
}