/* ==========================



   SITIO CREADO POR MATIASCALDERON
   WWW.MATIASCALDERON.CL
   CONTACTO@MATIASCALDERON.CL



   
   ========================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at top, #181826 0, #02020a 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1000ms ease, visibility 1000ms ease;
}

.preloader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.preloader-logo {
  width: 110px;
  height: auto;
  opacity: 0;
  animation: preloaderLogoAnim 1.8s ease-in-out infinite;
}
.preloader-text {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f5f5;
  opacity: 0.8;
}
@keyframes preloaderLogoAnim {
  0% {
    opacity: 0.4;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.96);
  }
}
@media (max-width: 480px) {
  .preloader-logo {
    width: 80px;
  }
  .preloader-text {
    font-size: 0.7rem;
  }
}
