.panorama {
  width: 100%;
  Xheight: auto;
  aspect-ratio: 900 / 506; /*  Mantiene proporción como las imágenes */
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position-x: 0;
  border: 1px solid #ccc;
  cursor: grab;
  user-select: none;
  touch-action: none;
  position: relative;
  overflow: hidden;
}

.fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 18px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
}

.fullscreen-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.panorama {
  background-color: red;
}