{"id":5053,"date":"2025-09-17T12:33:19","date_gmt":"2025-09-17T15:33:19","guid":{"rendered":"https:\/\/esafaz.sefaz.pe.gov.br\/?page_id=5053"},"modified":"2025-09-29T09:50:25","modified_gmt":"2025-09-29T12:50:25","slug":"cursos-presenciais-2","status":"publish","type":"page","link":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/","title":{"rendered":"Cursos Presenciais &#8211; Teste"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"pt-BR\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Cursos Presenciais<\/title>\n  <link rel=\"stylesheet\" href=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.5.2\/css\/bootstrap.min.css\">\n\n  <style>\n    body {\n      background-color: #f8f9fa;\n    }\n\n    .section-container {\n      background: #ffffff;\n      padding: 2rem;\n      border-radius: 8px;\n    }\n\n    .section-title {\n      font-size: 1.7rem;\n      font-weight: 600;\n      color: #333;\n    }\n\n    .course-card-link {\n      color: inherit;\n      text-decoration: none;\n    }\n\n    .course-card-link:hover {\n      color: inherit;\n      text-decoration: none;\n    }\n\n    .card {\n      transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;\n      border: 1px solid #e9ecef;\n    }\n\n    .card:hover {\n      transform: translateY(-5px);\n      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n    }\n\n    .card-info-list {\n      list-style: none;\n      padding: 0;\n      margin: 0;\n    }\n\n    .card-info-item {\n      display: flex;\n      align-items: center;\n      margin-bottom: 0.75rem;\n      font-size: 0.9rem;\n      text-align: left;\n    }\n\n    .info-icon {\n      width: 20px;\n      height: 20px;\n      margin-right: 8px;\n    }\n\n    .card-footer {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      background-color: #f8f9fa;\n    }\n\n    .btn-view-all {\n      background: transparent;\n      color: #0e2851;\n      padding: 8px 30px;\n      border-radius: 50px;\n      border: 2px solid #004f9c;\n      font-size: 1rem;\n      font-weight: 600;\n      text-decoration: none;\n      transition: all 0.3s ease;\n    }\n\n    .btn-view-all:hover {\n      background-color: #0e2851;\n      color: #ffffff;\n    }\n  <\/style>\n<\/head>\n\n<body>\n  <div class=\"section-container container\">\n    <div class=\"row\" id=\"cursos-container\">\n      <!-- Cards ser\u00e3o inseridos aqui -->\n    <\/div>\n  <\/div>\n\n  <script>\n    const cursos = [\n      {\n        titulo: \"e-Fisco - Empenhamento e Liquida\u00e7\u00e3o da Despesa - Turma 3\",\n        img: \"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2025\/08\/capa-e-Fisco-Empenhamento-e-Liquidacao-da-Despesa-Turma-03.png\",\n        instrutores: \"Marco Pires e Gra\u00e7a Hora\",\n        publico: \"SEFAZ\",\n        data: \"04 a 08 de Agosto\",\n        horario: \"13h \u00e0s 17h\",\n        local: \"Lab 01 \u2013 ESAFAZ\",\n        cargaHoraria: \"24h\",\n        status: \"Encerrado\",\n        link: \"https:\/\/esafaz.sefaz.pe.gov.br\/inscricao\/curso1\"\n      },\n      {\n        titulo: \"Curso Encerrado Exemplo\",\n        img: \"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2025\/08\/capa-e-Fisco-Empenhamento-e-Liquidacao-da-Despesa-Turma-03.png\",\n        instrutores: \"Instrutor Teste\",\n        publico: \"SEFAZ\",\n        data: \"01 a 05 de Julho\",\n        horario: \"08h \u00e0s 12h\",\n        local: \"Lab 02 \u2013 ESAFAZ\",\n        cargaHoraria: \"20h\",\n        status: \"Encerrado\"\n      },\n      {\n        titulo: \"Curso Exclusivo VIP\",\n        img: \"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2025\/08\/capa-Aplicacoes-de-IA-Generativa-na-SEFAZ-Automacao-Analise-e-Otimizacao-Turma-02.png\",\n        instrutores: \"Cleyton Rodrigues\",\n        publico: \"Convidados\",\n        data: \"06 a 08 de Agosto\",\n        horario: \"08h \u00e0s 12h\",\n        local: \"Lab 01 \u2013 ESAFAZ\",\n        cargaHoraria: \"10h\",\n        status: \"Exclusivo\",\n        \n      }\n    ];\n\n    const container = document.getElementById(\"cursos-container\");\n\n    cursos.forEach(curso => {\n      let btnClass = \"\";\n      let btnHTML = \"\";\n\n      if (curso.status === \"Inscreva-se\") {\n        btnClass = \"btn-success\"; \/\/ verde\n        btnHTML = `<a href=\"${curso.link}\" class=\"btn ${btnClass} btn-sm\">${curso.status}<\/a>`;\n      } else if (curso.status === \"Encerrado\") {\n        btnClass = \"btn-danger\"; \/\/ vermelho\n        btnHTML = `<span class=\"btn ${btnClass} btn-sm\">${curso.status}<\/span>`;\n      } else if (curso.status === \"Exclusivo\") {\n        btnClass = \"btn-warning\"; \/\/ amarelo\n        btnHTML = `<span class=\"btn ${btnClass} btn-sm\">${curso.status}<\/span>`;\n      } else {\n        btnClass = \"btn-secondary\"; \/\/ fallback\n        btnHTML = `<span class=\"btn ${btnClass} btn-sm\">${curso.status}<\/span>`;\n      }\n\n      container.innerHTML += `\n        <div class=\"col-md-4 mb-4\">\n          <div class=\"card h-100\">\n            <img decoding=\"async\" class=\"card-img-top\" src=\"${curso.img}\" alt=\"ESAFAZ PE\">\n            <div class=\"card-body\">\n              <h6 class=\"card-title\">${curso.titulo}<\/h6>\n              <ul class=\"card-info-list mt-3\">\n                <li class=\"card-info-item\"><img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png\" class=\"info-icon\"> Instrutores: ${curso.instrutores}<\/li>\n                <li class=\"card-info-item\"><img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/usuarios.png\" class=\"info-icon\"> P\u00fablico: ${curso.publico}<\/li>\n                <li class=\"card-info-item\"><img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/datas.png\" class=\"info-icon\"> Data: ${curso.data}<\/li>\n                <li class=\"card-info-item\"><img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/relogio.png\" class=\"info-icon\"> Hor\u00e1rio: ${curso.horario}<\/li>\n                <li class=\"card-info-item\"><img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/lugar-colocar.png\" class=\"info-icon\"> Local: ${curso.local}<\/li>\n              <\/ul>\n            <\/div>\n            <div class=\"card-footer\">\n              <div class=\"card-info-item mb-0\">\n                <img decoding=\"async\" src=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/relogio.png\" class=\"info-icon\">\n                <strong>Carga Hor\u00e1ria: ${curso.cargaHoraria}<\/strong>\n              <\/div>\n              ${btnHTML}\n            <\/div>\n          <\/div>\n        <\/div>\n      `;\n    });\n  <\/script>\n\n  <script src=\"https:\/\/code.jquery.com\/jquery-3.5.1.slim.min.js\"><\/script>\n  <script src=\"https:\/\/cdn.jsdelivr.net\/npm\/popper.js@1.16.1\/dist\/umd\/popper.min.js\"><\/script>\n  <script src=\"https:\/\/stackpath.bootstrapcdn.com\/bootstrap\/4.5.2\/js\/bootstrap.min.js\"><\/script>\n<\/body>\n<\/html>\n\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cursos Presenciais<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"courseId":0,"footnotes":""},"class_list":["post-5053","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Cursos Presenciais - Teste - Site Esafaz<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/\" \/>\r\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Cursos Presenciais - Teste - Site Esafaz\" \/>\r\n<meta property=\"og:description\" content=\"Cursos Presenciais\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/\" \/>\r\n<meta property=\"og:site_name\" content=\"Site Esafaz\" \/>\r\n<meta property=\"article:modified_time\" content=\"2025-09-29T12:50:25+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/\",\"url\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/\",\"name\":\"Cursos Presenciais - Teste - Site Esafaz\",\"isPartOf\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png\",\"datePublished\":\"2025-09-17T15:33:19+00:00\",\"dateModified\":\"2025-09-29T12:50:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage\",\"url\":\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png\",\"contentUrl\":\"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/esafaz.sefaz.pe.gov.br\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cursos Presenciais &#8211; Teste\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#website\",\"url\":\"https:\/\/esafaz.sefaz.pe.gov.br\/\",\"name\":\"Portal Esafaz\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/esafaz.sefaz.pe.gov.br\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#organization\",\"name\":\"Portal Esafaz\",\"url\":\"https:\/\/esafaz.sefaz.pe.gov.br\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/portalesafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/icone-esafaz.jpeg\",\"contentUrl\":\"https:\/\/portalesafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/icone-esafaz.jpeg\",\"width\":300,\"height\":300,\"caption\":\"Portal Esafaz\"},\"image\":{\"@id\":\"https:\/\/esafaz.sefaz.pe.gov.br\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.instagram.com\/esafazpe\/\"]}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cursos Presenciais - Teste - Site Esafaz","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/","og_locale":"pt_BR","og_type":"article","og_title":"Cursos Presenciais - Teste - Site Esafaz","og_description":"Cursos Presenciais","og_url":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/","og_site_name":"Site Esafaz","article_modified_time":"2025-09-29T12:50:25+00:00","og_image":[{"url":"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. tempo de leitura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/","url":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/","name":"Cursos Presenciais - Teste - Site Esafaz","isPartOf":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage"},"image":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage"},"thumbnailUrl":"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png","datePublished":"2025-09-17T15:33:19+00:00","dateModified":"2025-09-29T12:50:25+00:00","breadcrumb":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#primaryimage","url":"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png","contentUrl":"https:\/\/esafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/06\/professor.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/cursos-presenciais-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/esafaz.sefaz.pe.gov.br\/"},{"@type":"ListItem","position":2,"name":"Cursos Presenciais &#8211; Teste"}]},{"@type":"WebSite","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#website","url":"https:\/\/esafaz.sefaz.pe.gov.br\/","name":"Portal Esafaz","description":"","publisher":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/esafaz.sefaz.pe.gov.br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#organization","name":"Portal Esafaz","url":"https:\/\/esafaz.sefaz.pe.gov.br\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#\/schema\/logo\/image\/","url":"https:\/\/portalesafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/icone-esafaz.jpeg","contentUrl":"https:\/\/portalesafaz.sefaz.pe.gov.br\/wp-content\/uploads\/2024\/04\/icone-esafaz.jpeg","width":300,"height":300,"caption":"Portal Esafaz"},"image":{"@id":"https:\/\/esafaz.sefaz.pe.gov.br\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/esafazpe\/"]}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/pages\/5053","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/comments?post=5053"}],"version-history":[{"count":19,"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/pages\/5053\/revisions"}],"predecessor-version":[{"id":5107,"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/pages\/5053\/revisions\/5107"}],"wp:attachment":[{"href":"https:\/\/esafaz.sefaz.pe.gov.br\/index.php\/wp-json\/wp\/v2\/media?parent=5053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}