.e-container.e-root-container {
    padding-right: max(var(--padding-right),(100% - var(--content-width))/2);
    padding-left: max(var(--padding-left),(100% - var(--content-width))/2);
}
/* --- Estilo Rodapé (Olimac Móveis - Tema Claro) --- */

/* Garante que o Font Awesome funcione */
.site-footer-olimac .fa {
    font-family: 'FontAwesome' !important;
}

.site-footer-olimac {
    background-color: #f9f9f9; /* Fundo branco/cinza claro */
    color: #555; /* Texto principal escuro */
    padding: 60px 20px 0;
    font-family: var(--site-main-font); /* Fonte do seu tema */
    border-top: 1px solid #ddd; /* Borda superior sutil */
    margin-top: 60px; /* Margem para não grudar no conteúdo */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Responsividade */
    justify-content: space-between;
    gap: 30px; /* Espaço entre colunas */
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px; /* Largura mínima para 4 colunas */
}

/* Coluna 1: Logo e Social */
.footer-brand .footer-logo {
    max-width: 200px; /* Tamanho da logo */
    height: auto;
    margin-bottom: 15px;
}

.footer-brand .footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

.footer-socials a {
    color: #555; /* Ícones escuros */
    font-size: 28px;
    margin-right: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #000;
}

/* Colunas 2, 3 e 4 */
.footer-links h3,
.footer-contact h3,
.footer-payment h3 {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

/* Coluna 2: Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

/* Coluna 3: Contato */
.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Botão WhatsApp Verde (Padrão) */
.footer-whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.footer-whatsapp-btn .fa {
    margin-right: 8px;
}

.footer-whatsapp-btn:hover {
    background-color: #1ebe58;
}

/* Coluna 4: Pagamento */
.footer-payment p {
    font-size: 14px;
}
.footer-payment .payment-logos {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}


/* Barra de Copyright */
.footer-bottom {
    border-top: 1px solid #eee; /* Linha divisória */
    padding: 25px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .footer-column {
         /* Faz 2 colunas em tablets */
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Empilha as colunas */
        text-align: center;
    }
    
    .footer-column {
        min-width: 100%; /* Coluna única */
    }
    
    .footer-socials {
        margin-bottom: 20px;
    }

    .footer-socials a {
        margin: 0 10px;
    }
}