🔥 TOXIC x JOÃO PERSONAL
Não é só uma camiseta. É parceria de quem vive o treino.
Criada em parceria com o personal João Carlos , essa peça representa quem vive o treino de verdade.
Performance, atitude e respeito dentro do jogo.
✔️ Usada por quem lidera no treino
✔️ Estilo que impõe presença
✔️ Mentalidade de evolução
🔥 A CAMISETA
Tecido dry fit (poliéster de alta performance), leve, respirável e com secagem rápida.
Modelagem raglan que garante liberdade total nos movimentos.
Detalhe exclusivo de patrocínio Toxic no braço , trazendo identidade e respeito pra peça.
INSPIRE E CONTAMINE
✔️ Poliéster dry fit de alta performance
✔️ Corte raglan (mobilidade total)
✔️ Parceria exclusiva com João Personal
✔️ Detalhe de patrocínio Toxic
✔️ Conforto e estilo no treino
Quem veste isso não é só mais um na academia.
É quem puxa o ritmo, inspira e lidera.
⚠️ EDIÇÃO DE PARCERIA
Peça limitada.
Depois que sair, não volta igual.
QUERO A MINHA 🔥
⚠️ Drop exclusivo — poucos vão ter.
```
📏
Provador Virtual
```
```
×
Provador Virtual
Seu tamanho ideal é:
-
Pronto! Agora é só selecionar o tamanho na página.
```
(function () {
function iniciarProvador() {
var botao = document.getElementById("abrirProvador");
var modal = document.getElementById("meuProvador");
var fechar = document.getElementById("fecharProvador");
var formulario = document.getElementById("formProvador");
var resultado = document.getElementById("resultado");
var tamanhoFinal = document.getElementById("tamanhoFinal");
if (!botao || !modal || !formulario) {
return;
}
/* =================================================
ABRIR PROVADOR
================================================= */
botao.addEventListener("click", function (event) {
event.preventDefault();
modal.style.display = "flex";
formulario.style.display = "block";
resultado.style.display = "none";
document.body.style.overflow = "hidden";
});
/* =================================================
FECHAR NO X
================================================= */
if (fechar) {
fechar.addEventListener("click", function () {
modal.style.display = "none";
document.body.style.overflow = "";
});
}
/* =================================================
FECHAR CLICANDO FORA
================================================= */
modal.addEventListener("click", function (event) {
if (event.target === modal) {
modal.style.display = "none";
document.body.style.overflow = "";
}
});
/* =================================================
CALCULAR TAMANHO
================================================= */
formulario.addEventListener("submit", function (event) {
event.preventDefault();
var alt = parseFloat(
document.getElementById("prov-alt").value
);
var peso = parseFloat(
document.getElementById("prov-peso").value
);
var caim = document.getElementById("prov-caim").value;
if (!alt || !peso || alt <= 0 || peso <= 0) {
return;
}
/* CALCULA IMC */
var imc = peso / (
(alt / 100) *
(alt / 100)
);
/* TAMANHO BASE */
var tam = "M";
if (imc < 20) {
tam = "P";
} else if (imc >= 20 && imc < 25) {
tam = "M";
} else if (imc >= 25 && imc < 30) {
tam = "G";
} else {
tam = "GG";
}
/* AJUSTE PELO CAIMENTO */
if (caim === "justo") {
if (tam === "GG") {
tam = "G";
}
else if (tam === "G") {
tam = "M";
}
else if (tam === "M") {
tam = "P";
}
}
else if (caim === "largo") {
if (tam === "P") {
tam = "M";
}
else if (tam === "M") {
tam = "G";
}
else if (tam === "G") {
tam = "GG";
}
}
/* MOSTRA RESULTADO */
formulario.style.display = "none";
tamanhoFinal.innerText = tam;
resultado.style.display = "block";
});
/* =================================================
ESC ESCONDE MODAL
================================================= */
document.addEventListener("keydown", function (event) {
if (event.key === "Escape") {
modal.style.display = "none";
document.body.style.overflow = "";
}
});
}
/* =====================================================
GARANTE EXECUÇÃO NA LOJA INTEGRADA
===================================================== */
if (document.readyState === "loading") {
document.addEventListener(
"DOMContentLoaded",
iniciarProvador
);
} else {
iniciarProvador();
}
})();