BUSCADOR DE
PROPIEDADES

Operación
Venta
Alquiler
Tipo
Terreno
Departamento
Casa
Quinta
Oficina
Barrio
Barrio Norte
Belgrano
Congreso
Palermo
Recoleta
Ambientes
1 Ambiente
2 Ambientes
3 Ambientes
4 Ambientes
5 Ambientes
+5 Ambientes
Buscar

Este es un sitio web de pruebas y testeo, utilizado por un equipo Soporte Level 2 en constante capacitación, comprometidos con la mejora continua y la innovación. Nuestro objetivo es experimentar, validar funcionalidades y adaptarnos a los avances tecnológicos que exige el entorno actual.


Contacto
Enviar

Tasaciones
Enviar
0
(function () { // Esperar hasta que exista document.body if (!document.body) return setTimeout(arguments.callee, 50); // Inyectar CSS desde JS const style = document.createElement('style'); style.textContent = ` .popup-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; } .popup-box { background: white; padding: 2em; border-radius: 12px; max-width: 400px; width: 90%; text-align: center; font-family: sans-serif; box-shadow: 0 5px 20px rgba(0,0,0,0.3); } .popup-box button { margin-top: 1em; padding: 0.5em 1.5em; font-size: 1rem; background: #007bff; color: white; border: none; border-radius: 8px; cursor: pointer; } .popup-box button:hover { background: #0056b3; } `; document.head.appendChild(style); // Crear popup const backdrop = document.createElement('div'); backdrop.className = 'popup-backdrop'; const box = document.createElement('div'); box.className = 'popup-box'; box.innerHTML = `

Este sitio es una demo de prueba del equipo de soporte level 2

`; // Cerrar al hacer clic en el botón box.querySelector('button').addEventListener('click', () => { backdrop.remove(); }); backdrop.appendChild(box); document.body.appendChild(backdrop); })();