• ¿Te recomendamos un libro?

    Contesta estas preguntas y te recomendaremos alguno de nuestros libros favoritos.

    + n.toFixed(2); };\n }\n })();\n\n function blockCalc(words, rate) {\n var full = Math.floor(words \/ BLOCK);\n var rem = words - full * BLOCK;\n var extraQuarters = 0;\n if (rem \u0026gt; QUARTER) {\n extraQuarters = Math.ceil((rem - QUARTER) \/ QUARTER);\n }\n var price = full * rate + extraQuarters * (rate \/ 4);\n return { full: full, extraQuarters: extraQuarters, price: price };\n }\n\n function breakdownText(calc) {\n if (calc.full === 0 \u0026amp;\u0026amp; calc.extraQuarters === 0) {\n return 'Sin cargo (0 bloques completos).';\n }\n var txt = calc.full + (calc.full === 1 ? ' bloque completo' : ' bloques completos');\n if (calc.extraQuarters \u0026gt; 0) {\n var pct = calc.extraQuarters * 25;\n txt += ' + ' + calc.extraQuarters + (calc.extraQuarters === 1 ? ' cuarto adicional' : ' cuartos adicionales') + ' (+' + pct + '%)';\n }\n return txt;\n }\n\n function getSelectedRadio(name) {\n var el = root.querySelector('input[name=\"' + name + '\"]:checked');\n return el ? parseFloat(el.value) : 0;\n }\n\n function getRadioLabel(name) {\n var el = root.querySelector('input[name=\"' + name + '\"]:checked');\n if (!el) return '';\n var span = el.parentElement.querySelector('span');\n return span ? span.childNodes[0].textContent.trim() : '';\n }\n\n function update() {\n var words = parseInt(wordsInput.value, 10);\n if (isNaN(words) || words \u0026lt; 0) words = 0;\n\n var revisionCalc = blockCalc(words, RATES.revision);\n var maquetacionCalc = blockCalc(words, RATES.maquetacion);\n\n revisionPriceEl.textContent = revisionBox.checked ? fmt(revisionCalc.price) : '\\u2014';\n maquetacionPriceEl.textContent = maquetacionBox.checked ? fmt(maquetacionCalc.price) : '\\u2014';\n revisionBreakdownEl.textContent = revisionBox.checked \u0026amp;\u0026amp; words \u0026gt; 0 ? breakdownText(revisionCalc) : '';\n maquetacionBreakdownEl.textContent = maquetacionBox.checked \u0026amp;\u0026amp; words \u0026gt; 0 ? breakdownText(maquetacionCalc) : '';\n\n var lineItems = [];\n var subtotal = 0;\n\n if (revisionBox.checked \u0026amp;\u0026amp; revisionCalc.price \u0026gt; 0) {\n lineItems.push(['Revisi\\u00f3n ortotipogr\\u00e1fica', revisionCalc.price]);\n subtotal += revisionCalc.price;\n }\n if (maquetacionBox.checked \u0026amp;\u0026amp; maquetacionCalc.price \u0026gt; 0) {\n lineItems.push(['Maquetaci\\u00f3n de interiores', maquetacionCalc.price]);\n subtotal += maquetacionCalc.price;\n }\n\n var portadaValue = getSelectedRadio('eb-portada');\n if (portadaValue \u0026gt; 0) {\n var portadaLabel = getRadioLabel('eb-portada');\n lineItems.push(['Portada: ' + portadaLabel, portadaValue]);\n subtotal += portadaValue;\n }\n\n if (isbnBox.checked) {\n lineItems.push(['C\\u00f3digo ISBN', RATES.isbn]);\n subtotal += RATES.isbn;\n }\n\n var distValue = getSelectedRadio('eb-dist');\n if (distValue \u0026gt; 0) {\n var distLabel = getRadioLabel('eb-dist');\n lineItems.push(['Publicaci\\u00f3n: ' + distLabel, distValue]);\n subtotal += distValue;\n }\n\n if (lineItems.length === 0) {\n summaryBody.innerHTML = '\u0026lt;p class=\"eb-summary__empty\"\u0026gt;Ingresa el n\\u00famero de palabras y selecciona los servicios para ver el costo estimado.\u0026lt;\/p\u0026gt;';\n return;\n }\n\n var iva = subtotal * IVA_RATE;\n var total = subtotal + iva;\n\n var html = '';\n lineItems.forEach(function (item) {\n html += '\u0026lt;div class=\"eb-summary__row\"\u0026gt;\u0026lt;span\u0026gt;' + item[0] + '\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;' + fmt(item[1]) + '\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;';\n });\n html += '\u0026lt;div class=\"eb-summary__row eb-summary__row--subtotal\"\u0026gt;\u0026lt;span\u0026gt;Subtotal\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;' + fmt(subtotal) + '\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;';\n html += '\u0026lt;div class=\"eb-summary__row eb-summary__row--iva\"\u0026gt;\u0026lt;span\u0026gt;IVA (16%)\u0026lt;\/span\u0026gt;\u0026lt;span\u0026gt;' + fmt(iva) + '\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;';\n html += '\u0026lt;div class=\"eb-summary__total\"\u0026gt;\u0026lt;span class=\"eb-summary__total-label\"\u0026gt;Total\u0026lt;\/span\u0026gt;\u0026lt;span class=\"eb-summary__total-value\"\u0026gt;' + fmt(total) + '\u0026lt;\/span\u0026gt;\u0026lt;\/div\u0026gt;';\n summaryBody.innerHTML = html;\n }\n\n [wordsInput, revisionBox, maquetacionBox, isbnBox].forEach(function (el) {\n el.addEventListener('input', update);\n el.addEventListener('change', update);\n });\n root.querySelectorAll('input[name=\"eb-portada\"], input[name=\"eb-dist\"]').forEach(function (el) {\n el.addEventListener('change', update);\n });\n\n update();\n\n function updateWidth() {\n var w = root.getBoundingClientRect().width;\n root.classList.toggle('eb-narrow', w \u0026lt; 700);\n }\n if (window.ResizeObserver) {\n new ResizeObserver(updateWidth).observe(root);\n } else {\n window.addEventListener('resize', updateWidth);\n }\n updateWidth();\n });\n})();\n\u0026lt;\/script\u0026gt;","render_as_iframe":false,"selected_app_name":"HtmlApp","app_list":"{\"HtmlApp\":9361046}"}}}],"title":"Cotizador","uid":"cb481682-b995-4de9-be08-1ce54058cdac","path":"\/precios","autoPath":false,"authorized":true}],"menu":{"type":"Menu","id":"f_ad7148f2-af96-4dc5-aa3f-46401ccad342","defaultValue":null,"template_name":"navbar","logo":null,"components":{"image1":{"type":"Image","id":"3ab868d5-99d5-43c9-b5e7-40308fe2ce32","defaultValue":true,"link_url":"https:\/\/www.estudioenblanco.com\/","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1187729\/717800_555704","storage":"s","storagePrefix":null,"format":"png","h":88,"w":300,"s":63072,"new_target":false,"noCompression":false,"focus":null},"image2":{"type":"Image","id":"f_824b2906-5c2f-437d-bd33-861ecc41caed","defaultValue":true,"link_url":null,"thumb_url":null,"url":"https:\/\/assets.strikingly.com\/assets\/themes\/fresh\/power.png","caption":"","description":"","storageKey":null,"storage":null,"format":null,"h":37,"w":32,"s":null,"new_target":true},"text1":{"type":"RichText","id":"f_bd8ffe00-92de-470a-9b1e-cd264bc9be90","defaultValue":false,"value":"","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text2":{"type":"RichText","id":"f_f34417a6-85c0-4021-97fe-9194e628cd64","defaultValue":true,"value":"Add a subtitle","backupValue":null,"version":null},"button1":{"type":"Button","id":"f_58973ba0-f18b-48f9-93fc-a2011d66a593","defaultValue":false,"alignment":"center","text":"Quiero publicar un libro","size":"small","style":"ghost","color":"","font":"Montserrat","url":"https:\/\/api.whatsapp.com\/send?phone=529994943798","new_target":null,"backgroundSettings":{"default":"#111111","preIndex":null,"type":"default","id":"f_379f8bf1-316b-4672-99d4-c0870a9019fb"},"version":"2"},"background1":{"type":"Background","id":"f_a66c8c28-6eaf-4f3a-8ea1-635a90bfdcb7","defaultValue":true,"url":"\/assets\/themes\/profile\/bg.jpg","textColor":"light","backgroundVariation":"","sizing":"cover","videoUrl":null,"videoHtml":null,"storageKey":null,"storage":null,"format":null,"h":null,"w":null,"s":null},"image3":{"type":"Image","id":"4172a94d-fc1d-4bd6-af91-d0e4cd539de0","defaultValue":true,"link_url":"","thumb_url":"!","url":"!","caption":"","description":"","storageKey":"1187729\/717800_555704","storage":"s","storagePrefix":null,"format":"png","border_radius":null,"aspect_ratio":null,"h":271,"w":919,"s":63072,"new_target":true,"noCompression":false,"focus":null}}},"footer":{"type":"Footer","id":"f_e1d67782-58b2-4698-96bb-6b239864ef3e","defaultValue":null,"socialMedia":null,"copyright":null,"components":{"background1":{"type":"Background","id":"f_bf1fca52-5753-4f14-8c48-dc95bab16f07","defaultValue":false,"url":"","textColor":"light","backgroundVariation":"","sizing":"cover","userClassName":"s-bg-gray","videoUrl":"","videoHtml":"","useSameBg":true,"backgroundApplySettings":{}},"text1":{"type":"RichText","id":"f_82eb9040-ecd8-4c66-a580-fcb412977dbd","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp\u003e\u003cstrong\u003eSobre nosotros\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003eNuestra misi\u00f3n\u003c\/p\u003e\u003cp\u003e\u00a1Trabaja con nosotros!\u003c\/p\u003e\u003c\/div\u003e","version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text2":{"type":"RichText","id":"f_ba31d29c-cd68-4c71-80f4-258b51682008","defaultValue":false,"value":"\u003cp\u003e\u003cstrong\u003eRecursos\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003eTutoriales\u003c\/p\u003e\u003cp\u003eRecursos de la Marca\u003c\/p\u003e","lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"text3":{"type":"RichText","id":"f_30d6c076-7c0a-4b5a-8e17-a2cc63e40437","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp\u003e\u003cstrong\u003eCont\u00e1ctanos\u003c\/strong\u003e\u003c\/p\u003e\u003cp\u003e321-555-5555\u003c\/p\u003e\u003cp\u003einfo@company.com\u003c\/p\u003e\u003c\/div\u003e","version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"text4":{"type":"RichText","id":"f_64ab12df-ca9d-45e5-8737-65d1dc7eb902","defaultValue":false,"value":"\u003cp\u003e\u003cstrong\u003eSuscr\u00edbete a nuestro bolet\u00edn\u003c\/strong\u003e\u003c\/p\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null}},"copyright":{"type":"RichText","id":"f_785655a3-8816-444f-8caa-3049282d544b","defaultValue":false,"value":"\u003cdiv class=\"s-rich-text-wrapper\" style=\"display: block; \"\u003e\u003cp class=\" s-rich-text-wrapper\"\u003eUna empresa de \u003ca href=\"https:\/\/www.icaro.mx\/\" data-type=\"undefined\" target=\"_blank\"\u003e\u003cstrong\u003e\u00cdCARO MX \u00a9\u003c\/strong\u003e\u003c\/a\u003e\u003c\/p\u003e\u003cp class=\" s-rich-text-wrapper\"\u003eCOPYRIGHT 2026\u003c\/p\u003e\u003c\/div\u003e","backupValue":null,"version":1,"lineAlignment":{"firstLineTextAlign":null,"lastLineTextAlign":null},"defaultDataProcessed":true},"email1":{"type":"EmailForm","id":"f_e193a608-7c93-4d15-97e3-42af3c1b8c64","defaultValue":null,"hideMessageBox":false,"hide_name":false,"hide_email":false,"hide_phone_number":true,"name_label":"Nombre","name_format":"single","first_name_label":"First Name","last_name_label":"Last Name","email_label":"Email","phone_number_label":"Tel\u00e9fono","message_label":"Message","submit_label":"Suscr\u00edbete","thanksMessage":"\u00a1Gracias por tu env\u00edo!","recipient":"","label":null},"image1":{"type":"Image","id":"f_1406bbff-c3de-4541-8330-06c6e7df34a2","defaultValue":true,"link_url":null,"thumb_url":null,"url":"","caption":"","description":"","new_target":true},"socialMedia":{"type":"SocialMediaList","id":"f_ca94e3fe-967d-42e5-ba23-841d7f3d9387","defaultValue":false,"link_list":[{"type":"SocialMediaItem","id":"85b9a670-4e88-11ef-96c6-37741520f354","url":"https:\/\/www.instagram.com\/eebeditorial\/","className":"fab fa-instagram","show_button":true},{"type":"SocialMediaItem","id":"ae5b1be0-4e88-11ef-96c6-37741520f354","url":"https:\/\/www.youtube.com\/@abrahamabudp","className":"fab fa-youtube","show_button":true}],"button_list":[{"type":"Facebook","id":"f_5c42cdbd-4398-4ed9-b74d-5f14fe7af572","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false,"app_id":543870062356274},{"type":"Twitter","id":"f_428d754c-28b2-4bd1-bd26-54917ae15c50","defaultValue":false,"url":"","link_url":"","share_text":"","show_button":false},{"type":"LinkedIn","id":"f_f5bcf098-ed59-4e4a-84c5-1b1840e66303","defaultValue":null,"url":"","link_url":"","share_text":"","show_button":false},{"type":"Pinterest","id":"f_98fbe7d6-db84-4ed8-9e26-09e0d2652724","url":"","show_button":false}],"contact_list":[{"type":"SocialMediaPhone","id":"d81b3e7e-833a-11ee-947d-dfb666e09d02","defaultValue":"+52 999 494 3798","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"d81b3e7f-833a-11ee-947d-dfb666e09d02","defaultValue":"hola@icaro.mx","className":"fas fa-envelope"}],"list_type":"link"}},"layout_variation":"vertical"},"submenu":{"type":"SubMenu","id":"f_adb41d14-3d1d-404d-810f-9ec1f2e8a81b","defaultValue":null,"list":[{"type":"RepeatableItem","id":"f_84427ffb-efec-419a-a648-f601837e0c2c","components":{"link":{"type":"Button","id":"f_6eb832f9-cfe8-4c75-8843-3aee6e0310d9","text":"Contacto","link_type":"section","section_id":"f_05594afe-3b3c-4a3b-8f2d-f1fdcbcbd60a","url":"http:\/\/www.facebook.com","new_target":true}}}],"components":{"link":{"type":"Button","id":"f_c764276a-b868-4068-ab67-a960bb3a8cdb","defaultValue":null,"text":"Facebook","url":"http:\/\/www.facebook.com","new_target":true}}},"customColors":{"type":"CustomColors","id":"f_cb455f55-0b1d-40ff-97f8-3f211fd79f56","active":true,"highlight1":"#111111"},"animations":{"type":"Animations","id":"f_1e864d09-1899-4c92-98b3-d7c80ca2377e","defaultValue":null,"page_scroll":"none","background":"none","image_link_hover":"none"},"s5Theme":{"type":"Theme","id":"f_247e5d2c-d437-4993-a487-1c633cb2e339","defaultValue":null,"version":"11","nav":{"type":"NavTheme","id":"f_a7eefaef-c78a-4fe1-925d-f515062961c4","defaultValue":null,"name":"topBar","layout":"a","padding":"medium","sidebarWidth":"medium","topContentWidth":"full","horizontalContentAlignment":"center","verticalContentAlignment":"middle","fontSize":"small","backgroundColor1":"#fff","highlightColor":null,"presetColorName":"whiteMinimal","itemColor":"#000","itemSpacing":"compact","dropShadow":"no","socialMediaListType":"link","isTransparent":false,"isSticky":true,"keptOldLayout":false,"showSocialMedia":true,"highlight":{"blockBackgroundColor":null,"blockTextColor":null,"blockBackgroundColorSettings":{"id":"ee05c3ba-0f98-449c-a01d-1184ec479da6","default":"#787878","preIndex":null,"type":"custom"},"blockTextColorSettings":{"id":"2f9b64cf-6bb5-41b3-9e1c-c009b94b54ba","default":"#ffffff","preIndex":null,"type":"custom"},"blockShape":"pill","textColor":null,"textColorSettings":{"id":"bee4f2ec-0298-49ef-af48-4594d778b3d4","default":"#787878","preIndex":null,"type":"custom"},"type":"underline","id":"f_c9dd177c-0ab6-4787-be87-cc3b819fdf6c"},"border":{"enable":false,"borderColor":"#000","position":"bottom","thickness":"small","borderColorSettings":{"preIndex":null,"type":"custom","default":"#ffffff","id":"f_65a168f1-55a4-46c8-ab9c-949b461cd539"}},"layoutsVersionStatus":{"a":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"b":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"},"g":{"status":"done","from":"v1","to":"v2","currentVersion":"v2"}},"socialMedia":[{"type":"SocialMediaItem","id":"85b9a670-4e88-11ef-96c6-37741520f354","url":"https:\/\/www.instagram.com\/eebeditorial\/","className":"fab fa-instagram","show_button":true},{"type":"SocialMediaItem","id":"ae5b1be0-4e88-11ef-96c6-37741520f354","url":"https:\/\/www.youtube.com\/@abrahamabudp","className":"fab fa-youtube","show_button":true}],"socialMediaButtonList":[{"type":"Facebook","id":"d81b3e78-833a-11ee-947d-dfb666e09d02","url":"","link_url":"","share_text":"","show_button":false},{"type":"Twitter","id":"d81b3e79-833a-11ee-947d-dfb666e09d02","url":"","link_url":"","share_text":"","show_button":false},{"type":"LinkedIn","id":"d81b3e7a-833a-11ee-947d-dfb666e09d02","url":"","link_url":"","share_text":"","show_button":false},{"type":"Pinterest","id":"d81b3e7b-833a-11ee-947d-dfb666e09d02","url":"","link_url":"","share_text":"","show_button":false}],"socialMediaContactList":[{"type":"SocialMediaPhone","id":"d81b3e7e-833a-11ee-947d-dfb666e09d02","defaultValue":"+52 999 494 3798","className":"fas fa-phone-alt"},{"type":"SocialMediaEmail","id":"d81b3e7f-833a-11ee-947d-dfb666e09d02","defaultValue":"hola@icaro.mx","className":"fas fa-envelope"}],"backgroundColorSettings":{"id":"5b3527c9-3e42-4566-aeba-8908986443d8","default":"#ffffff","preIndex":null,"type":"default"},"highlightColorSettings":{"id":"bf2fca1b-4416-49ac-af2a-12c41aab9a0d","default":"#787878","preIndex":null,"type":"custom"},"itemColorSettings":{"id":"126b05f3-18dc-49e5-8d31-3f129f451fa5","default":"#000000","preIndex":null,"type":"default"}},"section":{"type":"SectionTheme","id":"f_4fc6197e-5182-4a82-a157-ca9ae223252b","defaultValue":null,"padding":"normal","contentWidth":"wide","contentAlignment":"center","baseFontSize":17,"titleFontSize":null,"subtitleFontSize":null,"itemTitleFontSize":null,"itemSubtitleFontSize":null,"textHighlightColor":null,"baseColor":"","titleColor":"","subtitleColor":"#111111","itemTitleColor":"","itemSubtitleColor":"#111111","textHighlightSelection":{"type":"TextHighlightSelection","id":"f_100266f9-faa6-4a20-8290-809532d31c19","defaultValue":null,"title":false,"subtitle":true,"itemTitle":false,"itemSubtitle":true},"base":{"preIndex":null,"type":"default","default":"#50555c","id":"f_2b602066-f142-4c80-aecf-2000e6b28aea"},"title":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_5444a00c-4056-407a-9cc3-6ca9cc0fc378"},"subtitle":{"preIndex":null,"type":"default","default":"#111111","id":"f_75adf850-a765-454b-8cf1-3fae14518ddf"},"itemTitle":{"preIndex":null,"type":"default","default":"#1D2023","id":"f_cd165463-b9f2-4ba6-8333-744becfb72a7"},"itemSubtitle":{"preIndex":null,"type":"default","default":"#111111","id":"f_626eb769-6d89-4343-97ed-073c391500ca"}},"firstSection":{"type":"FirstSectionTheme","id":"f_9f9203be-cabb-4145-b07c-4de2ccc75783","defaultValue":null,"height":"normal","shape":"none"},"button":{"type":"ButtonTheme","id":"f_78383a89-ed4d-4cda-9d68-f5c72825706d","defaultValue":null,"backgroundColor":"#111111","shape":"square","fill":"solid","backgroundSettings":{"preIndex":null,"type":"default","default":"#111111","id":"f_10323949-5ffe-41a3-bbad-b7bd3fe733e6"}}},"navigation":{"items":[{"id":"88bf8fa0-779b-4b60-b916-8016e4ce4239","type":"page","visibility":true},{"id":"aae8c58c-79fd-4634-9dd0-bfcef312a02b","type":"page","visibility":true},{"type":"dropdown","title":"Contenido","id":"99a5efc7-4e1c-4348-96dd-0bbf462e4618","items":[{"id":"4b669ece-3b64-46d6-8f56-47778a2acb60","type":"page","visibility":true},{"id":"d40178bf-197b-4997-a12d-65c148cab957","type":"page","visibility":true},{"id":"9779c927-e03d-42f7-884c-bd876a137d17","type":"page","visibility":true}]},{"id":"05833aee-4e96-450f-a9e5-f6f34ce51d09","type":"page","visibility":false},{"id":"53774841-021e-4272-8b6f-d6056a4b1067","type":"page","visibility":true},{"id":"a4e6e168-14dc-4a4e-9018-f37b111914c2","type":"page","visibility":false},{"type":"link","id":"f_6eb832f9-cfe8-4c75-8843-3aee6e0310d9","visibility":true},{"id":"027b8a39-7e49-4c28-a550-caaa6ae40a40","type":"page","visibility":false},{"id":"cb481682-b995-4de9-be08-1ce54058cdac","type":"page","visibility":false}],"links":[]},"migrateFeatures":{"migratedRtlFeatureListE":true,"migratedRtlBlogImageAlignment":true,"migratedRtlSlider":true,"migratedS6SectionPadding":false,"migrateS6SectionContentPosition":false}},"pageMeta":{"user":{"membership":"reseller","subscription_plan":"free","subscription_period":null,"is_on_trial":false,"id":2964087,"enable_desktop_notifications":null,"canUseLiveChat":false,"hideNavTextColor":true,"hideNewDashboardTour":false,"hideMobileEditorTour":true,"hideMobileActionsTour":true,"hideNewEditorTour":true,"hideChangeStyleTooltip":false},"guides":{"display_site_new_editor_modal":false},"ecommerceSettings":{"currencyCode":"USD","currencyData":{"code":"USD","symbol":"$","decimal":".","thousand":",","precision":2,"name":"United States Dollar"},"displayTax":true,"registration":"no_registration","postOrderRedirection":{},"enableProductReview":false,"paymentGateways":{"stripe":false,"square":false,"offline":false,"paypal":false,"midtrans":false,"alipay":false,"pingpp_wx_pub":false,"pingpp_wx_pub_qr":false,"pingpp_alipay_qr":false,"pingpp_alipay_wap":false,"wechatpay":false}},"portfolioSetting":true,"portfolioCurrencyCode":"USD","portfolioContactRequired":false,"portfolioRestrictedDetails":null,"portfolioCustomButton":{"buttonType":"no_button","urlType":"same_url","individualButtonMigrated":true,"buttonSetting":{"individual_button_migrated":true}},"blogSettings":true,"chatSettings":null,"connectedSites":[],"s4_migration":{"is_migrated":false,"is_retired_theme":false,"has_custom_code":true},"page_groups":[],"slide_names":["Embed an App","Big Media","Embed an App","Nosotros","Embed an App","Grid","T\u00edtulo","Embed an App","Embed an App",".","Feature List","Contacto","Publicaciones","Publicaciones","Publicaciones","Publicaciones","Publicaciones","Publicaciones","Publicaciones","Publicaciones","Embed an App","Embed an App","Make Your Own","Embed an App","Embed an App","Incrustar una aplicaci\u00f3n","Incrustar una aplicaci\u00f3n"],"theme":{"name":"s5-theme"},"theme_selection":{"id":410,"theme_id":59,"display_name":"Tiled","description":"","is_new":null,"priority":null,"thumb_image":"https://static-assets.strikinglycdn.com/templates/1667491518794.jpg","demo_page_permalink":"travel-fashion-photographer-es","data_page_permalink":"travel-fashion-photographer-es","created_at":"2022-11-03T09:05:29.303-07:00","updated_at":"2026-09-14T02:01:49.430-07:00","name":"Tiled_es","is_control":false,"control_name":"Tiled","locale":"es","version":"v4","tags":[],"mobile_thumb_image":"","platforms":[""],"required_membership":[""],"priority_automated":null,"priority_b":0,"one_page_only":false,"rank_automated":549,"rank_score":1.46,"only_asb":false,"theme_name":"s5-theme"},"description":"Somos Estudio en Blanco: editorial independiente yucateca apasionada por la palabra escrita. Publicamos libros, impartimos talleres y acompa\u00f1amos tu proyecto editorial.","connected_sites":[],"linkedin_app":false,"is_weitie_page":false,"canonical_locale_supported":true,"forced_locale":"en","china_optimization":false,"mobile_actions":{"phone":null,"sms":null,"location":null,"email":null,"version":"v2","actions":[]},"domain_connection":{"domain_id":null,"idn":"www.estudioenblanco.com","fqdn":"www.estudioenblanco.com","https_status":"ssl_active","ssl_cert_status":"activated","dns_status":null,"connect_status":"connected"},"public_url":"https:\/\/www.estudioenblanco.com\/","current_path":"\/book-test","rollouts":{"custom_code":true,"pro_sections":true,"pro_apps":true,"custom_form":false,"new_settings_dialog_feature":true,"google_analytics":true,"strikingly_analytics":true,"popup":null,"portfolio_region_options":false,"multiple_language_redirects_setting":false,"membership_feature":false},"membership_feature_active":false,"site_mode":"show","password_protected":false,"is_section_template":false,"google":{"enable_ga_universal":true,"analytics_tracker":null,"analytics_type":"universal","site_checker":null},"facebook_pixel_id":null,"enable_site_search":false,"enable_card_preset_color":true,"enable_fixed_button_color":true,"enable_fixed_text_color":true,"enable_fixed_text_color_remaining":true,"enable_fixed_text_color_has_bg_color":true,"enable_fixed_gallery_section_rtl_style":true,"enable_fixed_nav_horizontal_align":true,"enable_used_mobile_new_breakpoint":true,"enable_section_smart_binding":true,"enable_fixed_section_content_style_20251020":true,"enable_fixed_s6_transfer_2025112":true,"enable_fixed_section_height_20251209":true,"enable_fixed_mobile_section_style_20251103":true,"enable_fixed_mobile_section_style_20251117":true,"enable_section_padding_adjust":true,"enable_faq_text_color_adjust":true,"enable_new_luma_version":true,"enable_fixed_nav_special_logic_color":true,"enable_match_height_for_feature_list":true,"enable_tweaked_text_alignment":true,"enable_layout_setting_text_alignment":true,"enable_grid_slider_first_section_full_height":true,"enable_tweak_footer_hyperlink_color":true,"enable_slider_layout_c_content_align":true,"enable_form_alignment_fix":true,"enable_fixed_section_fix_20260113":true,"optimizely":{"project_id":null,"experiment_id":null},"splash_screen_color":"#ffffff","id":35276092,"permalink":"indigo-flamingo-3jncrx","created_at":"2026-09-08T18:22:36.574-07:00","logo_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1187729\/634526_541001.jpeg","icon_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_64,w_64,q_auto\/1187729\/645922_821574.jpeg","name":"Estudio en Blanco - Editorial","url_type":"subdomain_link","icp_filing_number":null,"psb_filing_number":null,"social_media_config":{"url":"https:\/\/www.estudioenblanco.com\/","title":"Estudio en Blanco - Editorial","image":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1187729\/634526_541001.jpeg","description":"Somos Estudio en Blanco: editorial independiente yucateca apasionada por la palabra escrita. Publicamos libros, impartimos talleres y acompa\u00f1amos tu proyecto editorial.","fb_app_id":"138736959550286"},"keenio_config":{"keenio_project_id":"5317e03605cd66236a000002","keenio_write_key":"efd460f8e282891930ff1957321c12b64a6db50694fd0b4a01d01f347920dfa3ce48e8ca249b5ea9917f98865696cfc39bc6814e4743c39af0a4720bb711627d9cf0fe63d5d52c3866c9c1c3178aaec6cbfc1a9ab62a3c9a827d2846a9be93ecf4ee3d61ebee8baaa6a1d735bff6e37b"},"show_strikingly_logo":false,"show_navigation_buttons":false,"social_media":null,"has_optimizely":false,"optimizely_experiment_id":null,"services":[],"strk_upvt":"dE05VlFLQXU3eUlhVDF3THJqcVlkUHlwbDJEL3VUQUhBSit0ZVVjOE1KUWdhWHBMK1lnSWM2a1cwTGVHV25VeXFPVHY5T1N2cVBMOHc0SG9KT3VHRVdxTjJWVXFTSXRuZ295eXVmVDR4cnNGTGRHbmE5ZEQ4em9lVi9QN09HNFBKRVZ1VUJpdXgwQXNYdjNRcFRSUitkcXJaMG9IYTRDVFR6MU0wNUVKc2JvPS0tZ0RxVS9xSFduczkyU1VEUVpyQzhxdz09--c928169518d9ea223d4b339431eb673c91a73d0d","strk_ga_tracker":"UA-25124444-6","google_analytics_tracker":null,"google_analytics_type":"universal","exception_tracking":false,"ecommerce":{"seller_wechat_app_id":null,"has_set_payment_account":false},"customCodes":{"site_footer_code":{"value":"\u003c!---- BOT\u00d3N FLOTANTE WHATSAPP ----\u003e\n\u003cdiv id=\"banner-fixed\" style=\"\n position: fixed;\n bottom: 20px;\n right: 20px;\n z-index: 1000;\n\"\u003e\n \u003ca \n href=\"https:\/\/api.whatsapp.com\/send?phone=529994943798\u0026text=Hola%2C%20me%20gustar%C3%ADa%20conocer%20los%20servicios%20de%20publicaci%C3%B3n%20de%20Estudio%20en%20Blanco\"\n target=\"_blank\"\n aria-label=\"Contactar por WhatsApp\"\n \u003e \n \u003cimg \n src=\"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_9000,w_1200,f_auto,q_auto\/1187729\/107147_524820.png\"\n alt=\"Cont\u00e1ctanos en WhatsApp\"\n style=\"width: 70px; max-width: 100%; height: auto;\"\n \u003e\n \u003c\/a\u003e\n\u003c\/div\u003e\n","status":"passed","reviewer":"auto"},"site_header_code":{"value":"\u003cstyle\u003e\n @media (pointer: fine) {\n *, *:hover {\n cursor: none !important;\n }\n }\n\u003c\/style\u003e\n\n\u003ccanvas id=\"wylddPenTrail\" style=\"position:fixed;inset:0;width:100vw;height:100vh;pointer-events:none;z-index:2147483000;\"\u003e\u003c\/canvas\u003e\n\n\u003cdiv id=\"wylddPenCursor\" style=\"position:fixed;width:30px;height:30px;pointer-events:none;z-index:2147483001;opacity:0;transform-origin:50% 100%;\"\u003e\n \u003csvg viewBox=\"0 0 24 24\" width=\"30\" height=\"30\"\u003e\n \u003crect x=\"10\" y=\"1\" width=\"4\" height=\"14\" rx=\"2\" fill=\"#1a1a1a\"\u003e\u003c\/rect\u003e\n \u003crect x=\"9\" y=\"4\" width=\"6\" height=\"2\" fill=\"#ffffff\"\u003e\u003c\/rect\u003e\n \u003cpath d=\"M10 15 L14 15 L12 22 Z\" fill=\"#1a1a1a\"\u003e\u003c\/path\u003e\n \u003cline x1=\"12\" y1=\"15\" x2=\"12\" y2=\"20.5\" stroke=\"#ffffff\" stroke-width=\"0.6\"\u003e\u003c\/line\u003e\n \u003c\/svg\u003e\n\u003c\/div\u003e\n\n\u003cscript\u003e\n(function () {\n function init() {\n if (!window.matchMedia('(pointer: fine)').matches) return;\n if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;\n\n var canvas = document.getElementById('wylddPenTrail');\n var pen = document.getElementById('wylddPenCursor');\n var ctx = canvas.getContext('2d');\n var points = [];\n var maxAge = 700;\n var isDrawing = false;\n var dpr = window.devicePixelRatio || 1;\n\n function resize() {\n canvas.width = window.innerWidth * dpr;\n canvas.height = window.innerHeight * dpr;\n canvas.style.width = window.innerWidth + 'px';\n canvas.style.height = window.innerHeight + 'px';\n ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n }\n resize();\n window.addEventListener('resize', resize);\n\n document.addEventListener('mousedown', function () { isDrawing = true; });\n document.addEventListener('mouseup', function () { isDrawing = false; });\n\n document.addEventListener('mousemove', function (e) {\n pen.style.left = e.clientX + 'px';\n pen.style.top = e.clientY + 'px';\n pen.style.transform = 'translate(-50%, -100%) rotate(-40deg)';\n pen.style.opacity = '1';\n if (isDrawing) {\n points.push({ x: e.clientX, y: e.clientY, t: performance.now() });\n }\n });\n\n document.documentElement.addEventListener('mouseleave', function () {\n pen.style.opacity = '0';\n isDrawing = false;\n });\n document.documentElement.addEventListener('mouseenter', function () {\n pen.style.opacity = '1';\n });\n window.addEventListener('blur', function () {\n pen.style.opacity = '0';\n isDrawing = false;\n });\n\n function draw() {\n ctx.clearRect(0, 0, window.innerWidth, window.innerHeight);\n var now = performance.now();\n points = points.filter(function (p) { return now - p.t \u003c maxAge; });\n for (var i = 1; i \u003c points.length; i++) {\n var p0 = points[i - 1];\n var p1 = points[i];\n var age = now - p1.t;\n var alpha = 1 - age \/ maxAge;\n ctx.beginPath();\n ctx.moveTo(p0.x, p0.y);\n ctx.lineTo(p1.x, p1.y);\n ctx.strokeStyle = 'rgba(83, 74, 183,' + alpha + ')';\n ctx.lineWidth = 2.5 * alpha + 0.5;\n ctx.lineCap = 'round';\n ctx.stroke();\n }\n requestAnimationFrame(draw);\n }\n draw();\n }\n\n if (document.readyState === 'loading') {\n document.addEventListener('DOMContentLoaded', init);\n } else {\n init();\n }\n})();\n\u003c\/script\u003e","status":"passed","reviewer":"auto"}},"hideDummyData":{"hideEcommerceDummyData":false,"hidePortfolioDummyData":false,"hideBlogDummyData":false,"hideBookingDummyData":false},"redirectUrls":[],"isMainSitePage":false},"blogCollection":{"data":{"blog":{"id":35276092,"blogSettings":{"previewLayout":1,"mailchimpCode":null,"hasSubscriptionCode":null,"hasSubscriptionCodeBefore":null,"showMorePostsWith":null,"usedDisqusCommentsBefore":null,"showRss":null,"showMip":null,"enableComments":null,"lastReadCommentsAt":null,"showAmp":null,"reviewNumber":null,"commentsRequireApproval":null,"showSubscriptionForm":null,"showSubscriptionsTab":null,"headerCustomCode":null,"footerCustomCode":null,"shortcuts":[],"shortcutsOrder":{},"banner":[],"previewNumber":null,"wechatMomentEnabled":null,"categoryOrder":{},"showNav":true,"hideNewBlogTips":null,"positiveOrder":true},"blogPosts":[],"wechatMpAccountId":null,"pagination":{"blogPosts":{"currentPage":1,"previousPage":null,"nextPage":null,"perPage":20,"totalPages":0,"totalCount":0}}}}},"ecommerceProductCollection":{"data":{"products":[]}},"ecommerceCategoriesProductCollection":null,"portfolioCategoriesProductCollection":null,"portfolioProductCollection":{"data":{"products":[]}},"blogCategoriesPostCollection":null,"ecommerceProductOrderList":{},"ecommerceCategoryCollection":{"data":{"categories":[]}},"portfolioCategoryCollection":{"data":{"categories":[]}},"blogCategoryCollection":{},"eventTypeCategoryCollection":null};$S.blink={"page":{"logo_url":"https:\/\/custom-images.strikinglycdn.com\/res\/hrscywv4p\/image\/upload\/c_limit,fl_lossy,h_630,w_1200,f_auto,q_auto\/1187729\/634526_541001.jpeg","weitie_url":"http:\/\/indigo-flamingo-3jncrx.weitie.co","description":"Somos Estudio en Blanco: editorial independiente yucateca apasionada por la palabra escrita. Publicamos libros, impartimos talleres y acompa\u00f1amos tu proyecto editorial.","name":"Estudio en Blanco - Editorial"},"conf":{"WECHAT_APP_ID":"wxd009fb01de1ec8b5"}}; //]]>
    • ¿Te recomendamos un libro?

      Contesta estas preguntas y te recomendaremos alguno de nuestros libros favoritos.