Independent Consultant · AI-Ready & Secured Infrastructure

Felipe Medeiros
Infrastructure Architect

Senior Systems Engineer specializing in AI-Ready, Cyber-Resilient, and Hybrid Cloud infrastructure for government agencies, financial institutions, and research organizations.

22+ Years Experience
$62M+ Architected Solutions over the last 4 years
6 Critical Sectors Served
20M+ Citizens Impacted in a single project
Engage as Independent Consultant →

Areas of Expertise

Cross-domain specialization across the full AI infrastructure stack — from GPU compute to data sovereignty and cyber resilience — for regulated and mission-critical environments.

AI-Ready Infrastructure

GPU-accelerated compute clusters, Kubernetes orchestration, NVMe storage, and AI model lifecycle management for production-grade workloads.

High-Performance Computing

HPC cluster design with high-bandwidth interconnects and petabyte-scale storage for genomics, epidemiological modeling, and scientific research pipelines.

Hybrid Cloud Modernization

Private cloud architecture, dual-site active-active design, workload migration, and AWS/Azure hybrid integration.

Cyber-Resilient Data Protection

Immutable storage vaults, air-gapped replication, ransomware-proof architectures, and automated backup orchestration for regulated sectors.

Public Sector & Compliance

Infrastructure design aligned with NIST AI RMF, FedRAMP, FISMA-High, and sector-specific regulatory requirements for government and financial institutions.

Solution Architecture & Leadership

End-to-end architecture specifications, implementation roadmaps, operational runbooks, and structured knowledge transfer for institutional clients.

Project Portfolio

Production-grade implementations across six critical sectors, each delivered through formal competitive procurement and fully integrated with existing institutional systems.

Justice / Public Sector USD 3.3M

AI Infrastructure for Legal Document Processing

Designed GPU-accelerated platform for automated judicial transcription, case analytics, and large-scale NLP workloads serving a state justice system of 20 million citizens.

700 AI outputs/day 93% automation 30% workload reduction
Biomedical Research USD 1.1M

HPC Platform for National Genomic Surveillance

Built petabyte-scale HPC cluster and cyber-resilient storage for genome sequencing, epidemiological modeling, and precision-medicine pipelines under a national public health program.

21,000+ genomes 40% faster retrieval National scope
Financial Services USD 6.2M

High-Availability Storage for State-Owned Bank

Architected dual-site active-active storage environment supporting core banking operations with stringent regulatory compliance and continuous transaction processing.

99.99% uptime 25% faster settlement Regulatory compliant
Retail & E-Commerce USD 1.37M

Cyber-Vault Architecture for Multi-Site Retail Network

Implemented enterprise-wide immutable backup and air-gapped replication protecting over 100 production sites and e-commerce platform against ransomware and operational disruption.

4-hour RTO 80% RTO reduction 100+ sites
Financial Services USD 3.8M

Private Cloud Modernization — Dual Data Center

Designed and deployed sovereign private cloud across two data centers supporting over 2,500 virtual machines with FedRAMP-equivalent compliance and hybrid cloud extensions.

2,500+ VMs Active-active AI-ready foundation
Government / Identity USD 2.0M

AI Biometric Platform for Government Identity Agency

Engineered GPU-accelerated Kubernetes platform for real-time facial recognition across health, law enforcement, and education agencies with full data sovereignty compliance.

130K+ API calls/mo 30% latency reduction Multi-agency

Professional Certifications

A rare cross-domain portfolio spanning AI infrastructure, cloud architecture, data protection, and virtualization — each credential verified by its issuing organization.

NVIDIA Certified Professional — AI Infrastructure
NVIDIA Corporation
AWS Solutions Architect — Professional
Amazon Web Services
Microsoft Azure Administrator
Microsoft
VMware Certified Advanced Professional
VMware by Broadcom
Dell Mid-Range Storage Architect
Dell Technologies
NetApp Accredited Storage Architect
NetApp
Veeam Certified Engineer (VMCE)
Veeam Software
Dell Data Protection Architect
Dell Technologies

Measurable Impact

Quantified outcomes across six sectors, delivered through formal competitive procurement and verified by institutional stakeholders.

$62M+ Architected Solutions over the last 4 years
22+ Years Experience
21K+ Genomes Processed
2,500+ Virtual Machines
80% RTO Reduction
20M+ Citizens Impacted in a single project
6 Critical Sectors
99.99% Uptime Delivered

Independent Consulting Engagement

Open to Project-Based Engagements

I engage as an independent consultant — not as an employee — providing AI-Ready and Secured Infrastructure architecture for organizations that require advanced cross-domain expertise on a project-by-project basis.

Current focus areas include U.S. government agencies, FDIC-regulated financial institutions, national research laboratories, and energy utilities requiring FISMA-High or FedRAMP-compliant infrastructure modernization.

Available for U.S. engagements
// emailjs.init("YOUR_PUBLIC_KEY"); const form = document.getElementById('contactForm'); const submitBtn = document.getElementById('submitBtn'); const msgBox = document.getElementById('formMessage'); function showMessage(type, text) { msgBox.className = 'form-message ' + type; msgBox.textContent = text; msgBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); } function validateForm(data) { if (!data.fullName.trim()) return 'Please enter your full name.'; if (!data.organization.trim()) return 'Please enter your organization.'; if (!data.email.trim() || !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(data.email)) return 'Please enter a valid email address.'; if (!data.engagementType) return 'Please select an engagement type.'; if (!data.projectBrief.trim()) return 'Please describe your project.'; return null; } form.addEventListener('submit', async (e) => { e.preventDefault(); const data = { fullName: document.getElementById('fullName').value, organization: document.getElementById('organization').value, email: document.getElementById('email').value, engagementType: document.getElementById('engagementType').value, projectBrief: document.getElementById('projectBrief').value, }; const validationError = validateForm(data); if (validationError) { showMessage('error', validationError); return; } submitBtn.disabled = true; submitBtn.textContent = 'Sending…'; msgBox.className = 'form-message'; try { // ── OPÇÃO A: EmailJS (recomendado — descomente após configurar) ── // await emailjs.send("YOUR_SERVICE_ID", "YOUR_TEMPLATE_ID", data); // ── OPÇÃO B: Fallback via mailto (ativo por padrão) ── const subject = encodeURIComponent(`[MedeirosInfra] New Inquiry — ${data.engagementType}`); const body = encodeURIComponent( `Name: ${data.fullName}\n` + `Organization: ${data.organization}\n` + `Email: ${data.email}\n` + `Engagement Type: ${data.engagementType}\n\n` + `Project Brief:\n${data.projectBrief}` ); window.location.href = `mailto:felipempm@gmail.com?subject=${subject}&body=${body}`; showMessage('success', '✅ Your email client has opened with the inquiry. Thank you, ' + data.fullName.split(' ')[0] + '!'); form.reset(); } catch (err) { console.error('EmailJS error:', err); showMessage('error', 'Something went wrong. Please email felipempm@gmail.com directly.'); } finally { submitBtn.disabled = false; submitBtn.textContent = 'Send Inquiry →'; } });