/* INTRO ANIMADA CHECHO'S BARBER */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(184, 134, 11, 0.18), transparent 32%),
    linear-gradient(135deg, #050505 0%, #000 55%, #111 100%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-loader.intro-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: introContentFloat 3.4s ease forwards;
}

.intro-logo {
  width: min(430px, 72vw);
  opacity: 0;
  transform: scale(0.72) rotate(-3deg);
  filter: blur(10px) drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  animation: introLogoReveal 2.1s ease forwards;
}

.intro-gold-line {
  width: 0;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f7d774, #8a5a08, transparent);
  box-shadow: 0 0 22px rgba(247, 215, 116, 0.7);
  animation: introLineReveal 1.4s ease forwards;
  animation-delay: 1.1s;
}

.intro-text {
  margin-top: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.8rem, 2.2vw, 1.15rem);
  letter-spacing: 0.35em;
  color: #f8dd8c;
  opacity: 0;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
  animation: introTextReveal 1.3s ease forwards;
  animation-delay: 1.65s;
}

.intro-shine {
  position: absolute;
  top: -30%;
  left: -90%;
  width: 55%;
  height: 160%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(255, 230, 145, 0.42) 50%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: introShineMove 2.3s ease forwards;
  animation-delay: 0.65s;
}

@keyframes introLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-3deg);
    filter: blur(10px) drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }

  62% {
    opacity: 1;
    transform: scale(1.06) rotate(0deg);
    filter: blur(0) drop-shadow(0 0 34px rgba(212, 175, 55, 0.7));
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0) drop-shadow(0 0 20px rgba(212, 175, 55, 0.45));
  }
}

@keyframes introLineReveal {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: min(360px, 58vw);
    opacity: 1;
  }
}

@keyframes introTextReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introContentFloat {
  from {
    transform: translateY(18px) scale(0.98);
  }

  to {
    transform: translateY(0) scale(1.04);
  }
}

@keyframes introShineMove {
  from {
    left: -90%;
  }

  to {
    left: 135%;
  }
}

@media (max-width: 600px) {
  .intro-logo {
    width: 78vw;
  }

  .intro-text {
    letter-spacing: 0.22em;
  }
}
