.procedimentos {
    display: grid;
    grid-template-columns: 75%;
    grid-template-rows: max-content;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #F8E9DE;
}

.descontos {
    text-align: center;
    font-family: 'J-SemiBold';
    font-size: 1.9rem;
}

.text-procedimento {
    margin-top: 10px;
    font-family: 'J-Regular';
    color: #898989;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.img-procedimento {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: max-content;



}

.item-img-proced {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content;
    text-align: center;
    font-family: 'J-SemiBold';
    color: #685F57;
}

.text-proced {
    padding-top: 10px;
}

.item-img-proced img {
    width: 90%;
    height: auto;
}

@media only screen and (max-width: 750px) {
    .procedimentos {
        display: grid;
        grid-template-columns: 90%;
        grid-template-rows: max-content;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #F8E9DE;
    }

    .descontos {
        text-align: center;
        font-family: 'J-SemiBold';
        font-size: 1.2rem;
    }

    .text-procedimento {
        margin-top: 10px;
        font-family: 'J-Regular';
        color: #898989;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .img-procedimento {
        display: grid;
        grid-template-columns: 45%;
        justify-content: center;
        grid-template-rows: max-content;
        column-gap: 20px;
    }

    .text-proced{
        font-size: 1rem;
        text-align: center;
    }

    
}