To live on a beautiful and remote island with the people you love, doing what you love the most...
Making people happier.
EMERALD LANZAROTE
We started this small family business in 2015 as vacation rental owners, thinking it would be incredible to give our best to make people's stay memorable and treat the properties we manage as if they were our own.
OUR VISION
Traveling, experiencing other cultures, and visiting less touristy places is our goal when we are abroad.
That's why we want our guests to enjoy their visit on the island and feel at home... away from home!
Booking inquiry
// Footer Script for Emerald Lanzarote
(function() {
console.log("Footer script loaded successfully for Emerald Lanzarote.");
// Agregar un botón de 'Volver arriba'
const backToTopButton = document.createElement('button');
backToTopButton.innerText = "↑ Volver arriba";
backToTopButton.style.position = 'fixed';
backToTopButton.style.bottom = '20px';
backToTopButton.style.right = '20px';
backToTopButton.style.zIndex = '1000';
backToTopButton.style.padding = '10px 15px';
backToTopButton.style.backgroundColor = '#007BFF';
backToTopButton.style.color = '#fff';
backToTopButton.style.border = 'none';
backToTopButton.style.borderRadius = '5px';
backToTopButton.style.cursor = 'pointer';
backToTopButton.style.display = 'none';
document.body.appendChild(backToTopButton);
// Mostrar el botón al hacer scroll
window.addEventListener('scroll', function() {
if (window.scrollY > 300) {
backToTopButton.style.display = 'block';
} else {
backToTopButton.style.display = 'none';
}
});
// Desplazarse hacia arriba al hacer clic en el botón
backToTopButton.addEventListener('click', function() {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
})();