    <script>
        let mediaRecorder;
        let audioChunks = [];

        function startRecording() {
            navigator.mediaDevices.getUserMedia({ audio: true })
                .then(stream => {
                    mediaRecorder = new MediaRecorder(stream);
                    mediaRecorder.start();

                    mediaRecorder.ondataavailable = event => {
                        audioChunks.push(event.data);
                    };

                    mediaRecorder.onstop = () => {
                        const audioBlob = new Blob(audioChunks, { type: 'audio/wav' });
                        const audioUrl = URL.createObjectURL(audioBlob);
                        document.getElementById('audioPlayer').src = audioUrl;

                        const file = new File([audioBlob], 'denuncia_audio.wav', { type: 'audio/wav' });
                        const dataTransfer = new DataTransfer();
                        dataTransfer.items.add(file);
                        document.getElementById('audioFile').files = dataTransfer.files;
                    };
                })
                .catch(error => {
                    alert('Erro ao acessar o microfone: ' + error.message);
                });
        }

        function stopRecording() {
            mediaRecorder.stop();
        }
    </script>

<script>
    function toggleIdentificacao() {
        var identidade = document.getElementById("identidade").value;
        var identificacaoCampos = document.getElementById("identificacaoCampos");

        if (identidade === "Identificado") {
            identificacaoCampos.style.display = "block";
        } else {
            identificacaoCampos.style.display = "none";
        }
    }
</script>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://site.aeescariz.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://site.aeescariz.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://site.aeescariz.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://site.aeescariz.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://site.aeescariz.com/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://site.aeescariz.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
