.elementor-kit-7{--e-global-color-primary:#E4DFDA;--e-global-color-secondary:#000000;--e-global-color-text:#7A370A;--e-global-color-accent:#A47B5F;--e-global-color-dcd085b:#FFFFFF;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"EB Garamond";--e-global-typography-secondary-font-weight:500;--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;background-color:var( --e-global-color-primary );font-family:"EB Garamond", Sans-serif;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 h1{font-family:"Montserrat", Sans-serif;font-weight:500;}.elementor-kit-7 h2{font-family:"EB Garamond", Sans-serif;font-weight:500;}.elementor-kit-7 h3{font-family:"EB Garamond", Sans-serif;font-size:40px;font-weight:700;font-style:italic;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end: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 *//* 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;                 /* bolinha acima da linha */
    transition: background 0.25s ease;
}

/* Linha: trilho cinza por trás */
.how-steps .how-step::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: -38px;
    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 */