.produtos-container {
  position: relative;
  margin-bottom: 40px;
}

.produtos-scroll {
  overflow-x: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.produtos-scroll::-webkit-scrollbar {
  display: none;
}

.produto-item {
  display: inline-block;
  width: 25%;
  vertical-align: top;
  padding: 10px;
  box-sizing: border-box;
}

.seta-navegacao {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  user-select: none;
}

.seta-esquerda {
  left: 0;
}

.seta-direita {
  right: 0;
}

