/* global React */ const ServicePage = ({ service }) => { const { Logo, Btn, Eyebrow, GlassCard, Light, Icon } = window; return ( <> Saltar al contenido
Inicio Servicios Blog Contacto Agendar diagnóstico técnico gratuito
{/* Hero with H1 */}
{service.eyebrow}

{service.h1} | Brotek

{service.lead}

Agendar diagnóstico técnico gratuito Volver a la home
{/* Service-specific sticker composition */} {(() => { const stickerSets = { 'ethical-hacking': [ { color:'#EC4D2A', label:'Pentest', sublabel:'OFFENSIVE·01', rotate:-12, pos:{top:20,left:20}, size:130 }, { color:'#A335E7', label:'OWASP', sublabel:'WSTG·v4.2', rotate:8, pos:{top:60,right:10}, size:115 }, { color:'#EC008C', label:'OSCP', sublabel:'CERTIFIED', rotate:-5, pos:{bottom:90,left:50}, size:120 }, { color:'#FB881D', label:'CVSS 3.1', sublabel:'SCORING', rotate:10, pos:{bottom:30,right:40}, size:125 }, ], 'offensive-security': [ { color:'#EC008C', label:'Red Team', sublabel:'ADVERSARY', rotate:-10, pos:{top:20,left:30}, size:135 }, { color:'#EC4D2A', label:'MITRE', sublabel:'ATT&CK', rotate:7, pos:{top:70,right:0}, size:120 }, { color:'#A335E7', label:'Phishing', sublabel:'CAMPAIGN', rotate:-6, pos:{bottom:90,left:60}, size:115 }, { color:'#3551E7', label:'C2', sublabel:'COBALT·STRIKE', rotate:9, pos:{bottom:30,right:30}, size:120 }, ], 'defensive-team': [ { color:'#3551E7', label:'Blue Team', sublabel:'DEFENSIVE·03', rotate:-10, pos:{top:20,left:20}, size:135 }, { color:'#35E747', label:'SOC 24/7', sublabel:'MONITORING', rotate:8, pos:{top:70,right:10}, size:120 }, { color:'#35E7C7', label:'SIEM', sublabel:'CORRELATION', rotate:-5, pos:{bottom:90,left:60}, size:115 }, { color:'#A335E7', label:'Hunting', sublabel:'PROACTIVE', rotate:10, pos:{bottom:30,right:30}, size:125 }, ], 'devsecops': [ { color:'#A335E7', label:'DevSecOps', sublabel:'PIPELINE·04', rotate:-12, pos:{top:20,left:20}, size:140 }, { color:'#3551E7', label:'SAST', sublabel:'STATIC·SCAN', rotate:7, pos:{top:70,right:0}, size:115 }, { color:'#FB881D', label:'SCA', sublabel:'DEPENDENCIES', rotate:-6, pos:{bottom:90,left:50}, size:120 }, { color:'#35E747', label:'CI / CD', sublabel:'GITHUB·GITLAB', rotate:9, pos:{bottom:30,right:40}, size:125 }, ], 'grc': [ { color:'#EC008C', label:'ISO 27001', sublabel:'CERTIFIED', rotate:-10, pos:{top:20,left:30}, size:135 }, { color:'#A335E7', label:'SOC 2', sublabel:'TYPE·II', rotate:8, pos:{top:70,right:10}, size:115 }, { color:'#3551E7', label:'PCI DSS', sublabel:'v4.0', rotate:-5, pos:{bottom:90,left:60}, size:115 }, { color:'#CFC5CB', label:'NIST CSF', sublabel:'GOVERNANCE', rotate:10, pos:{bottom:30,right:30}, size:125 }, ], 'prevencion-de-riesgos': [ { color:'#FB881D', label:'BIA', sublabel:'IMPACT·ANALYSIS', rotate:-10, pos:{top:20,left:20}, size:130 }, { color:'#EC4D2A', label:'BCP', sublabel:'CONTINUITY', rotate:8, pos:{top:70,right:10}, size:115 }, { color:'#3551E7', label:'DRP', sublabel:'DISASTER·REC', rotate:-5, pos:{bottom:90,left:60}, size:120 }, { color:'#A335E7', label:'FAIR', sublabel:'QUANTITATIVE', rotate:10, pos:{bottom:30,right:30}, size:125 }, ], 'cyber-threat-intelligence': [ { color:'#35E7C7', label:'Dark Web', sublabel:'MONITORING', rotate:-12, pos:{top:20,left:20}, size:135 }, { color:'#EC008C', label:'OSINT', sublabel:'INTELLIGENCE', rotate:8, pos:{top:70,right:0}, size:115 }, { color:'#A335E7', label:'Brand Protect', sublabel:'TAKEDOWN', rotate:-6, pos:{bottom:90,left:50}, size:125 }, { color:'#FB881D', label:'Data Leak', sublabel:'CREDENTIALS', rotate:10, pos:{bottom:30,right:30}, size:120 }, ], }; const stickers = stickerSets[service.slug] || stickerSets['ethical-hacking']; return ( <> {stickers.map((s, i) => (
))}
); })()}
{/* What is — search intent H2 */} {service.whatIs && (

{service.whatIs.h2}

{service.whatIs.paragraphs.map((p, i) => (

{p}

))}
)} {/* How we do it — E-E-A-T expertise */} {service.howWeDoIt && (
El método Brotek

{service.howWeDoIt.h2}

{service.howWeDoIt.paragraphs.map((p, i) => (

{p}

))}
)} {/* Intelligence cycle (CTI-specific, optional) */} {service.cycle && (
Ciclo de Inteligencia

{service.cycle.h2}

{service.cycle.steps.map((s, i) => (
{String(i+1).padStart(2,'0')}

{s.title}

{s.desc}

))}
)} {/* Pillars (CTI-specific, optional) */} {service.pillars && (
Pilares

{service.pillars.h2}

{service.pillars.items.map((p, i) => (
0{i+1}

{p.title}

{p.desc}

))}
)} {/* Benefits AR — local SEO */} {service.benefitsAR && (
Argentina

{service.benefitsAR.h2}

{service.benefitsAR.bullets.map((b, i) => (

{b.t}

{b.d}

))}

Brotek S.A. · Av. Dorrego 864, CABA, Argentina

)} {/* Deliverables */}
Entregables

Qué recibís al contratar este servicio

{service.deliverables.map((d, i) => (

{d.title}

{d.desc}

))}
{/* Methodology */}
Metodología

Cómo trabajamos paso a paso

    {service.methodology.map((m, i) => (
  1. PASO {String(i+1).padStart(2,'0')}

    {m.title}

    {m.desc}

  2. ))}
{/* FAQ */} {service.faqs && service.faqs.length > 0 && (
Preguntas frecuentes

{service.title} — preguntas frecuentes

{service.faqs.map((q, i) => (
{q.q} +

{q.a}

))}
)} {/* Related services — internal linking */} {service.related && service.related.length > 0 && (
Servicios relacionados

Seguí explorando los servicios de Brotek

{service.related.map(r => ( {r.label} ))}

¿Buscás algo más amplio? Volvé a la home de Brotek o consultá nuestros artículos del blog.

)} {/* Final CTA */}

Agendá un diagnóstico técnico gratuito

Te respondemos en menos de 24hs hábiles desde nuestras oficinas en Av. Dorrego 864, CABA.

Agendar diagnóstico
); }; const navLinkStyle = { fontFamily:'var(--font-body)', fontWeight:500, fontSize:14, color:'var(--fg)', textDecoration:'none', opacity:.85, }; window.ServicePage = ServicePage;