.seta-ceramica-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  pointer-events: none;
}

.seta-ceramica-icon {
  width: 64px;
  height: auto;
  animation: balancar 2s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));  /* Sombra suave */
}

/* Animação chamativa */
@keyframes destaque {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.4) rotate(5deg); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Balanço tradicional */
@keyframes balancar {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}