body{
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}

.stp-pb-0{
    padding-bottom: 0;
}

.stp-frm-grp{
    width: 100%;
}
.stp-frm-grp.mb{
    margin-bottom: 26px;
}

.stp-j-center{
    justify-content: center;
}
.stp-d-flex{
    display: flex;
}
.stp-j-end{
    justify-content: end;
}

.stp-frm-grp label{
    display: block;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}
.stp-frm-grp label .required{
    color: #e1544c;
    font-size: 16px;
}

.stp-frm-grp select{
    width: 100%;
    border: 2px solid #333333;
    border-radius: 6px;
    padding: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Para corrigir o estilo no Safari */
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMzAgMzMwIiBmaWxsPSIjMDAwMDAwIj4gPHBhdGggZD0iTTMyNS42MDcgNzkuMzkzYy01Ljg1Ny01Ljg1Ny0xNS4zNTUtNS44NTgtMjEuMjEzIDAuMDAxbC0xMzkuMzkgMTM5LjM5M0wyNS42MDcgNzkuMzkzYy01Ljg1Ny01Ljg1Ny0xNS4zNTUtNS44NTgtMjEuMjEzIDAuMDAxLTUuODU4IDUuODU4LTUuODU4IDE1LjM1NSAwIDIxLjIxM2wxNTAuMDQgMTUwYzIuODEzIDIuODEzIDYuNjI4IDQuMzkzIDEwLjYwNiA0LjM5M3M3Ljc5NC0xLjU4MSAxMC42MDYtNC4zOTRsMTQ5Ljk5Ni0xNTBjNS44NTgtNS44NTcgNS44NTgtMTUuMzU1IDAtMjEuMjEzeiIvPjwvc3ZnPg==') no-repeat right 16px center;
    background-size: 16px; /* Ajusta o tamanho da seta */
    background-color: #fff; 
    cursor: pointer;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}



.stp-frm-grp select:focus{
    outline: none;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}

.stp-frm-grp .input{
    width: 100%;
    border: 2px solid #333333;
    border-radius: 4px;
    padding: 18px;
    background-color: #fff;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

.stp-frm-grp .input:focus{
    outline: none;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}

.stp-btn-form{
    width: 160px;
    padding: 14px 0 14px 0;
    border-radius: 60px;
    background-color: #e04941;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}


.section-title{
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title h1 {
    font-size: 42px;
    color: #333333;
    text-align: center;
    margin: 0;
}

.section-title p{
    font-size: 20px;
    color: #333333;
    text-align: center;
    padding-top: 42px;
    padding-bottom: 0;
}

.section-form{
    background-color: #edeaea;
    color: #333333;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-form h4{
    font-size: 28px;
    color: #333333;
    text-align: center;
    margin-bottom: 34px;
    margin-top: 0;

}

.section-form .wrapper-steps{
    position: relative;
    display: block;
    margin: 0 auto;
    width: 112px;
    height: 40px;
}

.section-form .wrapper-steps .circle{
    position: absolute;
    top:0;
    width: 40px;
    height: 40px;
    background-color: #edeaea;
    border: 1px #333333 solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-form .wrapper-steps .circle .number{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}
.section-form .wrapper-steps .circle.left{
    left: 0;
}
.section-form .wrapper-steps .circle.right{
    right: 0;
}

.section-form .wrapper-steps .circle.active{
    background-color: #3222e3;
    border: 1px #3222e3 solid;
}

.section-form .wrapper-steps .circle.active .number{
    color: #fff;
}

.section-form .wrapper-steps .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #787777;
    width: 24px;
    height: 2px;
}

.section-form .mt-form{
    margin-top: 30px;
}

@media (max-width: 992px) {
    .section-title{
        padding-top: 40px;
        padding-bottom: 78px;
    }
    .section-title h1{
        font-size: 32px;
    }
    .section-title p{
        padding-top: 20px;
    }

    .section-form h4{
        font-size: 24px;
    }
}




