.containerSlider {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3.5 / 3;
  overflow: hidden;
}

.containerSlider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide {
  border: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
  object-fit: cover !important;
}

.showMe {
  opacity: 1;
}

.containerSlider .arrowRight {
  z-index: 99;
  position: relative;
  margin-top: 00%;
  margin-left: 79%;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 10%;
}

.containerSlider .arrowLeft {
  z-index: 100;
  position: relative;
  margin-top: 0%;
  margin-left: 0%;
  margin-left: 0%;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 10%;
}

.containerSlider .arrowRight:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

.containerSlider .arrowLeft:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

/* Estilo de los botones */

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Activo */

.slider-dots .dot.active {
  width: 25px;
  background-color: #f9a643;
}

/* Estilos para la sminiaturas */

.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.thumbnails::-webkit-scrollbar {
  height: 6px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: #f9a643;
  border-radius: 10px;
}

.thumbnails img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnails img.active {
  opacity: 1;
  border-color: #f9a643;
  transform: scale(1.1);
}

.thumb {
  flex-shrink: 0;
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.thumb.active {
  opacity: 1;
  border: 2px solid #f9a643;
  transform: scale(1.1);
}

