/* ============================================
RODAPÉ INSTITUCIONAL
============================================ */
.rodape-institucional {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 40px 0;
    border-top: 4px solid #2563eb;
}

.rodape-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== TOPO DO RODAPÉ ===== */
.rodape-topo {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== COLUNA LOGO ===== */
.rodape-coluna-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rodape-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.rodape-logo-img {
    height: 38px;
    width: auto;
    display: block;
    border-radius: 5px;
}

.rodape-logo-texto {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.rodape-logo-texto span {
    color: #2563eb;
}

.rodape-descricao {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 400px;
    margin: 0;
}

/* ===== REDES SOCIAIS ===== */
.rodape-redes {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.rodape-rede-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.rodape-rede-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ===== COLUNA MENU ===== */
.rodape-coluna-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rodape-coluna-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.rodape-menu-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rodape-menu-lista li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.rodape-menu-lista li a:hover {
    color: #2563eb;
    transform: translateX(4px);
}

/* ===== COLUNA SEDE ===== */
.rodape-coluna-sede {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rodape-sede-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.rodape-sede-info i {
    color: #2563eb;
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.rodape-sede-info span {
    color: #cbd5e1;
}

.rodape-sede-info strong {
    color: #ffffff;
}

.rodape-whatsapp-link,
.rodape-email-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rodape-whatsapp-link:hover {
    color: #25D366;
}

.rodape-email-link:hover {
    color: #2563eb;
}

/* ===== BASE DO RODAPÉ ===== */
.rodape-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.rodape-copy {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.rodape-creditos {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.rodape-creditos strong {
    color: #94a3b8;
}

/* ============================================
RESPONSIVIDADE
============================================ */
@media (max-width: 992px) {
    .rodape-topo {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .rodape-coluna-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .rodape-institucional {
        padding: 40px 24px 0;
    }
    
    .rodape-topo {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }
    
    .rodape-coluna-logo {
        grid-column: 1;
    }
    
    .rodape-descricao {
        max-width: 100%;
    }
    
    .rodape-base {
        flex-direction: column;
        text-align: center;
        padding: 16px 0 24px;
    }
}

@media (max-width: 480px) {
    .rodape-institucional {
        padding: 30px 16px 0;
    }
    
    .rodape-topo {
        gap: 24px;
        padding-bottom: 24px;
    }
    
    .rodape-logo-img {
        height: 32px;
    }
    
    .rodape-logo-texto {
        font-size: 18px;
    }
    
    .rodape-descricao {
        font-size: 13px;
    }
    
    .rodape-sede-info {
        font-size: 13px;
    }
    
    .rodape-coluna-titulo {
        font-size: 14px;
    }
    
    .rodape-menu-lista li a {
        font-size: 13px;
    }
    
    .rodape-copy {
        font-size: 12px;
    }
    
    .rodape-creditos {
        font-size: 12px;
    }
}