body {
  margin: 0;
}

html {
  overflow: hidden scroll;
}

#loader {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/src/assets/images/logo/fondo.png") no-repeat center center;
  background-size: cover;
  z-index: 9999;
}

.blur-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px) brightness(0.7);
  background-color: rgba(0, 0, 0, 0.1); /* fallback */
  z-index: 1;
}

.loading-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
  text-align: center;
  color: white;
}

.logo-main {
  width: 200px;
  margin-bottom: 30px;
  z-index: 2;
}

.bouncing-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.bouncing-loader > div {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.6;
  animation: bounce 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    opacity: 1;
    transform: translateY(-16px);
  }
}
