.product-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  grid-column: 2/12;
  text-align: center;
}

.product-carousel-slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.product-carousel-slide {
  box-sizing: border-box;
  padding: 0 2px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
}

.product-card {
  padding: 0;
  text-align: center;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.product-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

.product-prev, .product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #D6D6D6;
  color: var(--cor-texto-base);
  opacity: .7;
  border: none;
  padding: 0;
  text-align: center;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3rem;
  font-size: 3.2rem;
  border-radius: 50%;
  z-index: 2;
}

.product-prev { left: 0; }
.product-next { right: 0; }

.product-prev img, 
.product-next img {
  max-width: 100%;
  height: auto;
  display: block;
}

.product-dots {
  text-align: center;
  margin-top: 15px;
}

.product-dots span {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.product-dots .active {
  background-color: #333;
  width: 20px;
  border-radius: 5px;
}

/* Personalização para a faixa de mensagem no banner faixa */
#carrossel-produtos-0 .product-carousel-slides {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

#carrossel-produtos-0 .product-carousel-slide {
  box-sizing: border-box;
  text-align: center;
}

#carrossel-produtos-0 .product-card {
  width: 100%;
}