html, body { overflow-x: hidden; }

.horizontal-wrapper{
  width: 100vw;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;

  /* Para móvil (swipe nativo) */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.horizontal-track{
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  height: 100vh;
}

.horizontal-slide{
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
}
.horizontal-wrapper { overscroll-behavior: none; }