/* =========================================================
   ESTILO DO RODAPÉ (FOOTER) - CAPELINHA MG
   ========================================================= */

.footer-site {
    background-color: #1e1714;
    color: #cbbfae;
    padding: 3rem 8% 1.5rem 8%;
    border-top: 4px solid #8b4513;
    font-family: 'Noto Sans', sans-serif;
}

.footer-site .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-site .footer-logo {
    max-width: 130px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0.9);
}

.footer-site .footer-col h4 {
    font-family: 'Merriweather', Georgia, serif;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #3d322b;
    padding-bottom: 0.4rem;
}

.footer-site .footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbbfae;
}

.footer-site .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-site .footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-site .footer-col a {
    color: #cbbfae;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-site .footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-site .social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-site .social-links-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-site .social-links-grid img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-site .footer-bottom {
    border-top: 1px solid #3d322b;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #8c7f72;
}

@media (max-width: 768px) {
    .footer-site {
        padding: 2.5rem 5% 1.5rem 5%;
    }
}