.footer-site {
    background-color: #06142c;
    color: var(--main-white);
    padding: 28px 10px 20px 10px;
    font-family: sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    align-items: center;
    padding-bottom: 28px;
}

/* Cada coluna ocupa 1/3 do espaço total */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.left { 
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha o texto e logo na esquerda */
    text-align: left;
}
.footer-col.center { 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
 }
.footer-col.right { 
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
 }

/* Ajuste do tamanho da Logo */
.footer-logo img {
    max-width: 180px; 
    height: auto;
    cursor: pointer;
    margin-bottom: -25px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #dce8ff;
}

/* Botão Hub */
.btn-hub {
    background: var(--btn-gradient-blue);
    color: var(--btn-text);
    padding: 12px 25px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-hub:hover { 
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: var(--btn-gradient-blue-hover);
 }

/* Novas informações de contato abaixo do botão */
.contact-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info a {
    color: #b9c8e8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.contact-info a:hover {
    color: white;
}

/* Redes Sociais */
.social-icons {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 20px; 
    margin-top: 10px; 
}

.social-icons a {
    color: var(--main-white);
    font-size: 1.7rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.ig:hover { color: #E1306C; }
.fb:hover { color: #4267B2; }
.yt:hover { color: #FF0000; }
.wa:hover { color: #25D366; }

/* Barra de Compliance */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #8ea2cb;
}

.footer-bottom a {
    color: #8ea2cb;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #c9d7f3;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .footer-main {
        display: flex; /* Mudado de grid para flex para empilhar melhor */
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col.left, .footer-col.right {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}