.elementor-414 .elementor-element.elementor-element-92cf6dd{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-414 .elementor-element.elementor-element-92cf6dd:not(.elementor-motion-effects-element-type-background), .elementor-414 .elementor-element.elementor-element-92cf6dd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#121212;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f6fe2cb *//**
 * ===================================================================
 * CSS PARA O RODAPÉ DO SITE
 * ===================================================================
*/

/* --- Container Geral do Rodapé --- */
.site-footer {
    background-color: #121212; /* Preto suave */
    color: #a0a0a0; /* Cinza claro para o texto padrão */
    padding: 60px 0 20px 0;
    font-family: system-ui, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Parte Principal com as Colunas --- */
.footer-main {
    display: grid;
    /* Cria 4 colunas que se ajustam em telas menores */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; /* Espaço entre as colunas */
    margin-bottom: 40px;
}

.footer-col-titulo {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

/* --- Links e Listas --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.site-footer a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #FF6600; /* Cor laranja da sua marca no hover */
}

/* --- Contato e Botão --- */
.footer-contato-telefone {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.btn-anuncie {
    display: inline-block;
    background-color: transparent;
    color: #FF6600;
    border: 2px solid #FF6600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-anuncie:hover {
    background-color: #FF6600;
    color: #ffffff;
}

/* --- Ícones de Redes Sociais --- */
.footer-social-icons {
    display: flex;
    gap: 20px; /* Espaço entre os ícones */
}

.footer-social-icons svg {
    fill: #a0a0a0; /* Cor dos ícones */
    transition: fill 0.3s ease;
}

.footer-social-icons a:hover svg {
    fill: #FF6600; /* Cor laranja no hover */
}

/* --- Barra Inferior de Créditos --- */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-copyright, .footer-dev {
    margin: 0;
}

.footer-dev strong {
    color: #ffffff;
}


/* --- Responsividade para Celulares --- */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr; /* Duas colunas em telas médias */
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer-main {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
        text-align: center;
    }
    .footer-social-icons {
        justify-content: center;
    }
}/* End custom CSS */