/* ═══════════════════════════════════════════════════ */
/* MOTOCICLETAS — Video 360° Scroll-to-Rotate          */
/* Requiere: water.js + GSAP ScrollTrigger             */
/* ═══════════════════════════════════════════════════ */

/* Hero con scroll largo para dar espacio al video 360° */
.cat-hero#hero,
.cat-hero#facade-hero {
  height: 3000px;          /* Espacio de scroll para 2 giros completos */
  min-height: auto;
  position: relative;
}

/* Sticky: el video se queda fijo mientras el usuario hace scroll */
.cat-hero #hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video 360° — cubre toda la pantalla */
.cat-hero #hero-video,
.cat-hero #facade-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Canvas de olas sobre el video */
.cat-hero #hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

/* Contenido sobre el video */
.cat-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.cat-hero .hero-content a { pointer-events: auto; }

/* Breadcrumb */
.cat-breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.cat-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.cat-breadcrumb a:hover { color: var(--red); }

/* Scroll prompt */
.cat-hero #hero-scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
