/* Contenedor principal del slider */
.tsfe-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Pista que contiene todas las diapositivas */
.tsfe-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Cada diapositiva ocupa el 100% del ancho del slider */
.tsfe-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

/* ============================
   Flechas de navegación
   ============================ */

.tsfe-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  cursor: pointer;

  /* círculo de fondo */
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);

  /* Ocultamos el texto "<" y ">" que viene del HTML */
  font-size: 0;
  color: transparent;
}

/* Color base de la flecha */
.tsfe-slider-arrow::before,
.tsfe-slider-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
}

/* “Palito” de la flecha (vertical, apuntando hacia abajo) */
.tsfe-slider-arrow::before {
  top: 20%;
  width: 2px;
  height: 55%;
  background: #f3a6a0; /* color rosita base */
  transform: translateX(-50%);
  border-radius: 999px;
}

/* Punta de la flecha (V hacia abajo) */
.tsfe-slider-arrow::after {
  bottom: 18%;
  width: 10px;
  height: 10px;
  background: transparent;
  border-left: 2px solid #f3a6a0;
  border-bottom: 2px solid #f3a6a0;
  transform: translateX(-50%) rotate(-45deg);
}

/* Hover: un poco más intenso */
.tsfe-slider-arrow:hover::before {
  background: #f7b3ac;
}

.tsfe-slider-arrow:hover::after {
  border-color: #f7b3ac;
}

/* Posición y orientación de cada flecha */
.tsfe-slider-prev {
  left: 16px;
  transform: translateY(-50%) rotate(90deg);   /* flecha hacia la izquierda */
}

.tsfe-slider-next {
  right: 16px;
  transform: translateY(-50%) rotate(-90deg);  /* flecha hacia la derecha */
}

/* ============================
   Dots de navegación
   ============================ */

.tsfe-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.tsfe-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.tsfe-slider-dot.is-active {
  background: #ffffff;
}

/* ============================
   Ajustes simples responsive
   ============================ */

@media (max-width: 768px) {
  .tsfe-slider-prev {
    left: 8px;
  }

  .tsfe-slider-next {
    right: 8px;
  }

  .tsfe-slider-dots {
    bottom: 8px;
  }
}