
/*--------------------------------------------------------------
# Rodapé (Versão Minimalista P&B)
--------------------------------------------------------------*/
.site-footer {
    background-color: #080808;
    padding: 80px 0 40px 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo {
    max-height: 150px;
    opacity: 0.8;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

/* Linha de destaque sob o título */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    /* COR MUDOU: Acento dourado removido, agora é branco */
    background-color: rgba(255, 255, 255, 0.5); 
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact i {
    /* COR MUDOU: Acento dourado removido, agora é branco */
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    margin-right: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* EFEITO MUDOU: Fundo branco e ícone preto ao passar o mouse */
.social-icons a:hover {
    background-color: #ffffff;
    color: #080808;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
}

.footer-hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom .credits {
    margin-top: 5px;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #a0a0a0; /* Mantém a cor cinza para os créditos */
}