.resumo{
    margin-top: 0px;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--off-white);
    box-shadow: inset 0 5px 15px -5px rgba(0, 0, 0, 0.7);

   
}

.resumo--imagem{
    width: 30vw;
    max-width: 100%;
    max-height: 295px;
    flex-shrink: 2;
    
}

.resumo__conteudo--box{
    width: 37.5vw;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25)inset; 
    border-top-left-radius: 57px; 
    border-bottom-right-radius: 87px;
    flex-shrink: 1;
   
}

.resumo__conteudo--titulo{
    align-self: flex-start;
    padding: 0 2rem;
    width: 90%;
    color: var(--black);
    font-size: 2vw;
}

.resumo__conteudo--paragrafo{

    width: 90%;
    text-align: justify;
    color: var(--black);
    font-size: 1.3vw;
    font-family: Open Sans;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow: hidden;
}




    /* layout para celular */
@media (max-width: 767px) {
   
    .resumo{
        flex-direction: column;
        justify-content: space-around;
        height: 520px;
    }

    .resumo--imagem{
      min-width: 80vw;width: 50vw;
        max-width: 80%;
        margin: 20px 10px;
        
    }

    .resumo__conteudo--box{
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25)inset; 
        border-top-left-radius: 57px; 
        border-bottom-right-radius: 87px;
        flex-shrink: 1;
        margin-top: 10px;
        margin-bottom: 3rem;
        

    }
    
    .resumo__conteudo--titulo{
        
        padding: 1.3rem 2rem;
        width: 90%;
        color: var(--black);
        font-size: 2rem;
    }
    
    .resumo__conteudo--paragrafo{
        width: 90%;
        text-align: justify;
        color: var(--black);
        font-size: 1rem;
        font-family: Open Sans;
        font-weight: 500;
        line-height: 1.4;
        word-wrap: break-word;
        overflow: hidden;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }




  }


  @media (max-width: 1100px) {
   
  
    .resumo--imagem{
        width: 40vw;
        max-width: 100%;
        max-height: 295px;
        flex-shrink: 2;
        
    }






  }