@media only screen and (max-width: 767px) {
  /* Duas colunas de produtos */
  .listagem .listagem-linha > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2px;
    padding: 0;
  }

  .listagem .listagem-linha > ul > li {
    width: 48% !important; /* duas colunas */
    box-sizing: border-box;
    margin: 0 !important;
  }

  /* Imagens ajustadas */
  .listagem .listagem-linha li img {
    width: 100% !important;
    height: auto !important;
    object-fit: 2px;
    display: block;
    margin: 0;
  }

  /* Nome e preço centralizados e proporcionais */
  .listagem .listagem-linha li .info-produto,
  .listagem .listagem-linha li .preco-produto {
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
  }

  /* Botão comprar ajustado */
  .acoes-produto-responsiva {
    position: center;
    width: 60%;
    text-align: center;
    margin: 2px auto 0;
  }
}