/* Logo */
.logo img {
  height: 100px;
  width: 100px;
}
/* ---- LOADER ---- */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: #0c0912;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
.loader-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #2205ff;
  animation: spin 1.1s linear infinite;
}
.loader-ring.ring2 {
  inset: 8px;
  border-top-color: transparent;
  border-right-color: rgba(34, 5, 255, 0.35);
  animation-duration: 1.8s;
  animation-direction: reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-logo-img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: logoPulse 2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}
.loader-brand {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.loader-brand span {
  color: #4a2fff;
}
.loader-tagline {
  font-size: 11px;
  color: rgba(155, 146, 190, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2205ff, #7c3aed);
  border-radius: 2px;
  animation: loadBar 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loadBar {
  0% {
    width: 0%;
  }
  40% {
    width: 55%;
  }
  70% {
    width: 78%;
  }
  90% {
    width: 92%;
  }
  100% {
    width: 100%;
  }
}
.loader-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.loader-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(34, 5, 255, 0.5);
  animation: dotPop 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotPop {
  0%,
  100% {
    transform: scale(1);
    background: rgba(34, 5, 255, 0.4);
  }
  50% {
    transform: scale(1.5);
    background: #2205ff;
  }
}

/* Whatsapp */
.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 12px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.set-whatsapp {
  height: 30px;
  width: 30px;
}

/* Phone */
.sticky-phone {
  position: fixed;
  right: 18px;
  bottom: 55px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.set-phone {
  height: 30px;
  width: 30px;
}

@media (max-width: 768px) {
  .logo img {
    height: 80px;
    width: 80px;
  }
  .nav {
    padding-top: 6px;
  }
  .hero-actions {
    margin-bottom: 40px;
  }
  .hero-content {
    padding-bottom: 45px;
  }
  .footer {
    padding-top: 30px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
}
