.loadingScreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 0%, #151e2c 0%, #151e2c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loadingScreen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Logo centralizada */
.loadingScreen__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadingScreen__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Texto no terço inferior */
.loadingScreen__gateText {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loadingScreen__gateLabel {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333333;
  text-align: center;
  animation: gateTextBlink 1.4s ease-in-out infinite;
}

@keyframes gateTextBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
