import SEO from '../../components/SEO'; import { useEffect, useRef } from 'react'; import { gsap } from 'gsap'; import { ScrollTrigger } from 'gsap/ScrollTrigger'; import { ArrowRight, Network, AlertTriangle, Wifi, Router, Shield, Server } from 'lucide-react'; gsap.registerPlugin(ScrollTrigger); const problemas = [ "Switch não responde", "VLANs não comunicam", "Portas bloqueadas", "Link instável", "Configuração perdida", "Rede lenta", ]; const servicos = [ { titulo: "Switches Cisco", desc: "Configuração e manutenção de switches gerenciáveis Cisco.", icon: }, { titulo: "VLANs", desc: "Segmentação de rede, trunking e inter-VLAN routing.", icon: }, { titulo: "Wi-Fi Corporativo", desc: "Access points, controllers e cobertura wireless.", icon: }, { titulo: "Segurança", desc: "ACLs, port security e proteção de rede.", icon: }, { titulo: "Roteamento", desc: "Routers Cisco, OSPF, BGP e roteamento estático.", icon: }, { titulo: "Cabeamento", desc: "Infraestrutura de cabeamento estruturado.", icon: }, ]; const Cisco = () => { const heroRef = useRef(null); const contentRef = useRef(null); useEffect(() => { const ctx = gsap.context(() => { const heroItems = heroRef.current?.querySelectorAll('.animate-item'); if (heroItems?.length) { gsap.fromTo(heroItems, { y: 50, opacity: 0 }, { y: 0, opacity: 1, duration: 0.8, stagger: 0.1, ease: 'expo.out' }); } const contentItems = contentRef.current?.querySelectorAll('.content-item'); if (contentItems?.length) { gsap.fromTo(contentItems, { y: 40, opacity: 0 }, { y: 0, opacity: 1, duration: 0.6, stagger: 0.1, ease: 'expo.out', scrollTrigger: { trigger: contentRef.current, start: 'top 80%' } }); } }); return () => ctx.revert(); }, []); const schemaData = { "@context": "https://schema.org", "@type": "Service", "name": "Suporte Redes Cisco", "description": "Especialistas em switches, VLANs e redes corporativas Cisco", "provider": { "@type": "Organization", "name": "Avanzato Consultoria" } }; return (