<script type="text/javascript" src="https://staticportaldaindustria.azureedge.net/static/js/alpine.min.js"></script>
<script type="text/javascript"
    src="https://staticportaldaindustria.azureedge.net/static/js/dirigentes_empregados_v3.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
<script type="text/javascript" src="https://staticportaldaindustria.azureedge.net/static/js/vendors.js"></script>
<script type="text/javascript" src="https://staticportaldaindustria.azureedge.net/static/js/scripts.js"></script>
<link rel="stylesheet" href="https://staticportaldaindustria.azureedge.net/static/css/casa-color/sesi_style.css">
<link rel="stylesheet" href="https://staticportaldaindustria.azureedge.net/static/css/style.css">
<link rel="stylesheet" href="https://staticportaldaindustria.azureedge.net/static/si_transparencia/css/style.css">
<link rel="stylesheet" href="https://staticportaldaindustria.azureedge.net/static/css/mini-accordion.css">
<script src="https://staticportaldaindustria.azureedge.net/static/js/mini-accordions.js"></script>
<style>
.content p {
    font-size: 18px !important;
}
</style>
<script>
window.RelatorioDeAuditoriaCGU = function() {
    const urls = {
        download: ({
                api,
                ano,
                departamento,
                entidade,
                formato
            }) =>
            `${api}/api-informes-cgu/publico/auditoria-cgu/export?ano=${ano}&departamento=${departamento}&entidade=${entidade}&formatoExportacao=${formato}`,
        data: ({
                api,
                ano,
                departamento,
                entidade
            }) =>
            `${api}/api-informes-cgu/publico/auditoria-cgu?ano=${ano}&departamento=${departamento}&entidade=${entidade}`
    }

    function getLastFiveYears() {
        const currentYear = new Date().getFullYear();
        const years = [];

        for (let i = 0; i < 5; i++) {
            years.push(currentYear - i);
        }

        return JSON.stringify(years);
    }

    function getCurrentYearAsString() {
        const currentYear = new Date().getFullYear();
        return currentYear.toString();
    }


    function getAnoInicial() {
        try {
            return parseInt(getCurrentYearAsString());
        } catch (error) {
            return 2022
        }
    }

    function getListaAnos() {
        try {
            return JSON.parse(getLastFiveYears());
        } catch (error) {
            return 2022
        }
    }

    return {
        api: 'https://sistematransparenciaweb.com.br',
        ano: getAnoInicial(),
        entidade: 'SESI',
        departamento: 'SESI-AP',
        anos: getListaAnos(),
        itens: [],
        possuiDados() {
            return this.itens.length > 0;
        },
        getItens() {
            return this.itens;
        },
        possuiFonte() {
            return this.itens.length > 0 && this.getFonte() !== "";
        },
        possuiNota() {
            return this.itens.length > 0 && this.getNota().length > 0;
        },
        getNota() {
            const notas = this.itens.length > 0 ? this.itens[0].nota : "";
            return notas.split("\n").filter(e => e !== "").join("<br/>");
        },
        getTituloNota() {
            return this.itens.length > 0 ? this.itens[0].titulo : "Nota:";
        },
        getFonte() {
            return this.itens.length > 0 ? this.itens[0].fonte : "";
        },
        download(formato) {
            window.open(urls.download({
                ...this,
                formato
            }));
        },
        downloadXLSX() {
            this.download("XLSX");
        },
        downloadODS() {
            this.download("ODS");
        },
        fetchData() {
            fetch(urls.data({
                    ...this
                }), {
                    'Accept': 'application/json'
                })
                .then((res) => res.json())
                .then((data) => {
                    this.itens = data.map((item) => {
                        return {
                            relatorio: item.relatorioAvaliacao,
                            relatorioData: item.dataPublicacaoRelatorio,
                            relatorioLink: item.linkRelatorioAvaliacao,
                            resumo: item.resumoRecomendacao,
                            providencias: item.providenciasAdotadas,
                            fonte: item.fonte,
                            nota: item.nota,
                        }
                    });
                })
                .catch((error) => {
                    this.itens = [];
                    console.log(error);
                });
        },
    }
};
</script>
<script>
window.tcu = function() {
    const urls = {
        download: ({
                api,
                ano,
                departamento,
                entidade,
                formato
            }) =>
            `${api}/api-informes-fiscalizacao/publico/informes-fiscalizacao/export?ano=${ano}&departamento=${departamento}&entidade=${entidade}&formatoExportacao=${formato}`,
        tcu: ({
                api,
                ano,
                departamento,
                entidade
            }) =>
            `${api}/api-informes-fiscalizacao/publico/informes-fiscalizacao?ano=${ano}&departamento=${departamento}&entidade=${entidade}`,
    }

    function getLastFiveYears() {
        const currentYear = new Date().getFullYear();
        const years = [];

        for (let i = 0; i < 5; i++) {
            years.push(currentYear - i);
        }

        return JSON.stringify(years);
    }

    function getCurrentYearAsString() {
        const currentYear = new Date().getFullYear();
        return currentYear.toString();
    }


    function getAnoInicial() {
        try {
            return parseInt(getCurrentYearAsString());
        } catch (error) {
            return 2022
        }
    }

    function getListaAnos() {
        try {
            return JSON.parse(getLastFiveYears());
        } catch (error) {
            return 2022
        }
    }

    return {
        api: 'https://sistematransparenciaweb.com.br',
        ano: getAnoInicial(),
        entidade: 'SESI',
        departamento: 'SESI-AP',
        anos: getListaAnos(),
        itens: [],
        possuiDados() {
            return this.itens.length > 0;
        },
        getItens() {
            return this.itens;
        },
        possuiFonte() {
            return this.itens.length > 0 && this.getFonte() !== "";
        },
        possuiNota() {
            return this.itens.length > 0 && this.getNota() !== "";
        },
        getNota() {
            return this.itens.length > 0 ? this.itens[0].nota : "";
        },
        getFonte() {
            return this.itens.length > 0 ? this.itens[0].fonte : "";
        },
        download(formato) {
            window.open(urls.download({
                ...this,
                formato
            }));
        },
        downloadXLSX() {
            this.download("XLSX");
        },
        downloadODS() {
            this.download("ODS");
        },
        fetchData() {
            fetch(urls.tcu({
                    ...this
                }), {
                    'Accept': 'application/json'
                })
                .then((res) => res.json())
                .then((data) => {
                    this.itens = data;
                })
                .catch((error) => {
                    this.itens = [];
                    console.log(error);
                });
        },
    }
};
</script>

<script>
[...document.querySelectorAll(".tab-content .tab-pane")].forEach((panel) => {
    if (panel.classList.contains("active")) return;
    const tab = document.querySelector(`li.active>[aria-controls="${panel.id}"]`);
    if (tab) {
        panel.classList.add("active");
        return;
    }
});
$('a.tab-link').click(function(e) {
    e.preventDefault();
    $(this).tab('show');
});
</script>


<script type="text/javascript">
$(document).ready(function() {
    //$('div:has(div:has(.si-menu-geral))').css("z-index","999");
});
</script>

<script>
document.addEventListener("DOMContentLoaded", function(event) {
    const $departamento = document.querySelector(".departamento-regional-select.auto-open")
    $departamento && $departamento.addEventListener("change", function(evt) {
        const value = this.value || this.options[this.selectedIndex].value;
        const selected = this.querySelector(`[value="${value}"]`);
        window.open(value, selected.dataset.target);
    });

    const btnOpenUrl = document.querySelector(".departamento-regional-mapa .btn-open-url");
    btnOpenUrl && btnOpenUrl.addEventListener("click", function(event) {
        const $select = this.parentElement.querySelector(".departamento-regional-select");
        const selected = $select.querySelectorAll("option")[$select.selectedIndex];
        const target = selected.dataset.target;

        $select && target && window.open($select.value, target)
    });
});
</script>

<script>
[...document.querySelectorAll(".tab-content .tab-pane")].forEach((panel) => {
    if (panel.classList.contains("active")) return;
    const tab = document.querySelector(`li.active>[aria-controls="${panel.id}"]`);
    if (tab) {
        panel.classList.add("active");
        return;
    }
});
</script>



<style>
:root {
    --cor-casa: #009C31
}

.tab-content>.tab-pane {
    display: none;
    flex-direction: column;
    gap: 40px
}

.tab-content>.tab-pane.active {
    display: flex
}

.custom-nav-tabs {
    padding-top: 48px;
    padding-bottom: 48px
}

.tab-content .tab-pane {
    gap: 40px
}

.tab-content .tab-pane p {
    color: #222 !important;
    font-family: Calibre !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 150% !important
}

.tab-content .tab-pane p:last-child {
    margin: 0
}

.tab-content .tab-pane p strong {
    font-weight: 700 !important;
    font-size: 16px !important
}

.download-documentos {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.download-documentos strong {
    color: var(--cor-casa);
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 20px
}

.download-documentos .si-download-pequeno {
    width: 100%
}

.download-documentos .si-download-pequeno section {
    width: 100%
}

.download-documentos .si-download-pequeno svg {
    min-width: 18px
}

.si-download-mini {
    width: max-content !important;
    gap: 16px !important;
    padding-left: 12px !important;
    border-left: 4px solid var(--cor-casa) !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 300ms ease-in-out
}

.si-download-mini:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0) !important
}

.si-download-mini section {
    width: max-content
}

.si-download-mini section p {
    color: #262626 !important
}

.si-download-mini section span {
    color: #C0C0C0 !important
}

.tab-pane .accordions {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.tab-pane .accordions .accordion {
    background: transparent;
    border-radius: 0
}

.tab-pane .accordions .accordion.open .accordion-header {
    border-bottom: 2px solid var(--cor-casa)
}

.tab-pane .accordions .accordion .accordion-header {
    border-bottom: 1px solid rgba(250, 145, 26, 0.3);
    padding: 8px
}

.tab-pane .accordions .accordion .accordion-header h5 {
    color: var(--cor-casa);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px
}

.tab-pane .accordions .accordion .accordion-body .accordion-body-content {
    box-shadow: unset;
    margin: 16px 0;
    padding: 0
}

#relatorios-e-demonstrativos .accordion-body-content {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.si-tabela-integrantes {
    width: 100%;
    background: unset;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--cor-casa)
}

.si-tabela-integrantes table {
    width: 100%;
    background: unset
}

.si-tabela-integrantes table>thead,
.si-tabela-integrantes table>tfoot {
    background: unset;
    border: unset;
    font-size: unset;
    line-height: unset;
    vertical-align: unset;
    margin: unset;
    padding: unset
}

.si-tabela-integrantes table>thead>tr,
.si-tabela-integrantes table>tbody>tr,
.si-tabela-integrantes table>tfoot>tr {
    background: unset;
    border: unset
}

.si-tabela-integrantes table>thead>tr>th,
.si-tabela-integrantes table>tbody>tr>td,
.si-tabela-integrantes table>tfoot>tr>td {
    padding: unset;
    margin: unset;
    background: unset;
    border-radius: unset !important;
    border: unset !important;
    font-family: unset;
    font-size: unset;
    text-align: unset;
    line-height: unset
}

.si-tabela-integrantes table>thead>tr>th,
.si-tabela-integrantes table>tfoot>tr>td {
    text-align: center;
    padding: 21px 16px;
    background: var(--cor-casa);
    color: white
}

.si-tabela-integrantes table>tbody>tr {
    border-bottom: 1px solid #c0c0c0
}

.si-tabela-integrantes table>tbody>tr>td {
    padding: 20px 24px
}
</style>
<style>
.download-documentos .si-download-pequeno>section>*,
.tab-pane .si-download-pequeno>section>* {
    font-family: Inter !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 20px !important
}

.download-documentos .si-download-pequeno>section>p,
.tab-pane .si-download-pequeno>section>p {
    color: #262626 !important
}

.download-documentos .si-download-pequeno>section>span,
.tab-pane .si-download-pequeno>section>span {
    color: #C0C0C0 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 16px !important
}
</style>

<style>
#common-space-5327382 {
    height: 24px;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5327383 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5327383 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style>
#common-space-5327386 {
    height: 26px;
}
</style>

<style>
.departamento-regional {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;

    background: #FFFFFF;
    border: 1px solid rgba(225, 225, 225, 0.5);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.departamento-regional-shadow {
    border: 1px solid rgba(225, 225, 225, 0.5);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.departamento-regional .departamento-regional-textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}

.departamento-regional h6,
.departamento-regional p {
    /* font */
    font-family: 'Calibre Regular';
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.departamento-regional h6 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin: 0;
}

.departamento-regional .departamento-regional-textos p {
    color: #222222;
}

.departamento-regional p:last-child {
    margin-bottom: 0;
}

.departamento-regional-select {
    width: 100%;
    border: 2px solid #A2A2A2;
    border-radius: 4px;

    /* font */
    font-family: 'Calibre Regular';
    font-style: normal;
    font-weight: 500;
    line-height: 17px;
    color: #222222;
    opacity: 0.64;
}

.departamento-regional-senai h6 {
    color: #ff8c00;
}

.departamento-regional-sesi h6 {
    color: #009C31;
}

/* Mapa */

.departamento-regional-mapa {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 32px;
    gap: 16px;

    background: #FFFFFF;
    border: 1px solid rgba(130, 130, 130, 0.5);
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.05);
}

.departamento-regional-mapa-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    width: 100%;
}

.departamento-regional-separador {
    display: block;
    border-bottom: 1px solid rgba(130, 130, 130, 0.5);
    width: 100%;
}

.departamento-regional-mapa-titulo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 8px;
    width: 100%;
    background: #828282;

    /* Font */
    font-family: 'Calibre Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

.departamento-regional-mapa-subtitulo {
    width: 100%;

    /* Font */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #373737;
}


.departamento-regional-mapa .svg-wrap {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.departamento-regional-mapa .svg-wrap .outros-departamentos {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 8px;
    right: 0;
    bottom: 50px;
}

.departamento-regional-mapa .svg-wrap .outros-departamentos a {
    display: block;
    background: #D3D2D1;
    border-radius: 8px;
    padding: 10px 20px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.departamento-regional-mapa .svg-wrap .outros-departamentos a:hover {
    background-color: #999;
    color: #000 !important;
}

.departamento-regional-mapa svg {
    width: 100%;
}

.departamento-regional-mapa svg a text {
    fill: #000;
    font-family: 'Inter';
    font-weight: 700;
}

.departamento-regional-mapa .btn.btn-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px 12px 16px;
    gap: 8px;
    border-radius: 8px;
    border: unset;

    /* Font */
    font-family: 'Calibre Regular';
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
}

[data-instituicao="senai"] .btn-primary {
    background: #FA911A;
}

[data-instituicao="sesi"] .btn-primary {
    background: #01A62D;
}
</style>

<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5327385 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5327385 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style type="text/css">
.background-image-5327381 {
    background-image: url('');

}



.image-size-backgroud-5327381 {
    background-size: None;
}
</style>


<style>
.custom-nav-tabs {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-around;
    border-bottom: unset;
}

.custom-nav-tabs>li>a {
    text-align: center;
    border: unset;
    padding: 12px 16px;
}

.custom-nav-tabs>li {
    border-bottom: 4px solid #F8F8F8;
    ;
    transition: all 500ms ease;
}

.custom-nav-tabs>li.active {
    border-bottom: 4px solid rgba(1, 1, 1, .25);
    ;
}

.custom-nav-tabs>li>a:focus,
.custom-nav-tabs>li>a:hover {
    background-color: transparent;
}
</style>


<style>
.si-download-pequeno {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
    background: #FFFFFF;
    border: 1px solid #F7F7F7;
    border-radius: 4px;
    height: 56px;
    width: max-content;

    color: #fa911a;
    line-height: 21px;
    border-left: 4px solid var(--cor-casa);
    justify-content: space-between;
}

.si-download-pequeno:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.si-download-pequeno section * {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
}

.si-download-pequeno section p {
    line-height: 24px;
    margin: 0;
    color: #262626;
}

.si-download-pequeno section span {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #222222;
}

.si-download-pequeno svg path {
    stroke: var(--cor-casa, #FA911A);
    fill: unset;
}
</style>

<style>
.si-transparencia-empty {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 48px 0px;
    gap: 80px;
}

.si-transparencia-empty svg path {
    fill: 1px !important;
}

.si-transparencia-empty-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;

    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.si-transparencia-empty-label h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

[data-entidade="sesi"] .si-transparencia-empty-label h4 {
    color: #009c31;
}

[data-entidade="senai"] .si-transparencia-empty-label h4 {
    color: #ff862c;
}

.si-transparencia-empty-label strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

[data-entidade="sesi"] .si-transparencia-empty-label strong {
    color: #005C1D;
}

[data-entidade="senai"] .si-transparencia-empty-label strong {
    color: #CC6B23;
}
</style>

<link href="https://fonts.cdnfonts.com/css/calibre" rel="stylesheet">

<style>
.si-transparencia-tabela table>*>tr>[colspan="1"] {
    width: calc((100% / 10) * 1) !important;
}

.si-transparencia-tabela table>*>tr>[colspan="2"] {
    width: calc((100% / 10) * 2) !important;
}

.si-transparencia.si-transparencia-tcu table>tbody>tr {
    cursor: unset !important;
}

.si-transparencia.si-transparencia-tcu table>tbody>tr:hover {
    background: #ffffff !important;
}

.si-transparencia.si-transparencia-tcu table>tbody>tr>td>a {
    color: #0064CC !important;
}

.si-transparencia.si-transparencia-tcu table>tbody>tr>td>a:hover {
    text-decoration: underline;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5327389 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5327389 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style type="text/css">
.background-image-5327388 {
    background-image: url('');

}



.image-size-backgroud-5327388 {
    background-size: None;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5038899 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5038899 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5038902 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5038902 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5038904 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5038904 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style type="text/css">
/* Defina a imagem de fundo. */
.image-size-backgroud-5038907 {
    background-image: url('');
}

/*Default ou Centralizado - igual ao plugin de coluna*/
.image-size-backgroud-5038907 {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
</style>


<style>
.alt-ta-in {
    display: flex;
    margin-left: -32px;
    align-items: baseline;
}

.mt-4px-negative {
    margin-top: -4px !important;
}
</style>


<style>
.d-flexx {
    display: flex;
    flex-wrap: wrap;
}

.socials-draw {
    /*border: 1px solid white;
    border-radius: 50px;*/
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.socials-draw div {
    width: 24px;
    height: 24px;
    background-color: white;
}

.socials-draw:hover {
    border: 1px solid #337ab7;
}

.socials-draw:hover div {
    background-color: #337ab7;
}
</style>





<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" defer></script>

<style>
/* nt = novo transparencia */
/* 
                Calibre Light
                Calibre Regular
                Calibre Medium
                Calibre Semibold
                Calibre Bold
            */
.nt-lead .nt-lead-textos h2 {
    font-family: 'Calibre Semibold';
    font-style: normal;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 130%;
}

.nt-lead .nt-lead-textos p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 150%;
    color: #222222;
}

.nt-lead .nt-lead-textos strong,
.nt-lead .nt-lead-textos p>strong {
    font-family: 'Calibre Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 16px !important;
    line-height: 130%;
    color: #222222;
}
</style>
    <p><strong><br>Departamento Regional - SESI AP<br></strong></p>
    <p>O Departamento Regional - SESI AP presta contas de sua gestão ao Tribunal de Contas da União - TCU, cujas determinações com caráter definitivo constam no quadro Relatórios e Informes de Fiscalização TCU.</p>
    <p>Submete, também, seus processos monitorados pela unidade de controle interno/auditoria interna, conforme relatórios/pareceres disponíveis neste módulo.</p>
    <p>Completam esse sistema de controle, integridade e transparência, o Comitê de Ética, responsável pela aplicação do Código de Conduta Ética, a Ouvidoria e o Serviço de Atendimento ao Cidadão - SAC.</p>
    <div id="id-5327388" class="mobile-fallback background-image-5327388 image-size-backgroud-5327388 image-repeat-backgroud-5327388 None row nt nt-sesi">
        <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12  image-size-backgroud-5327389 image-mobile-background-5327389">
            <div>
                <ul class="nav nav-tabs custom-nav-tabs" role="tablist">
                    <li role="presentation" class="active" style="width: 25.0;%"><a href="#etica-corporativa" aria-controls="etica-corporativa" role="tab" data-toggle="tab">Ética<br>Corporativa</a></li>
                    <li role="presentation" style="width: 25.0%;"><a href="#relatorios-e-demonstrativos" aria-controls="relatorios-e-demonstrativos" role="tab" data-toggle="tab">Relatórios e<br>Demonstrativos</a></li>
                    <li role="presentation" style="width: 25.0%;"><a href="#relatorios-e-informes-de-fiscalizacao-tcu" aria-controls="relatorios-e-informes-de-fiscalizacao-tcu" role="tab" data-toggle="tab">Relatórios e Informes<br>de Fiscalização TCU</a></li>
                    <li role="presentation" style="width: 25.0%;"><a href="#relatorio-de-auditoria-cgu" aria-controls="relatorio-de-auditoria-cgu" role="tab" data-toggle="tab">Relatório de Auditoria CGU​</a></li>
                </ul>
            </div>
            <div class="tab-content">
                <div role="tabpanel" class="tab-pane fade in active" id="etica-corporativa">
                    <p><meta charset="utf-8">Confira abaixo o código de Conduta Ética e a composição dos integrantes do Comitê de Ética do Departamento Regional - SESI AP.</p>
                    <div  class="download-documentos"><strong>Documentos</strong>
                        <a href="https://www.ap.senai.br/transparencia-senai/wp-content/uploads/2023/10/Código-de-Ética-e-CondutaSESISENAIAP_1157937553.pdf" target="_blank" class="si-download-pequeno" title="Download Código de Conduta Ética"  download>
                            <img src="https://staticportaldaindustria.azureedge.net/static/si_download/icons/pdf.svg">
                            <section>
                                <p> Código de Conduta Ética</p>
                                <span>6.4 Mb</span>
                            </section>
                            <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                            </svg>
                            
                        </a>
                    </div>
                    <div  class="si-tabela-integrantes">
                        <table cellpadding="0" border="0" cellspacing="0" width="540">
                            <thead>
                                <tr>
                                    <th>Confira a relação dos integrantes do Comitê de Ética do Departamento Regional - SESI AP</th>
                                </tr>
                            </thead>
                            <tbody>
                            
                                <tr height="21">
                                    <td width="483" height="21">EDUARDO AUGUSTO SOUZA DA COSTA</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">ALYNE VIEIRA SILVA BARBOSA</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">PEDRO HENRIQUE FAURO DE ARAUJO</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">ADRIA GABRIELLE GOMES DE SOUSA BONFIM</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">CRISTIANE TELMA MONTENEGRO FIGUEIRA</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">NAIARA DE CASTRO PIMENTEL</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">SARA RAVENNY CONRADO OLIVEIRA</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">MARCUS MILLER MACHADO SASSIM</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">ALZIRA SILVA ANDRADE</td>
                                </tr>                                
                                
                                <tr height="21">
                                    <td width="483" height="21">NELAYNE DE SOUZA BENTES DIAS</td>
                                </tr>                                
                                
                            </tbody>
                            <tfoot>
                                <tr>
                                    <td> </td>
                                </tr>
                            </tfoot>
                        </table>
                    </div>
                </div>
                <div role="tabpanel" class="tab-pane fade in" id="relatorios-e-demonstrativos">
                    <div class="accordions">
                        <div class="accordion">
                            <div class="accordion-header">
                                <h5>Relatório de Controle Interno</h5>
                                <img src="https://static.portaldaindustria.com.br/media/./_swap.svg" class="accordion-close-icon-img">
                            </div>
                            <div class="accordion-body">
                                <div class="accordion-body-content">
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2026/05/SESI-RELATORIO-DE-CONTROLE-INTERNO-2026.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2026</p>
                                            <span>6.7 mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/storage/2026/02/7-SESI-Relatorio-Controle-Interno-2025-4o-TRI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2025</p>
                                            <span>33.5 mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2025/01/SESI_Relatorio-Controle-Interno-4o-TRI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2024</p>
                                            <span>1.4 mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2024/01/SESI_4trim.2023_Oficial.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2023</p>
                                            <span>1.5 mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                </div>                        
                            </div>                        
                        </div>                        
                        
                        <div class="accordion">
                            <div class="accordion-header">
                                <h5>Relatório de Monitoramento de Atividades dos Canais de Acesso à Informação</h5>
                                <img src="https://static.portaldaindustria.com.br/media/./_swap.svg" class="accordion-close-icon-img">
                            </div>
                            <div class="accordion-body">
                                <div class="accordion-body-content">
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2026/05/Relatorio-de-Monitoramento-2026-SESI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2026</p>
                                            <span>2.1 mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/portal-tcu/wp-content/uploads/2026/01/Relatorio-de-Monitoramento-dos-Canais-SESI-4-trimestre-1920-x-1080-px.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2025</p>
                                            <span>10.8mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2025/01/Monitoramento-dos-Canais-de-Acesso-SESI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2024</p>
                                            <span>1.8mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2024/01/SESI_4trim.2023.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2023</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                </div>                        
                            </div>                        
                        </div>                        
                        
                        <div class="accordion">
                            <div class="accordion-header">
                                <h5>Demonstrativo de Resultados da Ouvidoria</h5>
                                <img src="https://static.portaldaindustria.com.br/media/./_swap.svg" class="accordion-close-icon-img">
                            </div>
                            <div class="accordion-body">
                                <div class="accordion-body-content">
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2026/01/Relatorio-anual-da-ouvidoria-SESI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2025</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/storage/2025/01/RELATORIO-ANUAL-OUVIDORIA-SESI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2024</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2024/01/Bi-de-Ouvidoria-Sesi2023.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2023</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2023/03/Bi-de-Ouvidoria-Sesi2022.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2022</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                </div>                        
                            </div>                        
                        </div>                        
                        
                        <div class="accordion">
                            <div class="accordion-header">
                                <h5>Demonstrativo dos Resultados do SAC</h5>
                                <img src="https://static.portaldaindustria.com.br/media/./_swap.svg" class="accordion-close-icon-img">
                            </div>
                            <div class="accordion-body">
                                <div class="accordion-body-content">
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2026/01/RELATORIO-ANUAL-SAC-SESI.pptx.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2025</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/storage/2025/01/Demonstrativo-dos-Resultados-do-SAC-SESI.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2024</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2024/02/DEMONSTRATIVO-SAC-SESI-AP.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2023</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2023/01/DEMONSTRATIVO-SAC-SESI-AP.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2022</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2022/01/DEMONSTRATIVO-SAC-SESI-AP.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2021</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                    <a href="https://www.ap.sesi.org.br/transparencia-sesi/wp-content/uploads/2021/03/DEMONSTRATIVO-CONSOLIDADO-DE-RESULTADOS-DO-SAC-SESI-AP-1.pdf" target="_blank" class="si-download-pequeno si-download-mini" title="Download"  download>
                                        <section>
                                            <p> 2020</p>
                                            <span>1mb</span>
                                        </section>
                                        <svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                                            <path d="M17.0209 12.2103V14.3156C17.0209 14.897 16.5496 15.3682 15.9683 15.3682H2.28408C1.70272 15.3682 1.23145 14.897 1.23145 14.3156V12.2103M4.38934 6.42087L9.12548 11.1577L13.8623 6.42087H11.2307V1.68403C11.2307 1.39335 10.9951 1.15771 10.7044 1.15771H7.54653C7.25586 1.15771 7.02022 1.39335 7.02022 1.68403V6.42087H4.38934Z" stroke="#FA911A" stroke-linecap="round" stroke-linejoin="round"/>
                                        </svg>
                                    </a>
                                    
                                </div>                        
                            </div>                        
                        </div>                        
                        
                    </div>                        
                </div>
                <div role="tabpanel" class="tab-pane fade in" id="relatorios-e-informes-de-fiscalizacao-tcu">
                    <div class="si-transparencia si-transparencia-tcu" x-data="{ state: tcu() }" x-init="state.fetchData()" data-entidade="sesi">
                        <div class="si-transparencia-controles">
                            <div class="si-transparencia-filtros">
                                <div class="form-group">
                                    <label for="anos">Ano</label>
                                    <select name="anos" id="anos" class="form-control" x-model="state.ano" @change="state.fetchData()">
                                        <template x-for="ano in state.anos">
                                            <option x-text="ano" :selected="ano === state.ano"></option>  
                                        </template>
                                    </select>
                                </div>
                            </div>
                            <div class="si-transparencia-downloads" x-show="state.possuiDados()">
                                <button class="btn btn-success" @click="state.downloadXLSX()">Salvar (XLSX)</button>
                                <button class="btn btn-success" @click="state.downloadODS()">Salvar (ODS)</button>
                            </div>
                        </div>
                        <div class="si-transparencia-tabela" x-show="state.possuiDados()">
                            <table>
                                <thead>
                                    <tr>
                                        <th colspan="2">Processo</th>
                                        <th colspan="2">Acórdão</th>
                                        <th colspan="2">Data Sessão</th>
                                        <th colspan="2">Resumo da<br>Deliberação</th>
                                        <th colspan="2">Providências<br>Adotadas</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <template x-for="item in state.getItens()">
                                        <tr>
                                            <td colspan="2">
                                                <a :href="item.linkAcordao" target="_blank" x-text="item.processo"></a>
                                            </td>
                                            <td colspan="2" x-text="item.acordao"></td>
                                            <td colspan="2" x-text="item.dataSessao"></td>
                                            <td colspan="2" x-text="item.resumoDeliberacao"></td>
                                            <td colspan="2" x-text="item.providenciasAdotadas" style="text-align: start;"></td>
                                        </tr>
                                    </template>
                                </tbody>
                            </table>
                        </div>
                        
                        
                        <div class="si-transparencia-empty"x-show="!state.possuiDados()">
                            <div class="si-transparencia-empty-label">
                                <h4>Desculpe! Não há dados disponíveis para sua busca no momento.</h4>
                                <div>
                                    <strong>Tente outra vez!</strong>
                                    <p>Selecione outro período para localizar o que procura.</p>
                                </div>
                            </div>
                            <div class="si-transparencia-empty-imagem">
                                
                                <img src="https://staticportaldaindustria.azureedge.net/static/si_transparencia/imgs/sesi-empty.png">
                                
                            </div>
                        </div>
                        
                        
                        <div class="si-transparencia-notas" x-show="state.possuiDados()">
                            <div x-show="state.possuiFonte()" class="si-transparencia-nota">
                                <strong>Fonte: </strong>
                                <p x-text="state.getFonte()"></p>
                            </div>
                            <div x-show="state.possuiNota()" class="si-transparencia-nota">
                                <strong>Nota: </strong>
                                <p x-text="state.getNota()"></p>
                            </div>
                        </div>
                    </div>
                </div>
<div role="tabpanel" class="tab-pane fade in" id="relatorio-de-auditoria-cgu">
    
        

<div class="si-transparencia si-transparencia-relatorio-de-auditoria-cgu" x-data="{ state: RelatorioDeAuditoriaCGU() }" x-init="state.fetchData()" data-entidade="sesi">
    <div class="si-transparencia-controles">
        <div class="si-transparencia-filtros">
            <div class="form-group">
                <label for="anos">Ano</label>
                <select name="anos" id="anos" class="form-control" x-model="state.ano" @change="state.fetchData()">
                    <template x-for="ano in state.anos">
                        <option x-text="ano" :selected="ano === state.ano"></option>  
                    </template>
                </select>
            </div>
         </div>
        <div class="si-transparencia-downloads" x-show="state.possuiDados()">
            <button class="btn btn-success" @click="state.downloadXLSX()">Salvar (XLSX)</button>
            <button class="btn btn-success" @click="state.downloadODS()">Salvar (ODS)</button>
        </div>
  </div>
  <div class="si-transparencia-tabela" x-show="state.possuiDados()">
    <table>
      <thead>
        <tr>
          <th colspan="2">Relatório de Avaliação</th>
          <th colspan="2">Data de Publicação</th>
          <th colspan="4">Resumo da Recomendação</th>
          <th colspan="4">Providências Adotadas</th>
        </tr>
      </thead>
      <tbody>
        <template x-for="item in state.getItens()">
          <tr>
            <td colspan="2">
                <a :href="item.relatorioLink" x-text="item.relatorio" target="_blank"></a>
            </td>
            <td colspan="2" x-text="item.relatorioData"></td>
            <td colspan="4" x-text="item.resumo"></td>
            <td colspan="4" x-text="item.providencias"></td>
          </tr>
        </template>
      </tbody>
    </table>
  </div>
  
  

<div class="si-transparencia-empty"x-show="!state.possuiDados()">
  <div class="si-transparencia-empty-label">
    <h4>Desculpe! Não há dados disponíveis para sua busca no momento.</h4>
    <div>
      <strong>Tente outra vez!</strong>
      <p>Selecione outro período para localizar o que procura.</p>
    </div>
  </div>
  <div class="si-transparencia-empty-imagem">
    
      <img src="https://staticportaldaindustria.azureedge.net/static/si_transparencia/imgs/sesi-empty.png">
    
  </div>
</div>


  <div class="si-transparencia-notas" x-show="state.possuiDados()">
    <div x-show="state.possuiFonte()" class="si-transparencia-nota">
      <strong>Fonte: </strong>
      <p x-html="state.getFonte()"></p>
    </div>
    <div x-show="state.possuiNota()" class="si-transparencia-nota">
      <strong x-text="state.getTituloNota()"></strong>
      <p x-html="state.getNota()"></p>
    </div>
  </div>
</div>






    
</div>


            </div>
        </div>
    </div>
    <br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/html/integridadeBaseCssSesi.php:1) in <b>/var/www/html/sesi/transparencia-sesi/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1904</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/html/integridadeBaseCssSesi.php:1) in <b>/var/www/html/sesi/transparencia-sesi/wp-includes/rest-api/class-wp-rest-server.php</b> on line <b>1904</b><br />
{"id":35,"date":"2017-03-16T04:49:45","date_gmt":"2017-03-16T07:49:45","guid":{"rendered":"http:\/\/transparencia.raphaborralho.com\/?page_id=35"},"modified":"2023-10-26T19:45:56","modified_gmt":"2023-10-26T19:45:56","slug":"integridade","status":"publish","type":"page","link":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/integridade\/","title":{"rendered":"Integridade"},"content":{"rendered":"\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-35","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/pages\/35","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/comments?post=35"}],"version-history":[{"count":118,"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/pages\/35\/revisions"}],"predecessor-version":[{"id":2737,"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/pages\/35\/revisions\/2737"}],"wp:attachment":[{"href":"https:\/\/www.ap.sesi.org.br\/transparencia-sesi\/wp-json\/wp\/v2\/media?parent=35"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}