import { useEffect, useRef } from 'react'; import { gsap } from 'gsap'; import { ScrollTrigger } from 'gsap/ScrollTrigger'; import { Building2, Phone, Server, ArrowRight, CheckCircle2, Shield, Wifi } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Link } from 'react-router-dom'; gsap.registerPlugin(ScrollTrigger); const CondominiosCTA = () => { const sectionRef = useRef(null); const contentRef = useRef(null); useEffect(() => { const ctx = gsap.context(() => { const elements = contentRef.current?.querySelectorAll('.animate-item'); if (elements && elements.length > 0) { gsap.fromTo( elements, { y: 50, opacity: 0 }, { y: 0, opacity: 1, duration: 0.7, stagger: 0.1, ease: 'expo.out', scrollTrigger: { trigger: sectionRef.current, start: 'top 80%', toggleActions: 'play none none reverse', }, } ); } }, sectionRef); return () => ctx.revert(); }, []); const beneficios = [ 'Redução de até 90% no investimento inicial', 'Independência de empresas de portaria', 'Ramais gratuitos para áreas comuns', 'Monitoramento 24/7', ]; return (
{/* Background decorations */}
{/* Badge */}
Nova Solução
{/* Content */}

Tecnologia para{' '} Condomínios

Infraestrutura própria, VOIP moderno e redução de custos. Seu condomínio com tecnologia que não para.

{/* Benefícios */}
{beneficios.map((item, i) => (
{item}
))}
{/* CTA Buttons */}
{/* Visual */}
{/* Cards de serviço */}

VOIP para Condomínios

Comunicação moderna e econômica

Gestão de CPD

Infraestrutura profissional

Rede e Conectividade

Alta disponibilidade

Segurança

Monitoramento 24/7

{/* Stats */}
90%
Economia
24/7
Operação
500+
Clientes
); }; export default CondominiosCTA;