/* Reset total para garantir que nada sobra no topo */
html, body, #container, #pano {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Esconde todas as barras possíveis do Marzipano */
#titleBar, .scene-title, .mobile-title, #header, .title-container {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

/* Garante que o visualizador começa no topo 0 */
#pano {
  position: absolute;
  top: 0;
  left: 0;
}

/* Estilo da Legenda Dourada */
.quadro-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10000;
  border: 1px solid #d4af37;
  font-family: sans-serif;
  font-size: 13px;
  text-align: center;
  max-width: 250px;
}

.hotspot-quadro {
  display: block;
  background: rgba(128, 128, 128, 0); /* 0 para invisível, 0.3 para teste */
  cursor: pointer;
}