.container-flex {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px;
}

.titulo {
  font-size: 18px;
  margin-bottom: 20px;
}

.produtos-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /*justify-content: space-between;*/
}

.produto-grupo {
  flex: 1 1 282px;
  min-width: 250px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grupo-titulo {
  font-weight: 600;
  color: #b7a05a;
  margin-bottom: 10px;
  text-align: center;
}

/* Imagem dos cartões */
.cartao-img {
  width: 270px;
  height: 151px; /* proporção original para 350x194 mantendo aspect ratio */
  border-radius: 12px;
  border: 1.2px solid #e5e5e5;
  box-shadow: 0 1px 1px #ccc2;
  object-fit: cover;
  margin-bottom: 7px;
  background: #fff;
  transition: width 0.3s, height 0.3s;
}

.cartao-img.placeholder {
  background: #eee;
  color: #aaa;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartao-wrapper {
  position: relative;
  display: inline-block;
}

.badge-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;   /* ajuste conforme o tamanho do badge */
  height: 64px;  /* ajuste conforme o tamanho do badge */
  z-index: 2;
  pointer-events: none;
}

.spn_round {
    border: 3px solid #f00;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.spn_round p {
    margin-bottom: 2px;
    margin-top: 2px;
}

@media (max-width: 900px) {
  .produtos-flex {
    gap: 16px;
  }
  .produto-grupo {
    max-width: 180px;
  }
  .cartao-img {
    width: 270px;
    height: 151px;
  }
}

@media (max-width: 600px) {
  .produtos-flex {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .produto-grupo {
    min-width: 100%;
    max-width: 270px;
  }
  .cartao-img {
    width: 100%;
    height: auto;
    max-width: 270px;
    min-width: 180px;
  
}
}