/* Ve Por Más Soluciones — Custom Styles */

/* Subtle pulse animation for WhatsApp button */
@keyframes pulse-subtle {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}

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

/* Custom selection color */
::selection {
  background-color: rgba(232, 115, 74, 0.2);
  color: #1b2a4a;
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid #e8734a;
  outline-offset: 2px;
  border-radius: 4px;
}

#nav-logo {
  width: 50px;
}
