body { 
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

@keyframes pulse-btn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

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

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

/* Esconder scrollbar */
::-webkit-scrollbar {
  display: none;
}

.shadow-latam {
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}