/* ==========================================================================
   CAIÇARA DRINKERIA & HEADSHOP - HERO & AMBIENT ANIMATIONS
   ========================================================================== */

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

@keyframes cyanPulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

.hero-drink-animated {
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-glow-backdrop {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.32) 0%, rgba(0, 159, 227, 0.12) 50%, transparent 75%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: cyanPulseGlow 6s ease-in-out infinite;
}
