{"id":425,"date":"2026-06-24T14:35:20","date_gmt":"2026-06-24T14:35:20","guid":{"rendered":"https:\/\/lecturaclic.com\/cliv\/?page_id=425"},"modified":"2026-06-24T14:56:25","modified_gmt":"2026-06-24T14:56:25","slug":"recursos","status":"publish","type":"page","link":"https:\/\/lecturaclic.com\/cliv\/recursos\/","title":{"rendered":"Recursos"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"425\" class=\"elementor elementor-425\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cff6985 e-flex e-con-boxed e-con e-parent\" data-id=\"cff6985\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6ce077f elementor-widget elementor-widget-shortcode\" data-id=\"6ce077f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">\n    <div\n        class=\"clic-search-wrapper\"\n        data-ajax-url=\"https:\/\/lecturaclic.com\/cliv\/wp-admin\/admin-ajax.php\"\n        data-nonce=\"daba3cf80f\"\n    >\n        <div class=\"clic-search-header\">\n\n            <span class=\"clic-search-tag\">\n                EXPLORA LA BIBLIOTECA\n            <\/span>\n\n            <h2>Encuentra tu pr\u00f3xima lectura<\/h2>\n\n            <p>Busca por t\u00edtulo, autor o colecci\u00f3n.<\/p>\n\n        <\/div>\n\n        <div class=\"clic-search-box\">\n\n            <svg\n                width=\"20\"\n                height=\"20\"\n                viewBox=\"0 0 24 24\"\n                fill=\"none\"\n                aria-hidden=\"true\"\n            >\n                <circle\n                    cx=\"11\"\n                    cy=\"11\"\n                    r=\"7\"\n                    stroke=\"currentColor\"\n                    stroke-width=\"2\"\n                \/>\n                <path\n                    d=\"M20 20L17 17\"\n                    stroke=\"currentColor\"\n                    stroke-width=\"2\"\n                \/>\n            <\/svg>\n\n            <label class=\"screen-reader-text\" for=\"clic-live-search-1\">\n                Buscar libros, autores o colecciones\n            <\/label>\n\n            <input\n                type=\"search\"\n                id=\"clic-live-search-1\"\n                class=\"clic-live-search-input\"\n                placeholder=\"Buscar libros, autores o colecciones...\"\n                autocomplete=\"off\"\n                spellcheck=\"false\"\n                aria-controls=\"clic-search-results-2\"\n            >\n\n            <span class=\"clic-search-loader\" aria-hidden=\"true\"><\/span>\n\n        <\/div>\n\n        <div\n            id=\"clic-search-results-2\"\n            class=\"clic-search-results\"\n            aria-live=\"polite\"\n            aria-busy=\"false\"\n        ><\/div>\n\n    <\/div>\n\n    <script>\n    jQuery(function ($) {\n\n        $('.clic-search-wrapper').each(function () {\n\n            const $wrapper = $(this);\n\n            if ($wrapper.data('clic-search-ready')) {\n                return;\n            }\n\n            $wrapper.data('clic-search-ready', true);\n\n            const $input   = $wrapper.find('.clic-live-search-input');\n            const $results = $wrapper.find('.clic-search-results');\n            const $loader  = $wrapper.find('.clic-search-loader');\n\n            const ajaxUrl = $wrapper.attr('data-ajax-url');\n            const nonce   = $wrapper.attr('data-nonce');\n\n            let timer = null;\n            let request = null;\n            let lastKeyword = '';\n\n            function escapeHtml(value) {\n                return $('<div>').text(value).html();\n            }\n\n            function clearResults() {\n                $results.empty().attr('aria-busy', 'false');\n                $loader.removeClass('is-visible');\n            }\n\n            function showMessage(message, className) {\n                $results.html(\n                    '<div class=\"' + className + '\">' +\n                        escapeHtml(message) +\n                    '<\/div>'\n                );\n            }\n\n            function performSearch() {\n\n                const keyword = $.trim($input.val());\n\n                if (keyword.length < 2) {\n\n                    if (request) {\n                        request.abort();\n                        request = null;\n                    }\n\n                    lastKeyword = '';\n                    clearResults();\n\n                    if (keyword.length === 1) {\n                        showMessage(\n                            'Escribe al menos 2 caracteres para buscar.',\n                            'clic-search-message'\n                        );\n                    }\n\n                    return;\n                }\n\n                if (keyword === lastKeyword) {\n                    return;\n                }\n\n                lastKeyword = keyword;\n\n                if (request) {\n                    request.abort();\n                }\n\n                $results.attr('aria-busy', 'true');\n\n                $loader.addClass('is-visible');\n\n                showMessage(\n                    'Buscando...',\n                    'clic-search-message clic-search-loading'\n                );\n\n                request = $.ajax({\n                    url: ajaxUrl,\n                    type: 'POST',\n                    dataType: 'json',\n                    timeout: 15000,\n                    data: {\n                        action: 'clic_live_search_ajax',\n                        nonce: nonce,\n                        keyword: keyword\n                    }\n                })\n                .done(function (response) {\n\n                    \/*\n                     * Evita mostrar una respuesta antigua si el usuario\n                     * ya cambi\u00f3 el texto de b\u00fasqueda.\n                     *\/\n                    if ($.trim($input.val()) !== keyword) {\n                        return;\n                    }\n\n                    if (response.success && response.data.html) {\n                        $results.html(response.data.html);\n                    } else {\n                        const message =\n                            response.data && response.data.message\n                                ? response.data.message\n                                : 'No fue posible realizar la b\u00fasqueda.';\n\n                        showMessage(message, 'clic-search-error');\n                    }\n                })\n                .fail(function (xhr, status) {\n\n                    if (status === 'abort') {\n                        return;\n                    }\n\n                    showMessage(\n                        'Ocurri\u00f3 un error al realizar la b\u00fasqueda. Int\u00e9ntalo nuevamente.',\n                        'clic-search-error'\n                    );\n                })\n                .always(function () {\n\n                    request = null;\n                    $results.attr('aria-busy', 'false');\n                    $loader.removeClass('is-visible');\n                });\n            }\n\n            $input.on('input', function () {\n\n                clearTimeout(timer);\n\n                timer = setTimeout(function () {\n                    performSearch();\n                }, 350);\n            });\n\n            $input.on('keydown', function (event) {\n\n                if (event.key === 'Escape') {\n                    clearTimeout(timer);\n\n                    if (request) {\n                        request.abort();\n                        request = null;\n                    }\n\n                    $input.val('');\n                    lastKeyword = '';\n                    clearResults();\n                }\n\n                if (event.key === 'Enter') {\n                    event.preventDefault();\n                    clearTimeout(timer);\n                    performSearch();\n                }\n            });\n        });\n    });\n    <\/script>\n\n    <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-27811d1 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"27811d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Coleccion_CLiV.pdf\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-file-pdf\" viewBox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M369.9 97.9L286 14C277 5 264.8-.1 252.1-.1H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V131.9c0-12.7-5.1-25-14.1-34zM332.1 128H256V51.9l76.1 76.1zM48 464V48h160v104c0 13.3 10.7 24 24 24h104v288H48zm250.2-143.7c-12.2-12-47-8.7-64.4-6.5-17.2-10.5-28.7-25-36.8-46.3 3.9-16.1 10.1-40.6 5.4-56-4.2-26.2-37.8-23.6-42.6-5.9-4.4 16.1-.4 38.5 7 67.1-10 23.9-24.9 56-35.4 74.4-20 10.3-47 26.2-51 46.2-3.3 15.8 26 55.2 76.1-31.2 22.4-7.4 46.8-16.5 68.4-20.1 18.9 10.2 41 17 55.8 17 25.5 0 28-28.2 17.5-38.7zm-198.1 77.8c5.1-13.7 24.5-29.5 30.4-35-19 30.3-30.4 35.7-30.4 35zm81.6-190.6c7.4 0 6.7 32.1 1.8 40.8-4.4-13.9-4.3-40.8-1.8-40.8zm-24.4 136.6c9.7-16.9 18-37 24.7-54.7 8.3 15.1 18.9 27.2 30.1 35.5-20.8 4.3-38.9 13.1-54.8 19.2zm131.6-5s-5 6-37.3-7.8c35.1-2.6 40.9 5.4 37.3 7.8z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Descarga el CLiV Cat\u00e1logo<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0089acf e-flex e-con-boxed e-con e-parent\" data-id=\"0089acf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-69db1dd e-con-full e-flex e-con e-child\" data-id=\"69db1dd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9bbec8 elementor-widget elementor-widget-heading\" data-id=\"e9bbec8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/lecturaclic.com\/category\/divulgacion-cientifica-sociedad\/\">Mente activa\n<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e37eca elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"6e37eca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/category\/divulgacion-cientifica\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-dot-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Divulgaci\u00f3n cient\u00edfica.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/category\/filosofia\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-dot-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Filosof\u00eda.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/category\/literatura\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-dot-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Literatura.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34b6a84 elementor-arrows-position-outside elementor-pagination-type-bullets elementor-pagination-position-outside elementor-widget elementor-widget-loop-carousel\" data-id=\"34b6a84\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;405&quot;,&quot;slides_to_show&quot;:&quot;4&quot;,&quot;slides_to_show_mobile&quot;:&quot;2&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-50,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-20,&quot;sizes&quot;:[]},&quot;_skin&quot;:&quot;post&quot;,&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;.elementor-loop-container&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-carousel.post\">\n\t\t\t\t\t\t\t<div class=\"swiper elementor-loop-container elementor-grid\" role=\"list\" dir=\"ltr\">\n\t\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t<style id=\"loop-405\">.elementor-405 .elementor-element.elementor-element-296aa74{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-405 .elementor-element.elementor-element-e46d1fb img{width:76%;}@media(min-width:768px){.elementor-405 .elementor-element.elementor-element-296aa74{--content-width:100%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-198 post-198 post type-post status-publish format-standard has-post-thumbnail hentry category-literatura\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/el-hombre-muerto\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"352\" height=\"470\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.08-p.m.png\" class=\"attachment-large size-large wp-image-199\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.08-p.m.png 352w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.08-p.m-225x300.png 225w\" sizes=\"(max-width: 352px) 100vw, 352px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-104 post-104 post type-post status-publish format-standard has-post-thumbnail hentry category-divulgacion-cientifica\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/cuida-tu-salud-cerebral\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"536\" height=\"722\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.03-p.m.png\" class=\"attachment-large size-large wp-image-105\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.03-p.m.png 536w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.03-p.m-223x300.png 223w\" sizes=\"(max-width: 536px) 100vw, 536px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-178 post-178 post type-post status-publish format-standard has-post-thumbnail hentry category-literatura\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/novela-de-ajedrez\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"396\" height=\"530\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.08.42-p.m.png\" class=\"attachment-large size-large wp-image-179\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.08.42-p.m.png 396w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.08.42-p.m-224x300.png 224w\" sizes=\"(max-width: 396px) 100vw, 396px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-106 post-106 post type-post status-publish format-standard has-post-thumbnail hentry category-divulgacion-cientifica\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/lengua-madre\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"526\" height=\"702\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.39-p.m.png\" class=\"attachment-large size-large wp-image-107\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.39-p.m.png 526w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.47.39-p.m-225x300.png 225w\" sizes=\"(max-width: 526px) 100vw, 526px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-134 post-134 post type-post status-publish format-standard has-post-thumbnail hentry category-divulgacion-cientifica\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/plantas-que-nos-ayudan-la-ciencia-detras-del-conocimiento-ancestral-de-las-plantas-medicinales\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"366\" height=\"484\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.56.12-p.m.png\" class=\"attachment-large size-large wp-image-135\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.56.12-p.m.png 366w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.56.12-p.m-227x300.png 227w\" sizes=\"(max-width: 366px) 100vw, 366px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-102 post-102 post type-post status-publish format-standard has-post-thumbnail hentry category-divulgacion-cientifica\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/dime-donde-te-duele\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"510\" height=\"718\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.46.48-p.m.png\" class=\"attachment-large size-large wp-image-103\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.46.48-p.m.png 510w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.46.48-p.m-213x300.png 213w\" sizes=\"(max-width: 510px) 100vw, 510px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d0f2f82 e-flex e-con-boxed e-con e-parent\" data-id=\"d0f2f82\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4759d6c e-con-full e-flex e-con e-child\" data-id=\"4759d6c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b4779e7 elementor-widget elementor-widget-heading\" data-id=\"b4779e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/lecturaclic.com\/category\/divulgacion-cientifica-sociedad\/\">Cuidar el bienestar emocional<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cdea133 elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"cdea133\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/category\/bienestar-emocional\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-dot-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Bienestar Emocional.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-09c008d elementor-arrows-position-outside elementor-pagination-type-bullets elementor-pagination-position-outside elementor-widget elementor-widget-loop-carousel\" data-id=\"09c008d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;405&quot;,&quot;slides_to_show&quot;:&quot;4&quot;,&quot;slides_to_show_mobile&quot;:&quot;2&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-50,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-20,&quot;sizes&quot;:[]},&quot;_skin&quot;:&quot;post&quot;,&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;.elementor-loop-container&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-carousel.post\">\n\t\t\t\t\t\t\t<div class=\"swiper elementor-loop-container elementor-grid\" role=\"list\" dir=\"ltr\">\n\t\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-270 post-270 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/amate-a-ti-mismo\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"538\" height=\"712\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.36.33-p.m.png\" class=\"attachment-large size-large wp-image-271\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.36.33-p.m.png 538w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.36.33-p.m-227x300.png 227w\" sizes=\"(max-width: 538px) 100vw, 538px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-276 post-276 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/entiende-tus-emociones\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"526\" height=\"702\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.38.17-p.m.png\" class=\"attachment-large size-large wp-image-277\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.38.17-p.m.png 526w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.38.17-p.m-225x300.png 225w\" sizes=\"(max-width: 526px) 100vw, 526px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-274 post-274 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/la-formula-del-exito\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"542\" height=\"716\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.42-p.m.png\" class=\"attachment-large size-large wp-image-275\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.42-p.m.png 542w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.42-p.m-227x300.png 227w\" sizes=\"(max-width: 542px) 100vw, 542px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-304 post-304 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/filosofia-para-la-vida-cotidiana\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"548\" height=\"768\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.50.17-p.m.png\" class=\"attachment-large size-large wp-image-305\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.50.17-p.m.png 548w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.50.17-p.m-214x300.png 214w\" sizes=\"(max-width: 548px) 100vw, 548px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-260 post-260 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/neurohabitos\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"546\" height=\"728\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.47-p.m.png\" class=\"attachment-large size-large wp-image-261\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.47-p.m.png 546w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.47-p.m-225x300.png 225w\" sizes=\"(max-width: 546px) 100vw, 546px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-218 post-218 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/a-pesar-de-los-pesares\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"572\" height=\"772\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.35-p.m.png\" class=\"attachment-large size-large wp-image-219\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.35-p.m.png 572w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.35-p.m-222x300.png 222w\" sizes=\"(max-width: 572px) 100vw, 572px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ac852e0 e-flex e-con-boxed e-con e-parent\" data-id=\"ac852e0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a9191be e-con-full e-flex e-con e-child\" data-id=\"a9191be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f927922 elementor-widget elementor-widget-heading\" data-id=\"f927922\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/lecturaclic.com\/category\/divulgacion-cientifica-sociedad\/\">Seguir aprendiendo<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f7bc0a0 elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"f7bc0a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/category\/historia-de-colombia\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-dot-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm80 248c0 44.112-35.888 80-80 80s-80-35.888-80-80 35.888-80 80-80 80 35.888 80 80z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Historia de Colombia.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b084b4 elementor-arrows-position-outside elementor-pagination-type-bullets elementor-pagination-position-outside elementor-widget elementor-widget-loop-carousel\" data-id=\"4b084b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;405&quot;,&quot;slides_to_show&quot;:&quot;4&quot;,&quot;slides_to_show_mobile&quot;:&quot;2&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-50,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-20,&quot;sizes&quot;:[]},&quot;_skin&quot;:&quot;post&quot;,&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;.elementor-loop-container&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-carousel.post\">\n\t\t\t\t\t\t\t<div class=\"swiper elementor-loop-container elementor-grid\" role=\"list\" dir=\"ltr\">\n\t\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-258 post-258 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/deja-de-pensar-en-blanco-o-negro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"820\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.13-p.m.png\" class=\"attachment-large size-large wp-image-259\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.13-p.m.png 612w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.33.13-p.m-224x300.png 224w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-264 post-264 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/dejalo-ir\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"534\" height=\"706\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.54-p.m.png\" class=\"attachment-large size-large wp-image-265\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.54-p.m.png 534w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.54-p.m-227x300.png 227w\" sizes=\"(max-width: 534px) 100vw, 534px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-280 post-280 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/inyeon\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"506\" height=\"678\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.06-p.m.png\" class=\"attachment-large size-large wp-image-281\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.06-p.m.png 506w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.06-p.m-224x300.png 224w\" sizes=\"(max-width: 506px) 100vw, 506px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-216 post-216 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/a-la-vejez-viruelas\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"540\" height=\"728\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.00-p.m.png\" class=\"attachment-large size-large wp-image-217\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.00-p.m.png 540w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.21.00-p.m-223x300.png 223w\" sizes=\"(max-width: 540px) 100vw, 540px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-282 post-282 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/inteligencia-emocional\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"494\" height=\"662\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.43-p.m.png\" class=\"attachment-large size-large wp-image-283\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.43-p.m.png 494w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.42.43-p.m-224x300.png 224w\" sizes=\"(max-width: 494px) 100vw, 494px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"405\" class=\"elementor elementor-405 swiper-slide e-loop-item e-loop-item-294 post-294 post type-post status-publish format-standard has-post-thumbnail hentry category-bienestar-emocional\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-296aa74 e-flex e-con-boxed e-con e-parent\" data-id=\"296aa74\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e46d1fb elementor-widget elementor-widget-image\" data-id=\"e46d1fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/lecturaclic.com\/cliv\/tu-cerebro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"568\" height=\"768\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.47.21-p.m.png\" class=\"attachment-large size-large wp-image-295\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.47.21-p.m.png 568w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.47.21-p.m-222x300.png 222w\" sizes=\"(max-width: 568px) 100vw, 568px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Descarga el CLiV Cat\u00e1logo Mente activa Divulgaci\u00f3n cient\u00edfica. Filosof\u00eda. Literatura. Cuidar el bienestar emocional Bienestar Emocional. Seguir aprendiendo Historia de Colombia.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-425","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/pages\/425","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/comments?post=425"}],"version-history":[{"count":13,"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/pages\/425\/revisions"}],"predecessor-version":[{"id":449,"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/pages\/425\/revisions\/449"}],"wp:attachment":[{"href":"https:\/\/lecturaclic.com\/cliv\/wp-json\/wp\/v2\/media?parent=425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}