/* =============================================================
 * ÓRBITA 360 PREMIUM — Reset + base
 * ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #05060a;
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

/* Permite seleção apenas em conteúdo informativo (pop-ups/galeria) */
.is-selectable { user-select: text; }

/* Container do panorama Marzipano (ocupa a tela toda) */
#pano {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-pano);
  overflow: hidden;
  background: #05060a;
}

/* Acessibilidade: foco visível e elegante */
:focus-visible {
  outline: none;
  box-shadow: var(--glow-accent);
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
