/* ============================================= */
/* ESTILOS DO RODAPÉ (FOOTER) - VERSÃO CORRIGIDA E CENTRALIZADA */
/* ============================================= */

.site-footer {
    background-color: #003366;
    color: #a9d4ff;
    padding: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* Coluna 1: Logo */
.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Títulos das colunas (h4) */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    position: relative;
    border-bottom: none;
    text-align: center;
}

/* Linha amarela decorativa */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background-color: #ffcc00;
}

/* Listas de Contato e Navegação */
.contact-list, .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li, .footer-nav li {
    margin-bottom: 12px;
}

.contact-list a, .footer-nav a {
    color: #a9d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover, .footer-nav a:hover {
    color: #ffffff;
}

.contact-list i {
    margin-right: 10px;
    color: #ffcc00;
    width: 20px;
    text-align: center;
}

/* Coluna "Siga-nos" - Centralização com Flexbox */
.footer-col:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #ffcc00;
    color: #003366;
    transform: translateY(-3px);
}

/* Barra Inferior */
.footer-bottom-bar {
    background-color: #002346;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.85rem;
    color: #a9d4ff;
}