"use client";

import { Headphones } from "lucide-react";
import { PremiumCtaCard } from "@/components/ui/PremiumCtaCard";
import { supportPremiumCard } from "@/data/landing";
import { openHelpDesk } from "@/lib/helpDeskBridge";

export function SupportPremiumSection() {
  return (
    <PremiumCtaCard
      sectionId="suporte"
      content={{
        ...supportPremiumCard,
        faqHref: "/ajuda",
        primaryButtonLabel: supportPremiumCard.contactButtonLabel,
        onPrimaryClick: () => openHelpDesk({ tab: "support" }),
        icon: Headphones,
      }}
    />
  );
}
