
.site-footer {
    background-color: #262626; /* Um cinza bem escuro, quase preto */
    color: #a0a0a0; /* Cor de texto suave para contraste */
    font-family: var(--fonte-principal, sans-serif);
    padding: 4rem 2rem 1rem 2rem;
    margin-top: 4rem; /* Garante um espaço antes do rodapé */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Em desktop, cria 3 colunas flexíveis */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--fonte-titulos, serif);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Linha de destaque abaixo dos títulos */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--cor-primaria, #8C1D18);
    height: 2px;
    width: 50px;
}

.footer-logo-col {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-col img {
    height: 50px;
    width: auto;
    background-color: #fff;
    border-radius: 50%;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
    color: #fff;
    padding-left: 5px; /* Efeito sutil de deslocamento */
}

.footer-social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.1);
    margin: 0 0.5rem 0.5rem 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-social-links a:hover {
    color: #fff;
    background-color: var(--cor-primaria, #8C1D18);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}