body {
font-family: sans-serif;
background: #fff;
color: #222;
}
.language-selector {
display: flex;
gap: 8px;
margin-bottom: 20px;
}
.lang-btn {
padding: 6px 14px;
border-radius: 999px;
border: 1px solid #ddd;
background: #f5f5f5;
cursor: pointer;
font-size: 13px;
transition: all 0.25s ease;
}
.lang-btn:hover {
background: #eee;
}
.lang-btn.active {
background: #222;
color: #fff;
border-color: #222;
}
.lang-content {
display: none;
}
.active {
display: block;
}
a.email-link {
color: #007bff;
text-decoration: none;
}
a.email-link:hover {
text-decoration: underline;
}
📦 Entrega Rápida e Segura – Envio desde Europa! 🌍
Envio grátis: 3–5 dias úteis
Na VapePortugal.pt fazemos tudo para que recebas o teu vape descartável o mais rápido possível.
Encomendas feitas antes das 12:00 são enviadas no mesmo dia.
Seguimento da encomenda: Recebes email com tracking 📧
Envio seguro: Armazéns na UE – sem taxas alfandegárias
Outro país da UE?
info@vapeportugal.pt
WhatsApp: +351 935 718 678 📞
Porquê VapePortugal: Rápido, económico e seguro
📦 Fast & Secure Delivery – Shipped from Europe! 🌍
Free Shipping: 3–5 business days
At VapePortugal.pt we do everything to ensure you receive your disposable vapes as fast as possible.
Orders placed before 12:00 are shipped the same day.
Order Tracking: Email with tracking number 📧
Secure Shipping: EU warehouses – no customs fees
Other EU country?
info@vapeportugal.pt
WhatsApp: +351 935 718 678 📞
Why VapePortugal: Fast, affordable, secure
const buttons = document.querySelectorAll(".lang-btn");
const contents = document.querySelectorAll(".lang-content");
buttons.forEach(btn => {
btn.addEventListener("click", () => {
buttons.forEach(b => b.classList.remove("active"));
btn.classList.add("active");
contents.forEach(c => c.classList.remove("active"));
document.getElementById("content-" + btn.dataset.lang).classList.add("active");
});
});