// ── APP ───────────────────────────────────────────────────
function App() {
  return (
    <>
      <ParticleBackground />
      <Hero />
      <QueBivia />
      <BiviaLines />
      <Servicios />
      <PortafolioRail />
      <CTASection />
      {/* <Contacto /> */}
      <Footer />
    </>
  );
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
