diff --git a/proveedores.html b/proveedores.html
index c8de6db..cd920eb 100644
--- a/proveedores.html
+++ b/proveedores.html
@@ -702,7 +702,16 @@
document.getElementById('modalCompanyLogo').innerHTML = `
`;
document.getElementById('displayRef').innerText = `REF: ${svc.service_ref}`;
- document.getElementById('displayCompany').innerText = companyName;
+
+ // 🛑 NUEVO: Sacamos el estado original de la compañía (buscando varias palabras clave posibles)
+ const estadoOriginal = raw['ACTUALMENTE EN'] || raw['Estado'] || raw['ESTADO'] || raw['Situación'] || "";
+
+ // Lo inyectamos en la pastilla azul junto al nombre de la compañía
+ if (estadoOriginal) {
+ document.getElementById('displayCompany').innerHTML = `${companyName} ${estadoOriginal}`;
+ } else {
+ document.getElementById('displayCompany').innerText = companyName;
+ }
if (isArchived) {
document.getElementById('modalStatusBadge').innerHTML = ` ARCHIVADO`;