/* === SWIPER GENERAL === */
.vtc-department__swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  text-align: center;
}


/* === SLIDES === */
.vtc-department__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.vtc-department__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
  text-transform: capitalize;
}

/* === CONTROLES === */
.vtc-department__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  height: 50px;
}

.vtc-dep-prev,
.vtc-dep-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.vtc-dep-prev::after,
.vtc-dep-next::after {
  font-size: 16px;
  color: #333;
}

.vtc-dep-prev:hover,
.vtc-dep-next:hover {
  background: #E78C85;
}

.vtc-dep-prev:hover::after,
.vtc-dep-next:hover::after {
  color: #fff;
}

/* === MAPA SVG PUNTOS === */
.vtc-map__point {
  fill: #b5b5b5;
  stroke: #fff;
  stroke-width: 1px;
  opacity: 0;
  transition: fill 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Hover */
.vtc-map__point:hover {
  opacity: 0.7;
}

/* Activo (encendido) */
.vtc-map__point.is-active {
  opacity: 1;
}


/* === REGIONES DEL MAPA === */

/* Por defecto visibles */
.cls-3, .cls-5, .cls-6 {
  transition: fill 0.4s ease, opacity 0.4s ease;
}

/* Cuando deben ocultarse */
.is-transparent {
  fill: transparent !important;
  opacity: 0.2 !important;
}

/* Cuando deben resaltarse */
.is-visible {
  opacity: 1 !important;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

