#steps {
    text-align: center;
    padding: 1.5rem 0;
    background: #164D84;
}

#steps .container>div {
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin: 0 auto;
}

/* Linha vermelha central */
#steps .container>div::before {
    content: '';
    position: absolute;
    height: 11px;
    background: #DC3545;
    width: calc(95%);
    left: 3%;
    top: 31px;
    z-index: 1;
    border-radius: 10px;
}

#steps .step {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: center;
    width: 33.33%;
    padding-top: 70px;
    font-style: italic;
}

/* Círculo vermelho base */
#steps .step::before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #DC3545;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Círculo verde interno com check */
#steps .step:not(.current)::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00a046;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 6px solid #DC3545;
}

/* Check symbol */
#steps .step:not(.current)::before {
    content: '✓';
    background: none;
    color: white;
    font-size: 45px;
    font-weight: bold;
    line-height: 75px;
    margin-left: -6px;
    z-index: 3;
}

/* Step atual (3) */
#steps .step.current::before {
    background: #003366;
    content: '3';
    color: white;
    font-size: 35px;
    line-height: 62px;
    border: 6px solid #DC3545;
    width: 70px;
    height: 70px;
}