.elementor-kit-7{--e-global-color-primary:#779B6E;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#2C2C2A;--e-global-color-accent:#8C6D7E;--e-global-color-672f076:#E0DFD7;--e-global-typography-primary-font-family:"Arial";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Lora";--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Arial";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Lora";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-font-style:italic;background-color:#FFFFFF;}.elementor-kit-7 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 só pra segurança */
.how-steps {
    position: relative;
}

/* Cada passo */
.how-steps .how-step {
    position: relative;
    padding-left: 40px;
    margin: 0 0 32px 0;
}

/* Último passo */
.how-steps .how-step:last-child {
    margin-bottom: 0;
}

/* Bolinha base cinza */
.how-steps .how-step::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d1d1d1;       /* cinza */
    transform: translateX(-50%);
    z-index: 2;                 /* sempre acima da linha */
    transition: background 0.25s ease;
}

/* Linha: trilho cinza + parte roxa controlada por variável */
.how-steps .how-step::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: -38px;              /* mantém o mesmo tamanho que você tinha */
    width: 2px;
    z-index: 1;                 /* atrás da bolinha */
    background: linear-gradient(
        to bottom,
        #8C6D7E 0,
        #8C6D7E calc(var(--line-progress, 0) * 100%),
        #d1d1d1 calc(var(--line-progress, 0) * 100%),
        #d1d1d1 100%
    );
    transition: background 0.12s linear;
}

/* Último passo -> sem linha pra baixo */
.how-steps .how-step:last-child::after {
    display: none;
}

/* Bolinha roxa quando passo está completo */
.how-steps .how-step.is-complete::before {
    background: #8C6D7E;
}/* End custom CSS */