
/* Botón base SIN fondo visible, sin bordes cuadrados */
#hero-carousel .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Flecha con forma hecha por bordes */
#hero-carousel .splide__arrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-top: 4px solid white;
  border-right: 4px solid white;
  transform: rotate(45deg);
}

/* Flecha IZQUIERDA rotada */
#hero-carousel .splide__arrow--prev::before {
  transform: rotate(-135deg);
}

/* Posicionamiento */
#hero-carousel .splide__arrow--prev {
  left: 1rem;
}

#hero-carousel .splide__arrow--next {
  right: 1rem;
}

/* Opcional: efecto hover */
#hero-carousel .splide__arrow:hover::before {
  border-color: rgba(255, 255, 255, 0.85);
}
#hero-carousel .splide__arrow svg {
  display: none; /* Oculta el SVG por completo */
}
