.elementor .botao-premium-azul{/* Classe customizada para o botão */
.botao-premium-azul {
  background: linear-gradient(90deg, #005999 0%, #003483 100%) !important;
  border: 1.5px solid #d4af37 !important; /* Dourado clássico */
  border-radius: 50px !important; /* Formato pílula */
  color: #f1c40f !important; /* Cor do texto em tom dourado/amarelo */
  font-family: "Georgia", "Times New Roman", serif !important;
  font-weight: 500;
  transition: all 0.4s ease-in-out !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Efeito ao passar o mouse (Hover) */
.botao-premium-azul:hover {
  transform: translateY(-3px); /* Eleva levemente o botão */
  filter: brightness(1.1); /* Dá um brilho extra no degradê */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #f1c40f !important;
}

/* Animação sutil de pulsação de brilho (Glow) */
@keyframes glow-animation {
  0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
  100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
}

.botao-premium-azul {
  animation: glow-animation 3s infinite ease-in-out;
}\n}