{"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=\"50057243ba\"\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-144 post-144 post type-post status-publish format-standard has-post-thumbnail hentry category-filosofia\" 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\/aporofobia-el-rechazo-al-pobre\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"488\" height=\"722\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.59.11-p.m.png\" class=\"attachment-large size-large wp-image-145\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.59.11-p.m.png 488w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.59.11-p.m-203x300.png 203w\" sizes=\"(max-width: 488px) 100vw, 488px\" \/>\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-194 post-194 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\/opus-dos\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"590\" height=\"714\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.13.46-p.m.png\" class=\"attachment-large size-large wp-image-195\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.13.46-p.m.png 590w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.13.46-p.m-248x300.png 248w\" sizes=\"(max-width: 590px) 100vw, 590px\" \/>\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-122 post-122 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\/el-universo-en-una-taza-de-cafe-10-o-aniversario-respuestas-sencillas-a-enigmas-de-la-ciencia-y-el-cosmos\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"454\" height=\"608\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.52.48-p.m.png\" class=\"attachment-large size-large wp-image-123\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.52.48-p.m.png 454w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-9.52.48-p.m-224x300.png 224w\" sizes=\"(max-width: 454px) 100vw, 454px\" \/>\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-166 post-166 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\/ivan-el-tonto-y-otros-cuentos\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"522\" height=\"692\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.05.24-p.m.png\" class=\"attachment-large size-large wp-image-167\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.05.24-p.m.png 522w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.05.24-p.m-226x300.png 226w\" sizes=\"(max-width: 522px) 100vw, 522px\" \/>\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-212 post-212 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\/viajes-de-la-amazonia-a-las-malvinas\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"546\" height=\"732\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.19.38-p.m.png\" class=\"attachment-large size-large wp-image-213\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.19.38-p.m.png 546w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.19.38-p.m-224x300.png 224w\" 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-200 post-200 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\/anaconda\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"610\" height=\"822\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.41-p.m.png\" class=\"attachment-large size-large wp-image-201\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.41-p.m.png 610w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.15.41-p.m-223x300.png 223w\" sizes=\"(max-width: 610px) 100vw, 610px\" \/>\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-242 post-242 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\/lo-que-nos-pasa-por-dentro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"716\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m.png\" class=\"attachment-large size-large wp-image-243\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m.png 560w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m-235x300.png 235w\" sizes=\"(max-width: 560px) 100vw, 560px\" \/>\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-262 post-262 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\/cartas-para-un-ciego-que-creia-ver\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"564\" height=\"752\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.23-p.m.png\" class=\"attachment-large size-large wp-image-263\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.23-p.m.png 564w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.34.23-p.m-225x300.png 225w\" sizes=\"(max-width: 564px) 100vw, 564px\" \/>\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-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-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-300 post-300 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\/esclavos-de-la-personalidad\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"578\" height=\"760\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m.png\" class=\"attachment-large size-large wp-image-301\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m.png 578w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m-228x300.png 228w\" sizes=\"(max-width: 578px) 100vw, 578px\" \/>\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-224 post-224 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\/como-tener-un-buen-dia\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"550\" height=\"786\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.23.11-p.m.png\" class=\"attachment-large size-large wp-image-225\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.23.11-p.m.png 550w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.23.11-p.m-210x300.png 210w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/>\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-242 post-242 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\/lo-que-nos-pasa-por-dentro\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"716\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m.png\" class=\"attachment-large size-large wp-image-243\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m.png 560w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.28.36-p.m-235x300.png 235w\" sizes=\"(max-width: 560px) 100vw, 560px\" \/>\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-310 post-310 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\/cosas-que-piensas-cuando-te-muerdes-las-unas\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"524\" height=\"700\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.53.16-p.m.png\" class=\"attachment-large size-large wp-image-311\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.53.16-p.m.png 524w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.53.16-p.m-225x300.png 225w\" sizes=\"(max-width: 524px) 100vw, 524px\" \/>\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-300 post-300 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\/esclavos-de-la-personalidad\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"578\" height=\"760\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m.png\" class=\"attachment-large size-large wp-image-301\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m.png 578w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.49.01-p.m-228x300.png 228w\" sizes=\"(max-width: 578px) 100vw, 578px\" \/>\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-292 post-292 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\/el-cerebro-depre\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"586\" height=\"796\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.46.49-p.m.png\" class=\"attachment-large size-large wp-image-293\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.46.49-p.m.png 586w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.46.49-p.m-221x300.png 221w\" sizes=\"(max-width: 586px) 100vw, 586px\" \/>\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-236 post-236 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\/el-viaje-a-la-vida\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"680\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.26.39-p.m.png\" class=\"attachment-large size-large wp-image-237\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.26.39-p.m.png 500w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.26.39-p.m-221x300.png 221w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\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-272 post-272 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\/las-galletas\/\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"498\" height=\"668\" src=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.08-p.m.png\" class=\"attachment-large size-large wp-image-273\" alt=\"\" srcset=\"https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.08-p.m.png 498w, https:\/\/lecturaclic.com\/cliv\/wp-content\/uploads\/2026\/06\/Captura-de-pantalla-2026-06-23-a-las-10.37.08-p.m-224x300.png 224w\" sizes=\"(max-width: 498px) 100vw, 498px\" \/>\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}]}}