Arreglos de Globos para cada ocasión

Haz sonreír a quien más quieres con un detalle creativo y diferente.

Globos que dan alegría

Cada arreglo es único, hecho a mano y pensado para sorprender. Queremos que regalar sea tan especial como recibir, por eso ponemos creatividad y corazón en cada diseño.

Hacemos de cada ocasión un recuerdo inolvidable con globos personalizados

Los más amados:

Por qué elegirnos

We love dogs

We understand that your furry friend is a treasured member of your family and deserves the best care and attention possible.

Convenience

In addition to our convenient appointment times, we also offer online booking for easy scheduling.

Personalized care

Our team of trained professionals is dedicated to providing personalized care for every dog that comes through our doors.

Peace of mind

We know that leaving your furry friend can be stressful, and you want to ensure that they are receiving the best care while you're away.

Transperency

We want you to feel confident in the care we provide and trust that we have your dog's best interests at heart.

Teamwork

Our team of vets, technicians, and other pet care professionals work together to ensure that your dog receives the best possible care.

Momentos felices


GUAUUU!!!

Let’s meet!

1 Day FREE daycare trail for new clients!
Reservation requared. Discount cannot be applied during peak periods.

Decoraciones para Eventos

Decoración personalizada con globos para toda ocasión especial:

Preguntas Frecuentes

Recomendamos reservar al menos 1 mes antes del evento, para asegurar disponibilidad y planificar cada detalle sin contratiempos. 
Para confirmar tu fecha, solicitamos un anticipo del 50% del total, y el saldo restante se cancela el día del montaje.

Sí, llevamos la decoración directamente al lugar del evento dentro del perímetro de la Ciudad.

¡Por supuesto! Diseñamos todo según el tema y paleta de colores que prefieras. Siempre sujeto a disponibilidad.

Contamos con paquetes estándar y también opciones totalmente personalizadas.

Realizamos desde centros de mesa y arreglos pequeños hasta grandes estructuras y arcos decorativos.

Añade aquí tu texto de cabecera

Regala algo especial e inolvidable

Comparte momentos felices

Regala algo especial e inolvidable

Scroll al inicio

Inactive

Sign-up!

By subscribing to our newsletter you agree to our Terms and Conditions and Privacy Policy

Inactive

Thank you!

Thank you for signing up! Check your inbox soon for special offers from us.

/* global elementorProFrontend */ document.addEventListener('DOMContentLoaded', () => { const POPUP_ID = 6022; // ← tu popup const OPEN_DELAY = 120; const CLOSE_DELAY = 160; // Espera a que el módulo de popups esté disponible (API compatible) function withPopup(cb, tries = 60) { const m = window.elementorProFrontend?.modules?.popup; if (m) { const api = { show(id){ return m.showPopup ? m.showPopup({ id }) : m.show?.({ id }); }, hide(){ return m.closePopup ? m.closePopup() : m.hide?.(); } }; cb(api); } else if (tries > 0) { setTimeout(() => withPopup(cb, tries - 1), 250); } else { console.warn('[popup-hover] módulo popup no disponible.'); } } withPopup((popup) => { const canHover = matchMedia('(any-hover: hover)').matches && window.innerWidth >= 1024; let openT, closeT; const show = () => { clearTimeout(closeT); openT = setTimeout(() => popup.show(POPUP_ID), OPEN_DELAY); }; const hide = () => { clearTimeout(openT); closeT = setTimeout(() => popup.hide(), CLOSE_DELAY); }; // Delegación: funciona aunque el tema duplique el menú document.addEventListener('click', (e) => { const li = e.target.closest('.open-popup-hover'); if (!li) return; const a = li.querySelector('a'); if (a) e.preventDefault(); show(); }, true); if (canHover) { document.addEventListener('mouseover', (e) => { if (e.target.closest('.open-popup-hover')) show(); if (e.target.closest('.elementor-popup-modal')) clearTimeout(closeT); }, true); document.addEventListener('mouseout', (e) => { if (e.target.closest('.open-popup-hover')) hide(); if (e.target.closest('.elementor-popup-modal')) hide(); }, true); } // --- AUTO-TEST por URL: ?open_popup=ID (ej. ?open_popup=6022) const p = new URLSearchParams(location.search); const urlId = p.get('open_popup'); if (urlId) { const id = parseInt(urlId, 10); if (!Number.isNaN(id)) { setTimeout(() => popup.show(id), 400); // abre al cargar } } }); });