/* ==========================================================================
   ESTILOS DO RODAPÉ (footer.css)
   ========================================================================== */

   .site__footer.footer {
    padding: 1.2rem 0 !important; 
    background: #000;
    border-top: 1px solid #1a1a1a; 
}

/* Container Flexbox para organizar as 3 colunas */
.vit-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Mesma altura nas 3 colunas; o conteúdo de cada uma centraliza por dentro */
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================== COLUNA ESQUERDA ================== */
.site__footer.footer .footer__left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Especificidade acima do legado em esk8.css (.site__footer .footer__logo { display:inline-block; width:80%; … }) */
.site__footer.footer .footer__logo {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 140px;
    margin: 0;
    line-height: 0;
}

.site__footer.footer .footer__logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================== COLUNA CENTRAL ================== */
.site__footer.footer .footer__center {
    flex: 1;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 6px; 
}

.site__footer.footer .footer__center .lema {
    font-size: 1.1rem;
    color: #ffe20a; 
    text-transform: lowercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

.site__footer.footer .footer__address strong {
    font-size: 0.75rem;
    color: hsla(0,0%,100%,.5);
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

/* ================== COLUNA DIREITA ================== */
.site__footer.footer .footer__right {
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: flex-end;
}

.site__footer.footer .footer__socials {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.site__footer.footer .footer__socials a {
    color: #fff;
    font-size: 1.6rem; 
    transition: all 0.3s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
}

.site__footer.footer .footer__socials a:hover {
    color: #CC5500; 
    opacity: 1;
    transform: translateY(-3px);
}

/* ================== RESPONSIVIDADE (MOBILE) ================== */
@media (max-width: 768px) {
    .vit-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .site__footer.footer .footer__left,
    .site__footer.footer .footer__center,
    .site__footer.footer .footer__right {
        flex: unset;
        width: 100%;
        justify-content: center;
    }
}