/* Custom Animations and Styling for Busco Desokupa */

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.animate-subtle-zoom {
  animation: subtleZoom 25s ease-in-out infinite alternate;
}

/* Glassmorphism effects */
.glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Smooth transitions */
a, button {
  transition: all 0.25s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #090D16;
}

::-webkit-scrollbar-thumb {
  background: #283548;
  border-radius: 5px;
}

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

/* FAQ Icon rotation */
.faq-btn.active i {
  transform: rotate(180deg);
}

/* Counter animation styling */
.counter {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  h1 {
    font-size: 2.1rem !important;
    line-height: 1.15 !important;
  }
}
