/* Flechas */
#testimonios .swiper-button-prev,
#testimonios .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, opacity 0.2s ease;
}
#testimonios .swiper-button-prev {
  left: 4px;
}
#testimonios .swiper-button-next {
  right: 4px;
}
#testimonios .swiper-button-prev:hover,
#testimonios .swiper-button-next:hover {
  background: #111;
}

/* Oculta flechas default y deja espacio a tu SVG */
#testimonios .swiper-button-prev::after,
#testimonios .swiper-button-next::after {
  content: "";
}

/* Estado disabled */
#testimonios .swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Paginación */
#testimonios .swiper-pagination {
  position: relative;
  margin-top: 4rem; /* mt-8 */
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
#testimonios .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #fff; /* slate-300 */
  opacity: 1;
  transition: all 0.2s ease;
}
#testimonios .swiper-pagination-bullet-active {
  width: 24px;
  height: 8px;
  background: var(--color-primary); /* slate-900 */
}
