/* --------------------------------------------------------------------------
   20. ANIMACIONES KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulseActiveParcel {
  0% {
    border-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(10, 116, 184, 0.4);
  }
  50% {
    border-color: var(--accent);
    box-shadow: 0 0 20px 6px rgba(0, 188, 212, 0.35);
  }
  100% {
    border-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(10, 116, 184, 0.4);
  }
}

@keyframes bouncePin {
  0%, 100% {
    transform: translate(-50%, -100%) translateY(0);
  }
  50% {
    transform: translate(-50%, -100%) translateY(-8px);
  }
}


