.products-section { padding: 60px 5%; text-align: center; background: var(--light); }
.product-filters { margin-bottom: 30px; }
.filter-tag { 
    display: inline-block; 
    padding: 8px 20px; 
    background: #fff; 
    border: 1px solid var(--primary); 
    border-radius: 20px; 
    margin: 5px; 
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    /* 1. Aumentamos o mínimo para 300px para evitar cards "tripa" */
    /* 2. Usamos calc para garantir que em telas grandes não passe de 4 colunas */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 25px;
    padding: 20px;
    
    /* 3. Definimos uma largura máxima que comporte exatamente 4 colunas largas */
    max-width: 1400px; 
    margin: 0 auto;
}

.product-card { 
    background: #fff; 
    padding: 20px; 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    position: relative;
    transition: 0.3s;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img { width: 100%; height: auto; border-radius: 4px; margin-bottom: 15px; }
.product-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.product-desc { font-size: 0.9rem; color: #666; margin-bottom: 20px; min-height: 50px; }
.product-descr { font-size: 0.9rem; color: #666; margin: 0px; padding: 0px;text-align: left; padding-left:5% }

.product-badge { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: var(--secondary); 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 4px; 
    font-size: 0.8rem; 
}

.btn-cotacao { 
    display: block; 
    background: var(--primary); 
    color: #fff; 
    text-decoration: none; 
    padding: 10px; 
    border-radius: 4px; 
    font-weight: bold;
}
.product-card img { 
    width: 100%; 
    height: 380px; /* Define uma altura fixa para a área da imagem */
    object-fit: contain; /* Faz a imagem caber no espaço sem cortar ou esticar */
    margin-bottom: 15px;
    background-color: #fcfcfc; /* Fundo sutil para imagens com fundo transparente */
}
.product-card:hover { transform: scale(1.03); }
/* Container do Card precisa ser relative */
.product-card {
    position: relative;
    /* ... seus outros estilos ... */
}

/* A etiqueta de promoção */
.badge-promo {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000; /* Vermelho vibrante */
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}