{"id":587,"date":"2025-01-10T14:43:59","date_gmt":"2025-01-10T18:43:59","guid":{"rendered":"https:\/\/a75d40d4bc.nxcli.io\/fortaleza\/?page_id=587"},"modified":"2025-11-27T15:34:22","modified_gmt":"2025-11-27T19:34:22","slug":"documentos-institucionais","status":"publish","type":"page","link":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/documentos-institucionais\/","title":{"rendered":"Documentos Institucionais"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"587\" class=\"elementor elementor-587\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1934456 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1934456\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:1020,&quot;url&quot;:&quot;https:\\\/\\\/faculdadesantateresa.edu.br\\\/boavista\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/FST-Entrada-da-Sede.webp&quot;}],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d06ed2\" data-id=\"1d06ed2\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-58ebfcb elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"58ebfcb\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-eeaa835\" data-id=\"eeaa835\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1f6f6f5 elementor-widget elementor-widget-raven-post-title\" data-id=\"1f6f6f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"raven-post-title.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"raven-post-title\">Documentos Institucionais<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e2ac072 elementor-widget elementor-widget-html\" data-id=\"e2ac072\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n    .hidden {\n        display: none;\n    }\n    \n    .cs-box {\n        white-space: break;\n        background: #F1EEEE;\n        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);\n        border-radius: 8px;\n    }\n    \n    .cs-box-selected {\n        color: white;\n        background: #990000;\n        box-shadow: 0px 0px 0px;\n    }\n    \n    .cs-box-selected > div > h6 {\n        color: white !important;\n        animation-name: scroll-box;\n        animation-duration: 1s;\n    }\n    \n    @keyframes scroll-box {\n        from {\n            opacity: 0;\n        }\n        \n        to {\n            opacity: 1;\n        }\n    }\n    \n    .btn-hover {\n        cursor: pointer;\n    }\n    \n<\/style>\n\n<script>\n    const btnAmount = 3;\n    let currentSelection = 0;\n\n    \/\/ Collapsing & Expanding:\n    function collapseSection(i) {\n        \/\/ Text:\n        let textID = `text-${i}`;\n        const text = document.getElementById(textID);\n            \n        if (!text.classList.contains('hidden'))\n            text.classList.add('hidden');\n            \n        \/\/ Section:\n        let sectionID = `section-${i}`\n        const section = document.getElementById(sectionID);\n                \n        if (section.classList.contains('cs-box-selected'))\n            section.classList.remove('cs-box-selected');\n            \n        \/\/ Out Button:\n        let outID = `out-${i}`;\n        const outBtn = document.getElementById(outID);\n                \n        if (!outBtn.classList.contains('hidden'))\n            outBtn.classList.add('hidden');\n    }\n    \n    function expandSection(i) {\n        \/\/ Text:\n        let textID = `text-${i}`;\n        const text = document.getElementById(textID);\n            \n        if (text.classList.contains('hidden'))\n            text.classList.remove('hidden');\n            \n        \/\/ Section:\n        let sectionID = `section-${i}`;\n        const section = document.getElementById(sectionID);\n        \n        if (!section.classList.contains('cs-box-selected'))\n            section.classList.add('cs-box-selected');\n            \n        \/\/ Out Button:\n        let outID = `out-${i}`;\n        const outBtn = document.getElementById(outID);\n                \n        if (outBtn.classList.contains('hidden'))\n            outBtn.classList.remove('hidden');\n    }\n\n    \/\/ Collapse All:\n    function collapseAll() {\n        for(let i = 1; i <= btnAmount; ++i)\n            collapseSection(i);\n    }\n    \n    \/\/ Toggle:\n    function toggleSection(i) {\n        if(currentSelection === i) {\n            collapseSection(i);\n            currentSelection = 0;\n        } else {\n            currentSelection = i;\n            expandSection(i);\n        }\n    }\n\n    \/\/ Handle Section Click:\n    function handleSectionClick(i) {\n        collapseAll();\n        toggleSection(i);\n    }\n\n    function initialize() {\n        \/\/ Button click events:\n        for(let i = 1; i <= btnAmount; ++i) {\n            let btnID = `btn-${i}`;\n            const btn = document.getElementById(btnID);\n            btn.onclick = function() {\n                collapseAll();\n                toggleSection(i);\n            };\n        }\n\n        \/\/ Section click events:\n        for(let i = 1; i <= btnAmount; ++i) {\n            let sectionID = `section-${i}`;\n            const section = document.getElementById(sectionID);\n            section.onclick = function() {\n                handleSectionClick(i);\n            };\n        }\n    }\n\n    document.addEventListener('DOMContentLoaded', function () {\n        initialize();       \n        collapseAll();\n    }, false);\n<\/script>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-25e9754 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"25e9754\" data-element_type=\"section\" data-e-type=\"section\" id=\"nav-0\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c043210\" data-id=\"c043210\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8d8c48d cs-box elementor-widget elementor-widget-heading\" data-id=\"8d8c48d\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"section-1\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Editais<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c70138 elementor-align-center btn-hover elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-raven-button\" data-id=\"7c70138\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"out-1\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center raven-button-link elementor-animation-none\" href=\"#\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"button-subtext\">\n\t\t\t\t\t\t\t\t\t<span >\n\t\t\t\t\t\t\t\t\tAcessar todas as informa\u00e7\u00f5es\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd336de elementor-align-center btn-hover elementor-widget elementor-widget-raven-button\" data-id=\"bd336de\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"btn-1\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center elementor-animation-none\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t<span class=\"raven-button-icon raven-button-icon-position-left\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7498556\" data-id=\"7498556\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-14385fb cs-box elementor-widget elementor-widget-heading\" data-id=\"14385fb\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"section-2\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Documentos Homologados<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2822cad elementor-align-center btn-hover elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-raven-button\" data-id=\"2822cad\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"out-2\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center raven-button-link elementor-animation-none\" href=\"#\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"button-subtext\">\n\t\t\t\t\t\t\t\t\t<span >\n\t\t\t\t\t\t\t\t\tAcessar todas as informa\u00e7\u00f5es\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e6bec33 elementor-align-center btn-hover elementor-widget elementor-widget-raven-button\" data-id=\"e6bec33\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"btn-2\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center elementor-animation-none\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t<span class=\"raven-button-icon raven-button-icon-position-left\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-ae9e50c\" data-id=\"ae9e50c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-999b1fa cs-box elementor-widget elementor-widget-heading\" data-id=\"999b1fa\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"section-3\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Regulamentos e Manuais<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e07f1a elementor-align-center btn-hover elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-raven-button\" data-id=\"0e07f1a\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"out-3\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center elementor-animation-none\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"button-subtext\">\n\t\t\t\t\t\t\t\t\t<span >\n\t\t\t\t\t\t\t\t\tAcessar todas as informa\u00e7\u00f5es\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7952fe6 elementor-align-center btn-hover elementor-widget elementor-widget-raven-button\" data-id=\"7952fe6\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"btn-3\" data-settings=\"{&quot;turn_to_popup_action_button&quot;:&quot;no&quot;}\" data-widget_type=\"raven-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"raven-widget-wrapper\">\n\t\t\t<a class=\"raven-button raven-button-widget-normal-effect-none  raven-button-text-align-center elementor-animation-none\">\t\t\t\t<div class=\"raven-button-overlay\" ><\/div>\n\t\t\t\t<span class=\"raven-button-content\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"button-text-container\">\n\t\t\t\t\t\t\t\t\t<span class=\"raven-button-icon raven-button-icon-position-left\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-angle-down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<div class=\"raven-button-texts-wrapper\">\n\t\t\t\t\t\t\t<div class=\"button-text\">\n\t\t\t\t\t\t\t\t<span class=\"raven-button-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t<\/a>\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Editais Edital N\u00ba 03\/2025.2 &#8211; Inscri\u00e7\u00f5es no Programa de Nivelamento Edital N\u00ba 04\/2025.1 &#8211; Inscri\u00e7\u00f5es para Representatividade Discente Edital N\u00ba 03\/2025.1 &#8211; Inscri\u00e7\u00f5es no Programa de Nivelamento Acessar todas as informa\u00e7\u00f5es Documentos Homologados Edital N\u00ba 04\/2025.2 &#8211; Homologa\u00e7\u00e3o do Resultado de Representatividade Discente Acessar todas as informa\u00e7\u00f5es Regulamentos e Manuais Manual &#8211; Plano Academico Administrativo [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-587","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/pages\/587","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/comments?post=587"}],"version-history":[{"count":117,"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/pages\/587\/revisions"}],"predecessor-version":[{"id":1724,"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/pages\/587\/revisions\/1724"}],"wp:attachment":[{"href":"https:\/\/faculdadesantateresa.edu.br\/fortaleza\/wp-json\/wp\/v2\/media?parent=587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}