
/* Navbar transition */
.navbar-scrolled {
  background-color: #0F2137 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate="fade-left"] {
  transform: translateX(-30px);
}
[data-animate="fade-right"] {
  transform: translateX(30px);
}
[data-animate="scale"] {
  transform: scale(0.95);
}
[data-animate].animate-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Counter animation */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* Mobile menu transition */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
  max-height: 500px;
}

/* WhatsApp pulse */
.whatsapp-btn {
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
