import { Navbar } from "@/components/Navbar";
import { HeroSection } from "@/components/HeroSection";
import { WhyChooseUsSection } from "@/components/WhyChooseUsSection";
import { NoiseImpactSection } from "@/components/NoiseImpactSection";
import { AuthoritySection } from "@/components/AuthoritySection";
import { TechnicalSection } from "@/components/TechnicalSection";
import { TestimonialsSection } from "@/components/TestimonialsSection";
import { ComparisonSection } from "@/components/ComparisonSection";
import { CTASection } from "@/components/CTASection";
import { UrgencySection } from "@/components/UrgencySection";
import { FinalEmotionalSection } from "@/components/FinalEmotionalSection";
import { FloatingWhatsAppButton } from "@/components/FloatingWhatsAppButton";

const Index = () => {
  return (
    <main className="min-h-screen bg-background">
      <Navbar />
      <HeroSection />
      <WhyChooseUsSection />
      <NoiseImpactSection />
      <AuthoritySection />
      <TechnicalSection />
      <TestimonialsSection />
      <ComparisonSection />
      <CTASection />
      <UrgencySection />
      <FinalEmotionalSection />
      <CTASection />
      
      <FloatingWhatsAppButton />
    </main>
  );
};

export default Index;