Below you will find a list with all office locations and all pickup and return points that we serve.
document.addEventListener('DOMContentLoaded', function() {
var userLang = navigator.language || navigator.userLanguage; // Detecta o idioma do navegador
if (userLang.startsWith('pt')) {
window.location.href = '/pt'; // Redireciona para a versão em português
} else {
window.location.href = '/en'; // Redireciona para a versão em inglês
}
});