/* =========================================
   FOOTER (RODAPÉ)
   ========================================= */
.site-footer {
    background-color: var(--color-primary-dark, #1A3D5D);
    color: #ffffff;
    position: relative;
    margin-top: 100px; /* Espaço para o CTA sobrepor */
}

/* ================== CTA OVERLAY ================== */
.footer-top-cta {
    transform: translateY(-50%);
    margin-bottom: -50px;
    z-index: 20;
    position: relative;
}

.cta-container {
    background: linear-gradient(135deg, var(--color-primary, #004A80), #00335c);
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--color-primary-light, #337AB7);
}

.cta-text h3 {
    margin: 0 0 8px 0;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.cta-text p {
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.cta-button {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-footer {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: var(--color-primary-dark);
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta-footer i { margin-right: 6px; }

.btn-cta-footer:hover {
    background: #f1c40f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    box-shadow: none;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ================== MAIN GRID ================== */
.footer-main {
    padding: 40px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* Branding Column */
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.footer-brand .footer-logo h2 span {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    transition: 0.3s;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-circle:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 10px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-links li a:hover i {
    color: #f1c40f;
}

/* Info Lists (Atendimento/Local) */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-info-list li .icon-accent {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-info-list li strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-info-list li span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
}

/* ================== FOOTER BOTTOM ================== */
.footer-bottom {
    background-color: #0b1a28;
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .cta-button {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-top-cta {
        margin-bottom: -30px;
    }
    .fb-flex {
        flex-direction: column;
        text-align: center;
    }
}

.mt-20 { margin-top: 20px; }