<script>
document.addEventListener('DOMContentLoaded', function () {

    let total = 0;

    document.querySelectorAll('.emprestimo-ano').forEach(function (celula) {

        let texto = celula.textContent
            .replace('R$', '')
            .trim()
            .replace(/\./g, '')
            .replace(',', '.');

        let valor = parseFloat(texto);

        if (!isNaN(valor)) {
            total += valor;
        }

    });

    document.getElementById('total-geral-emprestimos').textContent =
        'R$ ' + total.toLocaleString('pt-BR', {
            minimumFractionDigits: 2,
            maximumFractionDigits: 2
        });

    let totalSaldoFinal = 0;

    document.querySelectorAll('.saldo-final-ano').forEach(function (celula) {

        let texto = celula.textContent
            .replace('R$', '')
            .trim()
            .replace(/\./g, '')
            .replace(',', '.');

        let valor = parseFloat(texto);

        if (!isNaN(valor)) {
            totalSaldoFinal += valor;
        }

    });

    document.getElementById('total-geral-saldo-final').textContent =
        'R$ ' + totalSaldoFinal.toLocaleString('pt-BR', {
            minimumFractionDigits: 2,
            maximumFractionDigits: 2
        });
        
});
</script><?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//impero.com.br/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://impero.com.br/post-sitemap.xml</loc>
		<lastmod>2026-07-07T06:16:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://impero.com.br/page-sitemap.xml</loc>
		<lastmod>2026-09-05T10:48:49+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://impero.com.br/product-sitemap1.xml</loc>
		<lastmod>2026-09-10T13:48:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://impero.com.br/product-sitemap2.xml</loc>
		<lastmod>2026-09-10T13:48:01+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://impero.com.br/category-sitemap.xml</loc>
		<lastmod>2026-07-07T06:16:00+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://impero.com.br/product_cat-sitemap.xml</loc>
		<lastmod>2026-09-10T13:48:55+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->