.elementor-kit-2707{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-2707 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 1. Previne rolagem horizontal */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* 2. Classe EXIBIR */
.exibir {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0px) !important;
}

/* 3. Configuração OTIMIZADA das Animações */
.entrada-baixo, .entrada-cima {
    opacity: 0;
    
    /* CORREÇÃO 1: Removi o 'filter' do will-change. 
       Isso libera a memória da placa de vídeo. */
    will-change: opacity, transform;
    
    /* CORREÇÃO 2: Não use 'all'. Especificamos apenas o que muda. 
       Reduzi o tempo levemente para 1.2s para responder melhor ao scroll */
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                filter 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 4. Direções */
.entrada-baixo {
    transform: translateY(50px);
    /* CORREÇÃO 3: Reduzi o blur para 5px. 
       10px é muito pesado para calcular em tempo real no scroll. 
       5px dá o mesmo efeito visual sem travar. */
    filter: blur(5px); 
}

.entrada-cima {
    transform: translateY(-50px);
    filter: blur(5px); 
}

/* 5. Correção Editor Elementor */
body.elementor-editor-active .entrada-baixo,
body.elementor-editor-active .entrada-cima {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    will-change: auto;
}/* End custom CSS */