:root {
  --azulPrincipal: #438ec0;
  --azulClaro: #4d7896;
  --azulForte: #2b9eea;
  --cinza: #1e1e1e;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(50, 50, 50, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  transition: opacity 0.5s ease;
}

.loading-animation {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 18px;
  background-color: var(--azulClaro);
  border-radius: 10%;
  animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-40px);
  }
}
