/* CONTENEDOR HERO */
.hero-slider {
  position: relative;
  width: 100%;
  margin: auto;
  margin-top: 80px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  z-index: 5;
}

.dot {
  width: 14px;
  height: 14px;
  background: #fdfdfd;
  border-radius: 50%;
  position: relative;
  border: 1px solid #111;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(150, 150, 150, 0.15);
  transition: transform .25s ease;
}

.pulse {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(223, 223, 223, 0.35);
  animation: pulseEffect 1s infinite;
}

@keyframes pulseEffect {
  0% {
    transform: scale(.6);
    opacity: .8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hotspot:hover .dot {
  transform: scale(1.3);
}

.hero-slider .product-card {
  position: absolute;
  left: 150px;
  transform: translateX(-50%) translateY(10px) scale(.95);
  width: 210px;
  height: 225px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
  pointer-events: none;
  text-align: center;
}

.hotspot:hover .product-card {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.hero-slider .product-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.hero-slider .card-info {
  padding: 12px;
}

.hero-slider .card-info h4 {
  font-size: 15px;
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #475567;
}

.hero-slider .card-info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.hero-slider .price {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #5f90b5;
  padding: 6px 10px;
  border-radius: 6px;
  transition: .2s;
}

.hero-slider .product-card .price:hover {
  color: #475567;
}

.hotspot-regulador {
  top: 70%;
  left: 65%;
}

.hotspot-computadora {
  top: 49%;
  left: 30%;
}

.hotspot-mouse {
  top: 38%;
  left: 55%;
}

@media (max-width: 1024px) {

  .hero-slider {
    margin-top: 60px;
  }

  .hotspot {
    width: 36px;
    height: 36px;
    z-index: 5;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .pulse {
    width: 28px;
    height: 28px;
  }

  .hero-slider .product-card {
    width: 180px;
    height: 200px;
    left: 120px;
    z-index: 10;
  }

  .hero-slider .product-card img {
    width: 75px;
    height: 75px;
  }

  .hero-slider .card-info h4 {
    font-size: 14px;
  }

  .hero-slider .card-info p {
    font-size: 11px;
  }

  .hero-slider .price {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .hero-slider .product-card {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 85%;
    max-width: 320px;
    min-height: 150px;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    transition: all 0.25s ease;
    padding: 10px 0;
  }

  .hotspot.active .product-card {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }

  .hotspot {
    z-index: 5;
  }
}

@media (max-width: 480px) {

  .hero-img {
    height: 220px;
  }

  .hero-slider .product-card {
    width: 92%;
    border-radius: 12px;
  }

  .hero-slider .card-info h4 {
    font-size: 12px;
  }

  .hero-slider .card-info p {
    font-size: 10px;
  }

  .hero-slider .price {
    font-size: 12px;
  }
}