.btn-comprar, .botao-comprar {
  animation: pulse 1.5s infinite ;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.listagem.com-caixa .listagem-item .acoes-produto {
  border: 1px solid #000000 ;
}

.listagem.com-caixa .listagem-item {
  border: 5px solid #000000 ;
}



/* Ajustes gerais para mobile */
@media only screen and (max-width: 768px) {
  /* Ajuste do container para não cortar */
  .bandeiras-produto {
    position: relative;
    overflow: visible ;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0.5rem 0; /* ajuste conforme layout */
  }

  /* Ajuste da bandeira de frete grátis */
  .bandeira-frete-gratis {
    position: relative ; /* evita corte; se quiser sobreposição, use absolute com left */
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
    z-index: 10;
    /* Se preferir sobrepor à imagem:
    position: absolute ;
    top: 0.5rem ;
    left: 0.5rem ;
    transform: none ;
    */
  }
}

/* Ajuste extra para telas bem pequenas */
@media only screen and (max-width: 480px) {
  .bandeira-frete-gratis {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
  }
}