.steps {
    background: var(--bgPrincipal);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 4rem;
}
.steps__title,
 .loan-simulator__title{
    padding-bottom: 3rem;
    z-index: 50;
}

.steps__container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    gap: 1rem;
    margin: 0 var(--margenDesktop);
    counter-reset: step;
}

.steps__step{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 3rem;
    gap: 1rem;
}


.steps__step > span {
    display: flex;
    gap: .5rem;
    justify-content: center;
    
}

.step__circle::after {
    content: counter(step);
	counter-increment: step;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--verdePrincipal500);
    font-weight: 700;
    color: white;
    z-index: 1;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.steps__container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--verdePrincipal500);
    z-index: 0;
  }

.steps__step > span > h3{
font-size: 19px;
font-weight: 600;
display: flex;
gap: 1rem;

}

.steps__step > span > svg{
    width: 1.7rem;
}
.steps__paragraph {
    font-weight: 500;
    max-width: 400px;
    hyphens: none;
    text-align: center;
    font-size: 19px;
    line-height: 160%;
}
.steps__paragraph > b {
    color: var(--verdeOscuro600);
}

@media (max-width: 1133px) {
    .steps__paragraph {
        font-size: 17px;
    }
}


@media (max-width: 890px) {
 
    .steps__container {
        flex-direction: column;
        
    }
    .steps__paragraph {
        text-align: left;
        font-size: 19px;
        max-width: 800px;
        
        /* padding-left: 4rem;
        padding-bottom: 2rem; */
    }
    .steps__step {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 0 0 4rem;
        gap: 0;
    }
    .steps__step > span > h3 {
        padding-top: .4rem;
    }
    .steps__step > span{
        /* padding-left: 4rem;
        padding-bottom: 1rem; */
        padding-bottom: 1rem;
    }
    .steps__container::before {
    top: auto;
    left: 1rem;
    width: 2px;
    height: calc(100% - 15.8vh);
    }
    .step__circle::after {
        left: 1.2rem;
    }
}
@media (max-width: 744px) and (min-width: 300px) {
    .steps__paragraph, 
    .steps__step > span > h3 {
        font-size: clamp(1rem, 0.811rem + 0.943vw, 1.25rem); 
    }
    .steps__container {
        margin: 0 var(--margenMovil);
    }
}