/* footer_style.css - Estilos Exclusivos do Rodapé */

/* --- ESTRUTURA GERAL --- */
.site-footer { 
    background-color: #050c16; /* Ou var(--deep-bg) se quiser escuro total */
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding: 60px 20px 20px; 
    font-family: 'Poppins', sans-serif; 
    margin-top: auto; 
}

.footer-content { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
}

/* --- COLUNAS E TÍTULOS --- */
.footer-col h3 { 
    color: #fff; 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
    position: relative; 
    display: inline-block; 
}
.footer-col h3::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: -8px; 
    width: 40px; 
    height: 3px; 
    background: #00f2ff; /* var(--primary-cyan) */
    border-radius: 2px; 
}

.footer-desc { 
    color: #8892b0; /* var(--text-gray) ajustado */
    font-size: 0.9rem; 
    line-height: 1.6; 
}

/* --- LINKS --- */
.footer-links { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.footer-links li { 
    margin-bottom: 10px; 
}
.footer-links a { 
    color: #8892b0; 
    text-decoration: none; 
    transition: 0.3s; 
    font-size: 0.9rem; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.footer-links a:hover { 
    color: #00f2ff; /* var(--primary-cyan) */
    padding-left: 5px; 
}

/* --- REDES SOCIAIS --- */
.social-icons { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
}
.social-btn { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.05); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-decoration: none; 
    transition: 0.3s; 
}
.social-btn:hover { 
    background: #00f2ff; /* var(--primary-cyan) */
    color: #000; 
    transform: translateY(-3px); 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* --- RODAPÉ INFERIOR (COPYRIGHT) --- */
.footer-bottom { 
    text-align: center; 
    margin-top: 60px; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    color: #555; 
    font-size: 0.8rem; 
}
.footer-bottom a:hover {
    color: #00f2ff !important;
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
/* (Movido do style.css para cá, pois faz parte dos elementos de contato do rodapé/site) */
.whatsapp-btn { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 60px; 
    height: 60px; 
    background: #25d366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 30px; 
    box-shadow: 0 10px 30px rgba(37,211,102,0.4); 
    z-index: 9999; 
    transition: 0.3s; 
    text-decoration: none; 
}
.whatsapp-btn:hover { 
    transform: scale(1.1); 
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}