.elementor-kit-886{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-18c3ed61:#4054B2;--e-global-color-5e8dd6e2:#23A455;--e-global-color-2532f8e9:#304771;--e-global-color-6c9482c7:#C8AC48;--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-886 e-page-transition{background-color:#FFBC7D;}.elementor-kit-886 button,.elementor-kit-886 input[type="button"],.elementor-kit-886 input[type="submit"],.elementor-kit-886 .elementor-button{border-style:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@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 */a:focus {
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
}
/* --- CSS PARA A PRIMEIRA LISTA (Indo para a Esquerda) --- */
.marquee .elementor-icon-list-items {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    width: max-content !important;
    animation: deslizar 20s linear infinite;
}

.marquee .elementor-icon-list-item {
    flex-shrink: 0;
    margin-right: 40px !important; /* Ajuste o espaço se precisar */
}

@keyframes deslizar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CSS PARA A SEGUNDA LISTA (Indo para a Direita) --- */
.marquee2 .elementor-icon-list-items {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    width: max-content !important;
    /* Aqui chamamos a animação inversa */
    animation: deslizar-reverso 20s linear infinite;
}

.marquee2 .elementor-icon-list-item {
    flex-shrink: 0;
    margin-right: 40px !important;
}

/* Definição da animação inversa */
@keyframes deslizar-reverso {
    0% {
        /* Começa recuado na esquerda (metade do tamanho total) */
        transform: translateX(-50%);
    }
    100% {
        /* Vai até o ponto zero (início da tela) */
        transform: translateX(0);
    }
}/* End custom CSS */