DC Group

Premium Helicopter Tours

Diana Chavez
Diana Chavez Tu agente de viajes peruana con residencia brasileña. Atención 100% bilingüe.

Catálogo de Vuelos Panorámicos

Descubre las mejores experiencias en helicóptero en Río de Janeiro con la confianza, seguridad y acompañamiento que solo DC Group te puede brindar.

Selecciona una Experiencia

Comparativa de Tarifas (1 PAX)

Selecciona un tour en el menú lateral para ver los detalles.

Ruta y Atractivos

${pointsHtml}
${tour.isDoors ? `

⚠ ${tour.note}

` : ''}

Elige Tu Vuelo

Reserva rápida por WhatsApp

Privado / Exclusivo
Precio de los servicios: R$ 0,00
Precio total: R$ --
Precio por persona: R$ --

¡Reserva 100% Segura! No requerimos pagos por adelantado. Paga el total directamente en el helipuerto el día de tu vuelo. Cancelación gratuita disponible.

// Helper global for selected tour data let currentTourKey = ''; function selectTour(tourKey) { currentTourKey = tourKey; const tour = tourData[tourKey]; const contentDiv = document.getElementById('tour-content'); // Calculate initial totals for the booking widget setTimeout(() => calcularTotalReserva(tourKey), 100); // Set today's date as default setTimeout(() => { const dateInput = document.getElementById('reserva-fecha'); if(dateInput && !dateInput.value) { const today = new Date().toISOString().split('T')[0]; dateInput.value = today; } }, 100); } function calcularTotalReserva(tourKey) { const tour = tourData[tourKey]; const selectIndex = document.getElementById('reserva-pasajeros').value; const selectedOption = tour.pricing[selectIndex]; if (selectedOption) { const totalPrice = selectedOption.price; document.getElementById('reserva-total').innerText = `R$ ${totalPrice}`; // Extraer el número de pasajeros del string "X Pasajeros" o "X PAX" let numPax = parseInt(selectedOption.pax.match(/\d+/)?.[0] || 1); // Calcular unitario const rawTotal = parseFloat(totalPrice.replace(/\./g, '').replace(',', '.')); const unitario = (rawTotal / numPax).toLocaleString('pt-BR', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); document.getElementById('reserva-unitario').innerText = `R$ ${unitario}`; } } function enviarReservaWhatsApp(tourKey) { const tour = tourData[tourKey]; const fechaInput = document.getElementById('reserva-fecha').value; const selectIndex = document.getElementById('reserva-pasajeros').value; const selectedOption = tour.pricing[selectIndex]; let fechaTexto = "Fecha por confirmar"; if(fechaInput) { const [year, month, day] = fechaInput.split('-'); fechaTexto = `${day}/${month}/${year}`; } const mensaje = `¡Hola Diana! 👋 Me gustaría reservar un vuelo panorámico con DC Group.\n\n🚁 *Tour:* ${tour.title}\n📅 *Fecha deseada:* ${fechaTexto}\n👥 *Pasajeros:* ${selectedOption.pax}\n💵 *Valor Total:* R$ ${selectedOption.price}\n\nSé que no se requiere adelanto y el pago es el mismo día en el helipuerto. ¿Me ayudas a confirmar disponibilidad?`; const numeroWhatsApp = "51930609010"; // Número de Diana const urlWhatsApp = `https://wa.me/${numeroWhatsApp}?text=${encodeURIComponent(mensaje)}`; window.open(urlWhatsApp, '_blank'); } async function generatePitch(tourKey) {