Rafael Aguiar Arquitetura
Vamos conversar

Inicie seu
projeto conosco

Telefone fixo (43) 3067-0123
WhatsApp (43) 99608-8708
Av. Me. Leônia Milito, 1500
23º Andar · Sala 2303 — Palhano 2
Londrina – PR · CEP 86050-270
Instagram @rafaelaguiar.arq
Formulário de contato

Prefere falar diretamente?

Conversar pelo WhatsApp
function phoneMask(el){ let v = el.value.replace(/\D/g,''); if(v.length > 11) v = v.slice(0,11); if(v.length > 10){ v = '('+v.slice(0,2)+') '+v.slice(2,7)+'-'+v.slice(7); } else if(v.length > 6){ v = '('+v.slice(0,2)+') '+v.slice(2,6)+'-'+v.slice(6); } else if(v.length > 2){ v = '('+v.slice(0,2)+') '+v.slice(2); } else if(v.length > 0){ v = '('+v; } el.value = v; }