.parcas{
   display: flex; 
   justify-content: space-between;
}
.parcas .descricao{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parcas .descricao .texto{
    text-align: center;
    width: 100%;
    padding-left:32px
}
.parcas .descricao .texto h4{
    color: #011B33;
    text-align: center;
    font-family: 'Roboto';
    font-size: 45px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px; /* 120% */
    margin-bottom: 23px;
}
.parcas .descricao .texto p{
    color: #011B33;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px; /* 270% */
}
.parcas .descricao .texto a{
    padding: 10px 30px 10px 30px;
    border-radius: 30px;
    background: #011B33;
    color: #FFF;
    font-family: 'Roboto';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 266.667% */
    text-decoration: none;
}
.parcas .img {
    width: 60%;
}
.parcas .img img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

/* melhoramento para o mobile */
@media (max-width:1100px) {
    .parcas{
        display: flex; 
        justify-content: space-between;
        padding-top: 30px;
     }
     .parcas .descricao{
         width: 100%;
         display: flex;
         flex-flow: column;
         justify-content: center;
         align-items: center;
     }
     .parcas .descricao .texto{
         text-align: center;
         width: 100%;
     }
     .parcas .descricao .texto h4{
         font-size: 35px;
     }
     .parcas .img {
         width: 100%;
         display: none !important;
     }
   
}