Online Reservation

Complete the 4 simple steps to secure your room in Tarapoto

1Dates
2Room
3Register / Guest
4Confirm

Select Your Dates of Stay

Select Your Room

Stay: to

We are sorry, there are no rooms of this type available for the chosen dates.

Try other dates or another type of room.


Change Dates

Client Identification

To save and manage your reservation securely, we need you to identify yourself.

Already have an account?

Sign in with your registered email and password to continue.

Sign In

Are you a new customer?

Create an account quickly by completing your personal details. It takes less than a minute.

Sign Up

Continue as Guest

Enter your details to proceed with the reservation.

Change Room

Review and Confirm Your Reservation

Please validate that all information about your stay is correct before finalizing.

Triple Room

Client Details

Name:
Email:

Stay Summary

Room:Triple Room
Check-In:
Check-Out:
Guests:2
Nights:0 nights
Price per night:S/. 180.00
Additional Guests:
Discount Coupon:

TOTAL: S/. 0.00
Change Room
var appliedDiscountPercent = 0.00; function recalculateTotal() { var basePrice = 180.00; var nights = 0; var additionalSelect = document.getElementById('personas_adicionales'); var additionalGuests = parseInt(additionalSelect.value) || 0; var additionalRate = 30; // S/. 30.00 por noche var baseTotal = (basePrice + (additionalGuests * additionalRate)) * nights; var discount = baseTotal * (appliedDiscountPercent / 100); var finalTotal = baseTotal - discount; if (appliedDiscountPercent > 0) { document.getElementById('discount_row').style.display = 'flex'; document.getElementById('display_discount').innerText = '-S/. ' + discount.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('hidden_descuento_aplicado').value = discount.toFixed(2); } else { document.getElementById('discount_row').style.display = 'none'; document.getElementById('hidden_descuento_aplicado').value = '0.00'; } document.getElementById('display_total').innerText = 'S/. ' + finalTotal.toLocaleString('en-US', {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('hidden_total_adicional').value = additionalGuests; } document.getElementById('apply_coupon_btn').addEventListener('click', function() { var code = document.getElementById('coupon_code_input').value.trim(); var msgDiv = document.getElementById('coupon_message'); if (code === '') { msgDiv.style.color = '#C0392B'; msgDiv.innerText = 'Por favor ingresa un código.'; msgDiv.style.display = 'block'; return; } fetch('ajax_check_coupon.php?codigo=' + encodeURIComponent(code)) .then(response => response.json()) .then(data => { if (data.success) { appliedDiscountPercent = data.descuento; msgDiv.style.color = '#117864'; msgDiv.innerText = data.message; msgDiv.style.display = 'block'; document.getElementById('hidden_cupon_codigo').value = code; recalculateTotal(); } else { appliedDiscountPercent = 0.00; msgDiv.style.color = '#C0392B'; msgDiv.innerText = data.message; msgDiv.style.display = 'block'; document.getElementById('hidden_cupon_codigo').value = ''; recalculateTotal(); } }) .catch(err => { msgDiv.style.color = '#C0392B'; msgDiv.innerText = 'Error al validar cupón.'; msgDiv.style.display = 'block'; }); });