/* ==========================================================================
   LISBOA CENTRO DE BELEZA - ANIMATION SUITE (LUXURY GOLD & GLOW)
   ========================================================================== */

@keyframes goldShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 0 50px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
  }
}

@keyframes floatElement {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes sparkleSpin {
  0% {
    transform: rotate(0deg) scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(0.8);
    opacity: 0.7;
  }
}

@keyframes ribbonBadge {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(255, 223, 115, 0.8));
  }
}

.anim-shimmer {
  background: linear-gradient(90deg, #d4af37 0%, #fff2a8 50%, #d4af37 100%);
  background-size: 200% auto;
  color: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

.anim-pulse {
  animation: pulseGlow 3s ease-in-out infinite;
}

.anim-float {
  animation: floatElement 5s ease-in-out infinite;
}

.anim-sparkle {
  animation: sparkleSpin 4s ease-in-out infinite;
}

/* Luxury Card Hover Micro-Interactions */
.hover-gold-lift {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-gold-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px -8px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.6) !important;
}

/* Scroll reveal utility */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
