// Industries Served — 10 sectors with overview, products, logistics, supply chain support. (function () { const { Reveal, Eyebrow } = window.GR; const INDUSTRIES = [ { name: 'Water Treatment', overview: 'Supplying disinfection and treatment chemicals to municipal water utilities, wastewater facilities, and industrial water operators throughout Latin America.', products: ['Sodium Hypochlorite', 'Calcium Hypochlorite', 'PAC', 'Liquid Chlorine Gas'], logistics: 'Bulk tanker, IBC, and cylinder delivery directly to treatment plants. Cold-chain not required.', supply: 'Continuous availability through diversified sourcing — supply continuity is critical for water operators and we plan accordingly.', }, { name: 'Chemical Manufacturing', overview: 'Raw material supply — across both commodities and industrial chemicals — to chemical producers requiring consistent feedstock for continuous production processes.', products: ['Caustic Soda', 'Methanol', 'Xylene', 'Ethanol', 'IPA'], logistics: 'ISO tank, bulk vessel, and drum shipments coordinated to plant schedules and storage capacity.', supply: 'Contracted recurring supply with forward planning to match production demand cycles.', }, { name: 'Industrial Cleaning', overview: 'Active ingredient and solvent supply to professional cleaning product manufacturers and industrial cleaning operators across LATAM.', products: ['LABSA', 'SLES', 'IPA', 'Sodium Hypochlorite', 'Caustic Soda'], logistics: 'Drum and IBC deliveries with documentation for industrial-grade material handling.', supply: 'Reliable replenishment with proactive inventory planning to avoid production stoppages.', }, { name: 'Consumer Goods Manufacturing', overview: 'Industrial chemical raw material inputs for household product manufacturing across LATAM consumer goods producers.', products: ['SLES', 'LABSA', 'Caustic Soda', 'Ethanol'], logistics: 'IBC, drum, and bulk supply aligned with formulation volumes and production runs.', supply: 'Long-term supply agreements with major LATAM consumer goods manufacturers.', }, { name: 'Detergent Production', overview: 'Key surfactants and alkaline supply to detergent formulators and cleaning product manufacturers.', products: ['LABSA', 'SLES', 'Caustic Soda Flakes', 'Caustic Soda Liquid'], logistics: 'Bulk surfactant and alkaline delivery — IBC and bulk options to match plant infrastructure.', supply: 'High-volume contracted supply with consistent quality across batches.', }, { name: 'Industrial Processing', overview: 'Manufacturing and processing operations requiring reliable commodity and industrial chemical input supply across diverse applications.', products: ['Caustic Soda', 'Xylene', 'Methanol', 'IPA', 'Chlorine'], logistics: 'Tailored shipment cadences from ISO tank to drum-pack depending on consumption profile.', supply: 'Diversified sourcing across continents to insulate operations from regional supply disruption.', }, { name: 'Distribution & Wholesale', overview: 'Bulk supply to regional chemical distributors and wholesale operators throughout Latin America — reliable, consistent product availability for resale.', products: ['Full chemicals & commodities portfolio'], logistics: 'Bulk and packaged supply with documentation supporting downstream resale and customs clearance.', supply: 'Wholesale-grade availability across product lines with volume pricing.', }, { name: 'Sanitation & Hygiene', overview: 'Industrial disinfectants and sanitation chemicals to hygiene operators, institutional cleaning services, and facilities management.', products: ['Sodium Hypochlorite', 'Calcium Hypochlorite', 'IPA', 'Ethanol'], logistics: 'Cylinder, drum, and IBC delivery to operator depots and service hubs.', supply: 'Year-round supply continuity for essential hygiene operations.', }, { name: 'Paints & Coatings', overview: 'Commodity solvent supply to paint manufacturers, coatings formulators, and industrial finishing operations throughout the region.', products: ['Xylene', 'Methanol', 'IPA'], logistics: 'ISO tank and drum supply matched to formulation runs and inventory cycles.', supply: 'Consistent solvent supply with documented purity grades for formulation reliability.', }, { name: 'Industrial Supply Chains', overview: 'Direct chemical and commodity supply for industrial supply chain operators serving manufacturing, processing, and distribution networks throughout LATAM.', products: ['Full portfolio · custom packaging'], logistics: 'End-to-end logistics coordination including customs, port handling, and inland distribution.', supply: 'Operationally integrated supply with forward planning and inventory buffers.', }, ]; function IndustriesPage() { return (
Sectors We Serve

The Industries
That Move LATAM.

We supply both industrial chemicals and commodities to 10 key sectors across Latin America — from water utilities and chemical manufacturers to distribution and supply chain operators.

{INDUSTRIES.map((ind, i) => (
{ e.currentTarget.style.borderColor = 'var(--color-green)'; e.currentTarget.style.boxShadow = 'var(--shadow-card-hover)'; }} onMouseLeave={(e) => { e.currentTarget.style.borderColor = 'rgba(30,27,75,0.12)'; e.currentTarget.style.boxShadow = 'none'; }} style={{ border: '1px solid rgba(30,27,75,0.12)', background: '#fff', padding: 32, height: '100%', transition: 'all 0.32s var(--ease-out)', }} >
Sector {String(i + 1).padStart(2, '0')} / 10

{ind.name}

{ind.overview}

Products Supplied
{ind.products.map((t) => ( {t} ))}
Logistics

{ind.logistics}

Supply Chain Support

{ind.supply}

))}
); } window.GR = Object.assign(window.GR || {}, { IndustriesPage }); })();