.elementor-kit-5{--e-global-color-primary:#ADCD3C;--e-global-color-secondary:#111111;--e-global-color-text:#FFFFFF;--e-global-color-accent:#F2EFE8;--e-global-color-f81a419:#F2EFE8;--e-global-color-1a3b053:#9E9D75;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-weight:500;background-color:#F2EFE8;}.elementor-kit-5 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:0%;}.elementor-element{--widgets-spacing:0% 0%;--widgets-spacing-row:0%;--widgets-spacing-column:0%;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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 *//* Personalização da scrollbar */
body::-webkit-scrollbar {
    width: 8px;
    background-color: #05101D;
}

body::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: linear-gradient(#FE0178, #FE0178 9%, #FE0178 83.6%);
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #05101D;
}

/* Objetos rotacionando */

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotacao {
    animation: rotating 9s linear infinite;
    -webkit-animation: rotating 9s linear infinite; /* Para compatibilidade com navegadores WebKit */
}

.marquee-text {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* Rolagem TEXTO */
/* AJUSTE DO SCROLL LATERAL */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* CONTENER PAI */
.text-wrapper {
    display: flex;
    padding-top: 8px;
}

/* FAIXA NÚMERO 1 */
#text-wrapper1 {
    background: white;
}

/* TEXTO INTERNO DA FAIXA */
.text-wrapper h1 {
    white-space: nowrap;
    font-family: "poppins";
    font-size: 24px;
    /text-transform: uppercase;
    display: inline;
}

/* TEXTO DA FAIXA NÚMERO 1 */
#text-wrapper1 h1 {
    color: black;
    animation: animafaixa 15s linear infinite;
}

/* CRIANDO A ANIMAÇÃO */
@keyframes animafaixa {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}/* End custom CSS */