#myAudio::-webkit-media-controls-volume-slider {
  display: none !important;
}

.no_highlights{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@font-face {
  font-family: 'Helvetica Light';
  src: url('../fonts/helvetica-light.otf') format('truetype');
}

html, body {
  --parentWidth: 100vw;
  --parentHeight: 80vh;
  height: 100%;
  width: 100%;
  overflow: hidden;
  cursor: default;
}
.zoom {
  width: 100%;
  height: 100%;
  transform-origin: 0px 0px;
  transform: scale(1), translate(0px,0px);
  z-index: 1;
}
.zoom img{
  width: 100%;
  height: 100%;
}

.zoom_outer {
  display: block;
}

#zoom-indicator {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
}

.hover_group {
  cursor: pointer;
}

/* ==================== LOADING SCREEN RESPONSIVA (única parte alterada) ==================== */
.loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  font-family: Helvetica Light;
  color: #114034;
  padding: 20px;
  box-sizing: border-box;
}

.loading-screen p {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 100px;
  text-align: left; 
  font-family: Helvetica Light;
}

.loading-screen p.animation-paused {
  font-size: 12px;
  font-weight: normal;
  animation: none;
  margin-bottom: 100px;
  opacity: 1;
  font-family: Helvetica Light;
  color: #114034;
}

.loading-screen.hidden {
  opacity: 0;
  display: none;
}

.loading-icon {
  transition: 3s width;
  width: 0;
}

.loading-icon.ready {
  width: 74px;
}

.loaded-text {
  transition: 1s;
  opacity: 0;
}

.loaded-text.ready {
  opacity: 100;
}

.loading-bar {
  width: 0;
  height: 4px;
  background-color: #007bff;
  transition: width 0.3s ease-in-out;
}

.progress {
  padding: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.loading-screen .progress {
  margin: 0 auto;
  width: 400px;
}

.loading-screen .entrance {
  opacity: 0;
  z-index: 9998;
}

.loading-screen .entrance .door{
  z-index: 9998;
}

.progress-bar {
  height: 16px;
  border-radius: 4px;
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
}

/* ==================== AUDIO, SEASON BUTTONS, HAND, AUDIO CONTROLS (100% intactos) ==================== */
audio {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

.season-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  width: 30px;
  height: 30px;
  justify-items: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid #CBD4D1;
  border-radius: 5px;
  padding: 2px;
}

.season-buttons.visible {
  opacity: 1;
}

.season-buttons:hover {
  transform: scale(calc(5/3));
}

.season-btn {
  width: 12px;
  height: 12px;
  color: #CBD4D1;
  background: none;
  border: none;
  margin: 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.season-btn:hover {
  color: #808080;
}

.hand-pointer {
  position: fixed;
  bottom: 20px;
  right: -40px;
  transform: translate(-100%, -50%);
  z-index: 9998;
  pointer-events: none;
  text-align: center;
}

.hand-icon {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 2px solid #CBD4D1;
  border-radius: 50%;
  margin-bottom: 5px;
  animation: handMove 2s infinite ease-in-out alternate;
}

@keyframes handMove {
  0% { transform: translate(-100%, -50%) rotate(-30deg); }
  100% { transform: translate(-100%, -50%) rotate(30deg); }
}

.text {
  color: #CBD4D1;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
}

.text.animate {
  animation: textFadeOut 5s forwards;
}

@keyframes textFadeOut {
  0% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

audio::-webkit-media-controls {
  transform: scale(0.5);
}

#playPauseButton {
  position: fixed;
  bottom: 20px;
  right: 25px;
  margin: 10px;
  width: 20px;
  height: 20px;
  color:#e4e9e8;
  z-index: 9999;
  opacity: 0;
  transition: color 0.3s ease;
}

#playPauseButton:hover { color: #808080; }

#nextSongButton {
  position: fixed;
  bottom: 20px;
  right: 5px;
  margin: 10px;
  width: 20px;
  height: 20px;
  color:#e4e9e8;
  z-index: 9999;
  opacity: 0;
  transition: color 0.3s ease;
}

#nextSongButton:hover { color: #808080; }

#previousSongButton {
  position: fixed;
  bottom: 20px;
  right: 45px;
  margin: 10px;
  width: 20px;
  height: 20px;
  color:#e4e9e8;
  z-index: 9999;
  opacity: 0;
  transition: color 0.3s ease;
}

#previousSongButton:hover { color: #808080; }

#playPauseButton.visible,
#nextSongButton.visible,
#previousSongButton.visible {
  opacity:1;
  z-index: 9999;
}

.bigdoor {
  opacity: 1;
  width: auto;
  height: 35vh;
}

.bigdoor.hidden { opacity: 0; }

.smalldoor {
  opacity: 1;
  width: 48px;
  height: 48px;
}

.smalldoor.hidden { opacity: 0; }

/* ==================== NOVO LOGIN DIV (responsivo) ==================== */
.box {
  background-color: #fff;
  padding: 45px 32px;
  width: clamp(280px, 40vw, 520px);
  aspect-ratio: 1 / 1.05;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

img.porta {
  width: clamp(145px, 52vw, 295px);
  height: auto;
  margin-bottom: 0px;
  flex-shrink: 0;
}

.formBox {
  width: 100%;
  max-width: 290px;
  padding: 0 12%;
  margin-bottom: 15px;
}

.box .inputBox input {
  width: 55%;
  background: transparent;
  border-radius: 40px;
  border: 1px solid #e4e9e8;
  text-align: center;
  color: #0d2d25;
  outline: none;
  padding: 4px 0;
  font-family: Helvetica Light;
  font-size: clamp(10.5px, 3.8vw, 12px);
}

.mobile-only {
  display: none;
}

#checkButton {
  margin-top: 20px;
  padding: 0;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 22px;
  height: 22px;
  font-size: 11px;
  opacity: 1;
}

/* ==================== MEDIA QUERIES (mantidas as do zoom_outer, consolidadas as da loading) ==================== */
@media only screen and (max-width: 500px){
  .zoom_outer {
    display: flex;
    transform: rotate(90deg);
    justify-content: center;
    align-items: center;
    width: 100vh;
    height: 100vw;
    transform-origin: 27% 52%;
  }
  .sala {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .season-buttons {
    bottom: 20px;
    right: 80%;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

@media only screen and (max-width: 440px) {
  .zoom_outer {
    display: flex;
    transform: rotate(90deg);
    justify-content: center;
    align-items: center;
    width: 100vh;
    height: 100vw;
    transform-origin: 29% 45%;
  }
  .sala {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .season-buttons {
    bottom: 20px;
    right: 80%;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

@media only screen and (max-width: 440px) and (min-height: 700px) {
  .zoom_outer {
    display: flex;
    transform: rotate(90deg);
    justify-content: center;
    align-items: center;
    width: 100vh;
    height: 100vw;
    transform-origin: 25% 38%;
  }
  .sala {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .season-buttons {
    bottom: 20px;
    right: 80%;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

@media only screen and (max-width: 390px) {
  .zoom_outer {
    display: flex;
    transform: rotate(90deg);
    justify-content: center;
    align-items: center;
    width: 100vh;
    height: 100vw;
    transform-origin: 25% 38%;
  }
  .sala {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .season-buttons {
    bottom: 20px;
    right: 80%;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

@media only screen and (max-width: 300px) {
  .zoom_outer {
    display: flex;
    transform: rotate(90deg);
    justify-content: center;
    align-items: center;
    width: 100vh;
    height: 100vw;
    transform-origin: 25% 57%;
  }
  .sala {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .season-buttons {
    bottom: 20px;
    right: 80%;
    transform: rotate(90deg);
    transform-origin: top left;
  }
}

@media only screen and (min-width: 441px) and (max-width: 1000px) and (orientation: portrait) {
  .box { top: 45%; left: 40%; }
  img.porta { width: calc(0.40 * var(--parentWidth)); }
  .box .inputBox input { width: 150px; }
}

@media only screen and (max-width: 940px) and (orientation: landscape) {
  img.porta { margin-top: -5px; }
  .bigdoor { opacity: 0; }
  .smalldoor {
    opacity: 1;
    width: auto;
    height: 20vh;
  }
  .formBox { padding-top: 0%; }
  .box .inputBox input {
    font-family: Helvetica Light;
    font-size: 5px;
    text-align: center;
    padding-right: 2px;
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
    border-spacing: 10px;
    width: 100px;
  }
  .season-buttons {
    bottom: 20px;
    right: 20px;
    transform: none;
  }
}

@media only screen and (min-width: 1600px) and (orientation: landscape) {
  img.porta { margin-top: -5px; }
  .bigdoor { opacity: 0; }
  .smalldoor {
    opacity: 1;
    width: auto;
    height: 20vh;
  }
  .box {
    background-color: #fff;
    border-radius: 50%;
    margin: auto auto;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20vw;
    height: 20vw;
    text-align: center;
    box-sizing: border-box;
  }
  img.porta {
    margin-top: 6%;
    width: calc(0.13 * var(--parentWidth));
    height: auto;
  }
  .formBox { padding-top: 2%; }
  .box .inputBox input {
    font-family: Helvetica Light;
    font-size: 9.5px;
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
    border-spacing: 10px;
  }
  .season-buttons {
    bottom: 20px;
    right: 20px;
  }
}

@media only screen and (min-width: 1000px) and (min-height: 2000px) and (orientation: portrait) {
  img.porta { width: calc(0.40 * var(--parentWidth)); }
  .box { top: 50%; left: 46%; }
  .box .inputBox input {
    font-size: 15px;
    width: 250px;
  }
  .formBox { padding-left: 40%; }
}

/* ==================== MEDIA QUERIES CONSOLIDADAS PARA LOADING (novas) ==================== */
@media (max-width: 640px) {
  .box {
    width: 88vw;
    padding: 36px 24px;
    aspect-ratio: 1 / 1.18;
  }
  img.porta { width: clamp(175px, 62vw, 270px); }
  .formBox { padding: 0 8%; }
}

@media (max-width: 380px) {
  .box { padding: 28px 18px; }
}

@media (max-width: 940px) and (orientation: landscape) {
  .box {
    width: min(58vw, 380px);
    padding: 38px 28px;
  }
}