import { MessageCircle } from "lucide-react";

export function WhatsAppFloat() {
  return (
    <a
      href="https://wa.me/5531985111761?text=Olá,%20gostaria%20de%20solicitar%20um%20orçamento."
      target="_blank"
      rel="noopener noreferrer"
      aria-label="WhatsApp"
      className="
        fixed
        bottom-6
        right-6
        z-50
        flex
        items-center
        justify-center
        w-16
        h-16
        rounded-full
        bg-green-500
        text-white
        shadow-2xl
        hover:scale-110
        hover:bg-green-600
        transition-all
        duration-300
        animate-pulse
      "
    >
      <MessageCircle size={32} />
    </a>
  );
}