/* public/css/banner-styles.css */
.wp-banners-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wp-banners-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.wp-banner-item {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
.wp-banner-item img {
  width: 100%;
  height: auto;
  display: block;
}
.wp-banner-item a {
  display: block;
  position: relative;
}
.wp-banner-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* Flechas — ocultas */
.wp-banner-prev,
.wp-banner-next {
  display: none !important;
}

/* Dots */
.wp-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}
.wp-banner-dot {
  pointer-events: all;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.wp-banner-dot.active {
  background: white;
  transform: scale(1.2);
}

.wp-banners-container {
  cursor: grab;
}
.wp-banners-container:active {
  cursor: grabbing;
}