/* Produtos e Prêmios */
.premios,
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.product-block.reverse {
    flex-direction: row-reverse;
}

.product-img-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.product-text-block {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f5f5f5;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #c9a66b;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-stats {
    font-size: 14px;
    font-weight: 500;
    color: #e0c97a;
}

@media (max-width: 768px) {
    .product-block,
    .product-block.reverse {
        flex-direction: column;
    }

    .product-img {
        max-width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }
}
