main{
    margin-bottom: 20px;
}

#catalog{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    width: 340px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGEM */
.card_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CORPO */
.card_body {
    padding: 16px 18px 10px 18px;
}

.card_title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.card_features {
    font-size: 14px;
    color: #666;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RODAPÉ FIXO */
.card_footer {
    padding: 14px 18px;
    border-top: 1px solid #eee;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_price {
    font-size: 20px;
    font-weight: 700;
    color: #1f7a3e;
}

.card_cta {
    font-size: 14px;
    font-weight: 600;
    color: #f4a300;
}

.card_link {
    text-decoration: none;
    color: inherit;
}