/* Estado normal: fundo branco, texto azul */
a[data-slot="button"].bg-background.text-white {
  background-color: white;
  color: var(--primary); /* seu azul do tema */
}

/* Hover: mantém o que você já tinha */
a[data-slot="button"].bg-background.text-white:hover {
  background-color: var(--primary);
  color: white;
}


/* =========================
   Floating Glow para todos os cards azuis
   ========================= */

/* Seleciona os cards azuis e aplica o efeito de flutuação contínua */
.bg-blue-600.bg-opacity-80 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  /* Sombra inicial */
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  /* Animação contínua */
  animation: floatingGlow 3s ease-in-out infinite alternate;
}

/* Hover: aumenta o movimento e brilho */
.bg-blue-600.bg-opacity-80:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Efeito de flutuação contínua */
@keyframes floatingGlow {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
}

/* Efeito nos ícones SVG dentro do card */
.bg-blue-600.bg-opacity-80 svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover nos ícones */
.bg-blue-600.bg-opacity-80:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.7));
}
/* =========================
   Customização de cores e temas
   ========================= */

   /* Botão com fundo branco e efeito de brilho sem mudar a cor do texto */
a[data-slot="button"].bg-primary {
  position: relative;
  overflow: hidden;
  background-color: white; /* fundo branco */
  color: white;            /* mantém o texto branco */
  transition: background 0.3s ease;
}

a[data-slot="button"].bg-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

a[data-slot="button"].bg-primary:hover::before {
  left: 100%;
}

/* Mantém o texto branco no hover */
a[data-slot="button"].bg-primary:hover {
  color: white;
}

/* Botão com fundo branco e texto azul por padrão */
button[data-slot="button"] {
  background-color: white;
  color: var(--primary); /* azul do tema */
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover: fundo azul, texto branco */
button[data-slot="button"]:hover {
  background-color: var(--primary);
  color: white;
}

/* Botão com fundo azul (do tema) e texto branco */
button[data-slot="button"].vptech-gradient {
  position: relative;
  overflow: hidden;
  color: white; /* texto sempre branco */
  background-color: var(--primary); /* azul do tema */
  transition: color 0.3s ease, background 0.3s ease;
}

/* Cria a faixa de brilho */
button[data-slot="button"].vptech-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

/* Hover: anima a faixa de brilho da esquerda para direita */
button[data-slot="button"].vptech-gradient:hover::before {
  left: 125%;
}

/* Botão WhatsApp simples */
button.vptech-whatsapp {
  background-color: #25D366; /* verde WhatsApp */
  color: white; /* texto branco */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Hover: aumenta levemente a sombra e escurece um pouco o fundo */
button.vptech-whatsapp:hover {
  background-color: #1ebe57; /* verde um pouco mais escuro */
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
