/* ===== BASE ===== */
.site-home-footer {
    background-color: #1f1f1f;
    color: #ddd;
    padding: 60px 0 0;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== TÍTULOS ===== */
.site-home-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.site-home-footer-title.highlighted-title {
    font-family: 'Montserrat', 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #3079bf;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 6px;
}

/* ===== MENU ===== */
.site-home-footer-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    column-count: 1;
}

.site-home-footer-menu-item {
    margin-bottom: 10px;
}

.site-home-footer-menu-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #c4c4c4;
    text-decoration: none;
    padding: 4px 0;
    transition: all 0.2s ease-in-out;
    opacity: 0.9;
}

.site-home-footer-menu-link i {
    margin-right: 10px;
    font-size: 16px;
    color: #aaa;
    transition: color 0.3s ease;
}

.site-home-footer-menu-link:hover {
    color: #eee;
    transform: translateX(3px);
    opacity: 1;
}

.site-home-footer-menu-link:hover i {
    color: #eee;
}

/* ===== CONTATO ===== */
.site-home-footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.site-home-footer-contact p i {
    color: #bbb;
    font-size: 17px;
    min-width: 20px;
    transition: color 0.3s ease;
}

.site-home-footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-home-footer-contact a:hover {
    color: #eee;
    text-decoration: underline;
}

/* ===== BOTÃO ===== */
.site-home-footer-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    margin-top: 10px;
    background-color: #bbb;
    border: none;
    color: #222;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.site-home-footer-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.04);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #111;
}

/* WhatsApp (permanece verde) */
.site-home-footer-btn.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.site-home-footer-btn.btn-whatsapp:hover {
    background-color: #1ebe5b;
    color: #fff;
}

/* ===== RODAPÉ INFERIOR ===== */
.site-home-footer-bottom {
    background-color: #141414;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-home-footer-bottom .site-home-footer-copyright {
    color: #777;
    font-size: 13px;
    margin: 0;
    text-align: left;
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-home-footer-bottom .site-home-footer-copyright a {
    color: #5b6a54;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.site-home-footer-bottom .site-home-footer-copyright a:hover {
    color: #ccc;
    text-decoration: underline;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .site-home-footer-title {
        font-size: 14px;
    }

    .site-home-footer-menu-link {
        font-size: 13px;
    }

    .site-home-footer-menu-item {
        margin-bottom: 6px;
    }

    .site-home-footer-btn {
        font-size: 13px;
        width: 100%;
        padding: 10px;
    }

    .site-home-footer-bottom .site-home-footer-copyright {
        text-align: center;
        font-size: 13px;
        padding-top: 10px;
    }

    .site-home-footer .col-lg-2,
    .site-home-footer .col-lg-4 {
        margin-bottom: 30px;
    }
}