— 03
{t('Todo bajo un mismo techo.', 'Everything under one roof.')}
{t(
'No subcontratamos las etapas críticas. Materiales y máquinas son nuestras. Por eso podemos garantizar tiempos, precio directo y calidad consistente.',
"We don't subcontract the critical stages. Materials and machines are ours. That's why we can guarantee turnaround, direct pricing and consistent quality."
)}
{/* Materials strip */}
{t('MATERIALES:', 'MATERIALS:')}
{[
t('Inox T304', 'Stainless T304'),
t('Inox T316', 'Stainless T316'),
t('Acero al carbón', 'Carbon steel'),
t('Galvanizado', 'Galvanized'),
t('Aluminio', 'Aluminum'),
t('Madera', 'Wood'),
t('Cristal templado', 'Tempered glass'),
].map((m, i) => (
{m}
))}
{/* Capabilities grid */}
{caps.map((c, i) => (
e.currentTarget.style.background = 'var(--bg-2)'}
onMouseLeave={(e) => e.currentTarget.style.background = 'var(--bg-1)'}
>
{c.icon}
{c.name}
{c.desc}
))}