
/* ============================
   PROMOÇÕES - GRID CORRIGIDO
============================= */

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

/* Card */
.promocao-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Imagem do card */
.promocao-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Tablet */
@media (max-width: 1024px) {
    .promocoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 768px) {
    .promocoes-grid {
        grid-template-columns: 1fr;
    }
}
