
.cards {
    max-width: 1024px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin: 15px auto;
    padding: 20px;

    border-radius: 6px;

    background-color: white;

    /* box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); */
}

.card {
    /* position: relative;   */
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 200px;

    display: flex;
    flex-direction: column;

}

.descricao {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */

    box-sizing: border-box;

}

.card img {
    margin: 0;
    padding: 0;
    width: 200px;
    border-radius: 5px 5px 0 0;
}


.card button {
    /* display: inline-block; */
    width: 140px;
    height: 40px;

    border: none;
    border-radius: 10px;

    background-color: #333;
    color: #eee;

    font-size: 18px;
    font-weight: 500;

    cursor: pointer;

    position: relative;
    bottom: 0;
}