.cartoes{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;   
}

.cartao{
    flex: 0 0 200px;
    margin: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    border-radius: 20px
}

.cartao img{
 max-width: 100%;
 border-radius: 20px
}

.cartao .texto {
    padding: 0 20px 20px;
    text-align: justify;
}

.cartao .texto > button{
    background-color: #007BFF;
    color: white;
    padding: 10px;
    width: 100%;
}

.desativa{
    display: none;
}