  @keyframes sweep {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/* 
#progress-bar-container {
  background: rgba(255, 255, 255, 0.3);

  overflow: hidden;
  height: 20px;
  margin: auto;
  }
  #progress-bar {
  background: #00ff00;
  height: 100%;
  width: 0%;
  transition: width 0.2s ease;
  } */

  #progress-bar {
    background: #00ff00;
    height: 100%;
    width: 0%;
    transition: width 0.2s ease;
    } 
 #sound-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    border: none;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInButton 0.5s forwards;
    display: none;

  }

  #sound-button.active {
    background: #f0f8ff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  #sound-button svg {
    width: 28px;
    height: 28px;
    fill: #333;
    transition: fill 0.3s ease;
  }

  #sound-button:hover svg {
    fill: #007bff; /* Azul profesional */
  }

  @keyframes fadeInButton {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

    .a-enter-vr-button {
      display: none;
    }

    .hint-container {
      position: fixed;
      bottom: 10%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      /* z-index: 9998; */
    }

    .hint-icon {
      width: 64px;
      height: 64px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.1);
      }

      100% {
        transform: scale(1);
      }
    }

    /* Efecto de fade */
    .hint-visible {
      opacity: 1 !important;
    }

    .debug-panel {
      position: fixed;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px;
      border-radius: 8px;
      font-family: monospace;
      z-index: 9999;
    } 

    #splash-screen {
      position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 10000;
    }