0 ? custoTotalLote / quantidade : 0 const taxaMLValor = venda * (taxaML / 100) const custoFinalUnitario = custoUnitario + embalagem + taxaMLValor const lucro = venda - custoFinalUnitario const roi = custoUnitario > 0 ? (lucro / custoUnitario) * 100 : 0 const margem = venda > 0 ? (lucro / venda) * 100 : 0 const moeda = (valor) => { return valor.toLocaleString('pt-BR', { style: 'currency', currency: 'BRL' }) } return (
Calculadora de ROI para Importação
Descubra o custo real do produto importado e o lucro da venda
setValorProduto(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setQuantidade(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setDolar(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setFrete(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setImposto(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setIcms(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
Remessa Conforme
setTaxaML(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setEmbalagem(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg" />
setVenda(Number(e.target.value))} className="w-full border rounded-2xl p-4 text-lg bg-green-50" />
Resultado da Importação
Custo Produto em Reais{moeda(custoProdutoReais)}
Valor do Imposto{moeda(impostoValor)}
Custo Total do Lote{moeda(custoTotalLote)}
Custo por Unidade {moeda(custoUnitario)}
Taxa Mercado Livre{moeda(taxaMLValor)}
Custo Final por Unidade {moeda(custoFinalUnitario)}
Resultado da Venda
Lucro por Unidade
{moeda(lucro)}
Margem
{margem.toFixed(1)}%
ROI
{roi.toFixed(0)}%
Como o ROI é calculado?
ROI = (Lucro ÷ Custo do Produto) × 100
A calculadora considera o custo do produto importado, imposto, frete, embalagem e taxa do Mercado Livre.
) }/p>








