.elementor-256 .elementor-element.elementor-element-ff0a931{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-256:not(.elementor-motion-effects-element-type-background), body.elementor-page-256 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS *//* AJUSTE DO SCROLL LATERAL */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* CONTEINER PAI */
.text-wrapper {
    display: flex;
    padding-top: 2px;
}

/* FAIXA NÚMERO 1 */
#text-wrapper1 {
    background: #f0347c;
}

/* FAIXA NÚMERO 2 */
#text-wrapper2 {
    background: purple;
}

/* FAIXA NÚMERO 3 */
#text-wrapper3 {
    background: orange;
}

/* FAIXA NÚMERO 4 */
#text-wrapper4 {
    background: pink;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
}

/* TEXTO INTERNO DA FAIXA */
.text-wrapper h1 {
    white-space: nowrap;
    font-family: "Rubik";
    text-transform: uppercase;
    display: inline;
}

/* TEXTO DA FAIXA NÚMERO 1 */
#text-wrapper1 h1 {
    color: white;
    font-size: 15px;
    animation: animafaixa 5s linear infinite;
}

/* TEXTO DA FAIXA NÚMERO 2 */
#text-wrapper2 h1 {
    color: yellow;
    font-size: 13px;
    animation: animafaixa 3s linear infinite reverse;
}

/* TEXTO DA FAIXA NÚMERO 3 */
#text-wrapper3 h1 {
    color: purple;
    font-size: 22px;
    animation: animafaixa 8s linear infinite reverse;
}

/* TEXTO DA FAIXA NÚMERO 3 */
#text-wrapper4 h1 {
    color: black;
    font-size: 20px;
    animation: animafaixa 3s linear infinite;
}

/* CRIANDO A ANIMAÇÃO */
@keyframes animafaixa {
    0% {
        transform: translateX(0%);
    } 100% {
        transform: translate(-100%);
    }
}/* End custom CSS */