.elementor-19303 .elementor-element.elementor-element-140109f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:2em;--padding-bottom:2em;--padding-left:0em;--padding-right:00em;}.elementor-19303 .elementor-element.elementor-element-140109f:not(.elementor-motion-effects-element-type-background), .elementor-19303 .elementor-element.elementor-element-140109f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-19303 .elementor-element.elementor-element-c8f7abc{width:100%;max-width:100%;text-align:center;}.elementor-19303 .elementor-element.elementor-element-c8f7abc > .elementor-widget-container{padding:0em 0em 0em 0em;}.elementor-19303 .elementor-element.elementor-element-c8f7abc img{width:72%;max-width:100%;height:81px;}.elementor-19303 .elementor-element.elementor-element-8db2ebc{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--flex-wrap:wrap;--padding-top:4em;--padding-bottom:4em;--padding-left:0em;--padding-right:0em;}@media(min-width:768px){.elementor-19303 .elementor-element.elementor-element-8db2ebc{--content-width:1140px;}}@media(max-width:1024px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for html, class: .elementor-element-4939324 */body {
    background-color: #D5D5D5 !important;
}

/* ** INÍCIO: Formulário Bluebeefy - CSS ** */


#bluebeefy-quote-app {
    font-family: 'Montserrat', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff; /* Fundo do App deve ser branco para contraste */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}


.bb-title {
    font-size: 24px;
    font-weight: 600;
    color: #007bff; /* Azul primário */
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Campos de Formulário */
.bb-input, .bb-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
}
.bb-filter-container {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}
.bb-label {
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
}

/* ** Acordeão (Lista de Serviços) ** */
.bb-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.bb-accordion-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.2s;
}
.bb-accordion-header:hover {
    background-color: #f1f1f1;
}

.bb-service-name {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding-left: 10px;
}
.bb-service-name small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.bb-price-tag {
    font-size: 20px;
    font-weight: bold;
    color: #dc3545; /* Vermelho queimado para destaque do valor */
    min-width: 100px;
    text-align: right;
}

/* Botão de Expansão/Contração */
.bb-toggle-btn {
    width: 35px;
    height: 35px;
    min-width: 35px; /* Para manter o tamanho em flex */
    background-color: #ff8c00; /* Laranja vibrante */
    color: white;
    border: none;
    border-radius: 50%;
    margin-left: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}
.bb-toggle-btn:hover {
    background-color: #e67e00;
    transform: scale(1.05);
}

/* Checkbox (Customizado) */
.bb-checkbox-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
}
.bb-checkbox {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}
.bb-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f0f0f0; /* Cinza mais claro */
    border-radius: 4px;
    /* Borda fina e escura */
    border: 1px solid #777777; 
    transition: background-color 0.2s, border-color 0.2s;
}
.bb-checkbox:checked ~ .bb-checkmark {
    background-color: #007bff;
    border-color: #007bff; /* Tira a borda cinza quando marcado */
}
.bb-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.bb-checkbox:checked ~ .bb-checkmark:after {
    display: block;
}


/* Conteúdo do Acordeão */
.bb-accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fdfdfd;
}
.bb-accordion-content p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}
.bb-accordion-content p:last-child {
    border-bottom: none;
    padding-bottom: 15px;
}
.bb-accordion-content strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    width: 120px; /* Alinha os valores */
}


/* ** Barra Inferior Fixa ** */
.bb-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}
.bb-bottom-bar.active {
    transform: translateY(0);
}
.bb-bottom-bar.hidden {
    display: none; /* Controlado pelo JS */
}

.bb-summary {
    display: flex;
    flex-direction: column;
}
.bb-total {
    font-size: 16px;
    font-family: "Times New Roman"
    font-weight: 700;
    color: #dc3545; /* Vermelho queimado */
}
.bb-button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bb-button-cta {
    background-color: #007bff; /* Azul primário */
    color: white;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.bb-button-cta:hover {
    background-color: #0056b3;
}
.bb-button-primary {
    background-color: #ff8c00; /* Laranja vibrante */
    color: white;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}
.bb-button-primary:hover {
    background-color: #e67e00;
}

/* ** Modal de Captação de Lead ** */
.bb-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}
.bb-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.bb-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    border: none;
    background: none;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}
.bb-close-button:hover, .bb-close-button:focus {
    color: #000;
    text-decoration: none;
}
.bb-modal-title {
    color: #007bff;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

/* ** Responsividade (Mobile First) ** */
@media (max-width: 768px) {
    #bluebeefy-quote-app {
        padding: 10px;
    }
    .bb-accordion-header {
        flex-direction: row; /* Mantém linha no mobile */
        align-items: flex-start;
        padding: 10px;
    }
    .bb-service-name {
        font-size: 15px; /* Mobile: 15px Roboto Normal (Simulando no Montserrat) */
        padding-left: 5px;
    }
    .bb-price-tag {
        font-size: 14px; /* Mobile: Preço Arial Bold 14pt (Simulando no Montserrat) */
        min-width: 80px;
    }
    .bb-toggle-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 16px;
    }
    .bb-accordion-content p, .bb-accordion-content strong {
        font-size: 14px; /* Mobile: 15px Roboto Normal (Simulando) */
        width: auto;
        display: block;
    }
    .bb-bottom-bar {
        padding: 10px;
        flex-direction: row;
    }
    .bb-total {
        font-size: 18px;
    }
    .bb-button-cta {
        padding: 10px 15px;
        font-size: 12px;
    }
}
/* ** FIM: Formulário Bluebeefy - CSS ** *//* End custom CSS */