.main {
    background-color: #E6E3C8;
    padding: 1.5em;
}

.main__title {
    font-weight: 500;
    color: rgb(91, 91, 91);
}

.produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.produtos__card {
    background-color: white;
    width: 44%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px #1a1a1a;

    /* display: flex; */
}

.produtos__card__imagem {
    max-width: 100%;
    height: 40%;
}

.produtos__card__imagem img {
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.produtos__card__content {
    height: 50%;
    width: 95%;
    padding: .5em 0 0 .5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produtos__card__content h2 {
    margin: 0;
    font-size: 0.875em;
    font-weight: 700;
    color: #2E3A61;
}

.produtos__card__description {
    color: #ab520d;
    font-size: 0.9em;
    font-weight: 400;
    margin: .5em 0 0 0;
    color: #2E3A61;
}

.produtos__card__valor {
    color: #2E3A61;
    font-size: 1em;
    font-weight: 600;
    text-align: right;
    margin-right: 1em;
}