/* =============================================
   HAWK — Sección 3D de la moto (aditivo)
   El hero queda intacto. Esto estiliza solo la
   sección #showcase-3d. Paleta negro + plata #E5E5E5.
============================================= */

.showcase-3d {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 42%, #26262b 0%, #131315 46%, #050506 100%);
  overflow: hidden;
  padding-top: 60px;
}

.showcase-3d__intro {
  padding: 0 40px 0;
  text-align: center;
  z-index: 2;
}

.showcase-3d__stage {
  position: relative;
  flex: 1;
  min-height: 70vh;
}

#moto3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  opacity: 1;
  transition: opacity 0.35s ease;
}
#moto3d-canvas:active { cursor: grabbing; }
#moto3d-canvas.is-swapping { opacity: 0; }

/* -------- UI: selector + caption -------- */
.hero-3d-ui {
  position: absolute;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  pointer-events: none;
}

.hero-3d-caption {
  font-family: 'Zen Dots', 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.04em;
  color: #E5E5E5;
  text-transform: uppercase;
  view-transition-name: moto3d-caption;
}
.hero-3d-caption em { font-style: normal; color: #fff; opacity: 0.72; }

.hero-3d-switch { display: flex; gap: 10px; pointer-events: auto; }
.hero-3d-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 0.18em;
  color: rgba(229, 229, 229, 0.55);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(229, 229, 229, 0.2);
  border-radius: 999px; padding: 16px 40px; cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.hero-3d-btn:hover { color: #E5E5E5; border-color: rgba(229, 229, 229, 0.5); box-shadow: 0 0 10px rgba(229,229,229,0.3); }
.hero-3d-btn.is-active { color: #000; background: #E5E5E5; border-color: #E5E5E5; box-shadow: 0 0 20px rgba(229,229,229,0.7); }

.hero-3d-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(229, 229, 229, 0.4);
}

::view-transition-old(moto3d-caption),
::view-transition-new(moto3d-caption) { animation-duration: 0.4s; }

@media (max-width: 720px) {
  .showcase-3d__intro { padding: 50px 20px 0; }
  .hero-3d-ui { bottom: 10%; gap: 10px; }
  .hero-3d-btn { padding: 8px 14px; font-size: 11px; }
  .hero-3d-hint { display: none; }
}
