@charset "UTF-8";
body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: #000;
}

.loading-page {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-page__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Texto sobre la imagen */
.loader__label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

/* Loader circular */
.loader {
  position: absolute;
  width: 200px;
  height: 200px;
  animation: spin 2s linear infinite;
}

.loader__dot {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: -80px 0;
}

/* Posición de cada punto */
.loader__dot:nth-child(1) {
  transform: rotate(0deg);
}

.loader__dot:nth-child(2) {
  transform: rotate(120deg);
}

.loader__dot:nth-child(3) {
  transform: rotate(240deg);
}

/* Rotación circular */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */