/* ============================================
   SPA SLIDER - Sección con bullets laterales
   ============================================ */

.services-slider-wrapper > .vc_column-inner {
  height: 100%;
  padding-top: 0 !important;
  .wpb_wrapper, .wpb_raw_code {
    height: 100%;
  }
}

.services-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.services-slider-track {
  width: 100%;
}

.services-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.services-slide.active {
  opacity: 1;
}

.services-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Contenido del lado derecho */
.services-slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 80px 40px 6%;
  max-width: 70%;
  min-width: 200px;
  margin-left: auto;
}

/* Bullets laterales con línea conectora */
.services-bullets {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20%;
  height: 100%;
  z-index: 10;
}

/* Línea vertical que une todos los bullets */
.services-bullets::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0px;
  bottom: 0px;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}

.services-bullet {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
  margin: 14px 0;
  flex-shrink: 0;
}

.services-bullet.active {
  background: #fff;
  border-color: #fff;
}

.services-bullet:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

/* Barra de progreso inferior */
.services-progress {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  z-index: 10;
}

.services-progress-bar {
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  width: 0%;
  transition: width 0.1s linear;
}