.elementor-kit-5{--e-global-color-primary:#53150B;--e-global-color-secondary:#141414;--e-global-color-text:#4F392A;--e-global-color-accent:#988071;--e-global-color-066a492:#B0A093;--e-global-color-f41f7ef:#DAD1C9;--e-global-color-14771e4:#020202;--e-global-color-7da5c55:#F2F2F2;--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:"montserrat";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"acroterion-jf";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-f41f7ef );}.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){--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);}.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 *//* Container pai */
.how-steps{
    position: relative;
}

/* Cada passo */
.how-steps .how-step{
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
}

/* Bolinha */
.how-steps .how-step::before{
    content: "";
    position: absolute;
    left: 18px;
    top: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #434F58;
    transform: translateX(-50%);
    z-index: 2;
    transition: background .25s ease;
}

/* Linha */
.how-steps .how-step::after{
    content: "";
    position: absolute;
    left: 18px;
    top: 30px;
    height: calc(100% + 5px);
    width: 3px;
    transform: translateX(-50%);
    z-index: 1;
    background: linear-gradient(
        to bottom,
        #ED6B3E 0,
        #ED6B3E calc(var(--line-progress, 0) * 100%),
        #434F58 calc(var(--line-progress, 0) * 100%),
        #434F58 100%
    );
    transition: background .12s linear;
}

/* Passo final: sem linha */
.how-steps .how-step.last-step::after{
    display: none !important;
}

/* Bolinha ativa */
.how-steps .how-step.is-complete::before{
    background: #ED6B3E;
}

/* Evitar overflow lateral */
html, body{
    overflow-x: hidden;
}/* End custom CSS */