.elementor-206 .elementor-element.elementor-element-838c028{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:-15px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-206 .elementor-element.elementor-element-838c028:not(.elementor-motion-effects-element-type-background), .elementor-206 .elementor-element.elementor-element-838c028 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#343A40;}.elementor-206 .elementor-element.elementor-element-838c028.e-con{--flex-grow:1;--flex-shrink:0;}.elementor-206 .elementor-element.elementor-element-681f3e3{width:var( --container-widget-width, 83% );max-width:83%;--container-widget-width:83%;--container-widget-flex-grow:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-206 .elementor-element.elementor-element-681f3e3{--container-widget-width:383px;--container-widget-flex-grow:0;width:var( --container-widget-width, 383px );max-width:383px;}.elementor-206 .elementor-element.elementor-element-681f3e3.elementor-element{--align-self:center;}}/* Start custom CSS for html, class: .elementor-element-681f3e3 *//* --- Estilos Gerais do Rodapé --- */
#footer-procondutor {
    background-color: #343a40; /* Cor de fundo escura, como no site */
    color: #f8f9fa; /* Cor da fonte clara */
    padding: 40px 0 20px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

#footer-procondutor .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Linha Superior (Colunas) --- */
.footer-top {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar as colunas em telas menores */
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separador sutil */
    padding-bottom: 20px;
}

.footer-column {
    width: 20%; /* Define uma largura para as colunas de links (4 colunas) */
    min-width: 200px; /* Garante que não fiquem muito estreitas */
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #ced4da;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    color: #ffc107; /* Cor de destaque (amarelo/laranja) ao passar o mouse */
}

/* --- Estilização da Newsletter --- */
.footer-column.newsletter {
    flex-grow: 1; /* Permite que esta coluna ocupe o espaço restante */
    max-width: 300px;
}

.newsletter input[type="email"], 
.newsletter button {
    padding: 10px;
    border: none;
    margin-bottom: 10px;
    font-size: 0.9em;
    border-radius: 4px;
}

.newsletter input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    background-color: #495057;
    color: #ffffff;
}

.newsletter button {
    width: 100%;
    background-color: #ffc107; /* Cor de destaque */
    color: #343a40;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #e0a800;
}

/* --- Ícones Sociais (Estilização) --- */
.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #495057;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    font-size: 0.8em;
}

/* --- Linha Inferior (Selos e Pagamentos) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center; /* Alinha verticalmente */
}

.footer-bottom h4 {
    font-size: 1em;
    margin-bottom: 5px;
}

/* Estilização específica dos ícones de pagamento */
.payment-icons i {
    font-size: 2.2em; /* Tamanho maior para ícones de pagamento */
    margin-right: 10px;
    color: #adb5bd; /* Cor clara sutil */
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: #ffc107; /* Destaque ao passar o mouse */
}

/* Estilização dos ícones de segurança */
.security-icons i {
    font-size: 1.5em;
    margin-right: 5px;
    color: #28a745; /* Cor verde para segurança */
}

.security-icons .security-text {
    font-size: 0.9em;
    color: #ced4da;
}


/* --- Direitos Autorais --- */
.footer-copyright {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright p {
    font-size: 0.8em;
    color: #ced4da;
}

/* --- Media Query para Responsividade --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        min-width: auto;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .footer-column.newsletter {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-pagamentos, .footer-seguranca {
        margin-bottom: 15px;
    }
}/* End custom CSS */