.promocoes__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26.67px;
    list-style-type: none;
}

.promocoes {
    padding: 32px 12.5%;
}

.promocoes__titulo {
    font-size: 32px;
    line-height: 39px;
    font-family: var(--fonte-titulo);
    color: var(--cor-texto-principal);
    margin-bottom: 32px;
}

.promocoes__list_item {
    box-shadow: 0px 4px 24px 0px #7b7b7b26;
}

.promocoes__list_item img {
    width: 100%;
    object-fit: contain;
}

.promocoes__list_item_descricao {
    color: var(--cor-texto-principal);
    background-color: var(--cor-texto);
    padding: 16px 24px;
}

.promocoes__list_item_descricao h4 {
    font-size: 24px;
    line-height: 30px;
    font-family: var(--fonte-titulo);
    font-weight: 700;
}

.promocoes__list_item_descricao p {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--fonte-texto);
    margin-top: 16px;
    font-weight: 600;
}

@media screen and (min-width: 360px) and (max-width: 460px) {
  .promocoes {
    padding: 32px 16px; /* padding lateral reduzido */
  }

  .promocoes__list {
    padding: 1px; 
  }
}
