/* Custom style overrides & keyframes for Práticas de Yoga Landing Page */

/* Base font-family declarations are managed in the Google Fonts link and CDN Tailwind custom tailwind.config extend */
html {
  scroll-behavior: smooth;
}

/* Custom subtle bounce keyframe */
@keyframes bounceSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.animate-bounce-subtle {
  animation: bounceSubtle 3s ease-in-out infinite;
}

/* Pulsing soft glow effect for high conversion target button actions */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 14px 0 rgba(74, 107, 74, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 24px 8px rgba(74, 107, 74, 0.6);
    transform: scale(1.015);
  }
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

/* Custom transitions for modals & alerts */
#upgrade-modal, #sales-notification {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth active state clicks */
button:active, a:active {
  transform: scale(0.985);
}

/* Scrollbar customizations */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FAF9F5;
}

::-webkit-scrollbar-thumb {
  background: #CEDACE;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A9BFA9;
}
