.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.4 rem;
  padding: 2rem;
  box-sizing: border-box;
  background: #fffefe;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}

.column {
  font-size: 1rem;
  line-height: 1.2;
}

.swiper-button-next,
.swiper-button-prev {
  position: fixed;
  margin-bottom: 1px;
  z-index: 10;
  color: #ffa500;
  background: transparent;
  border: 3px solid currentColor;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Color de los bullets (puntos) */
.swiper-pagination-bullet {
  background-color: #ffa500;
  opacity: 1;
}

/* Bullet activo */
.swiper-pagination-bullet-active {
  background-color: #ff8c00; /* un tono más oscuro opcional */
  transform: scale(2.4); /* animación sutil */
}

/* Si usas fracción (ej. 1/5) */
.swiper-pagination-fraction {
  color: #ffa500;
  font-weight: bold;
}

/* Si usas progreso */
.swiper-pagination-progressbar {
  background: #ffe5b4; /* fondo claro */
}
.swiper-pagination-progressbar-fill {
  background: #ffa500;
}


/* Posicionamiento horizontal */
.swiper-button-prev {
  left: 20px;
}
.swiper-button-next {
  right: 20px;
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #ffa500;
  color: #f5f5f5;
}

/* Responsivo: una sola columna en móviles */
@media (max-width: 768px) {
  .slide-content {
    grid-template-columns: 1fr;
  }
}

/* Ocultar en móviles */
@media (max-width: 1500px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}