{"id":22815,"date":"2026-06-08T17:43:45","date_gmt":"2026-06-08T20:43:45","guid":{"rendered":"https:\/\/of3dacademy.com\/?page_id=22815"},"modified":"2026-07-15T14:38:59","modified_gmt":"2026-07-15T17:38:59","slug":"d5-accelerator","status":"publish","type":"page","link":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/","title":{"rendered":"D5 Accelerator"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"22815\" class=\"elementor elementor-22815 elementor-22110\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d20025e e-flex e-con-boxed e-con e-parent\" data-id=\"d20025e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6280e85 e-con-full e-flex e-con e-child\" data-id=\"6280e85\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aec92ce elementor-widget elementor-widget-html\" data-id=\"aec92ce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n(function () {\r\n  const TZ = 'America\/Sao_Paulo';\r\n  \r\n  \/\/ Nomes em ingl\u00eas (meses e dias)\r\n  const MESES = ['January','February','March','April','May','June','July','August','September','October','November','December'];\r\n  const DIAS = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];\r\n \r\n  \/\/ === CONFIG: data inicial (10 de Agosto de 2026) ===\r\n  \/\/ M\u00eas 7 no JS \u00e9 Agosto (0 = Janeiro, 7 = Agosto)\r\n  const START = { ano: 2026, mes: 7, dia: 10 };\r\n \r\n  \/\/ === CONFIG: as 4 aulas da semana ===\r\n  \/\/ offset = dias a partir da segunda (0=Seg, 2=Qua, 4=Sex, 6=Dom)\r\n  const AULAS = [\r\n    { offset: 0 }, \/\/ evt-dia-0 -> Monday, Aug 10th\r\n    { offset: 2 }, \/\/ evt-dia-1 -> Wednesday, Aug 12th\r\n    { offset: 4 }, \/\/ evt-dia-2 -> Friday, Aug 14th\r\n    { offset: 6 }, \/\/ evt-dia-3 -> Sunday, Aug 16th\r\n  ];\r\n \r\n  function nowInTZ() {\r\n    return new Date(new Date().toLocaleString('en-US', { timeZone: TZ }));\r\n  }\r\n \r\n  function eventMonday(from) {\r\n    const d = new Date(from);\r\n    d.setHours(0, 0, 0, 0);\r\n    const day = d.getDay();\r\n    const diff = (day === 0) ? -6 : (1 - day);\r\n    d.setDate(d.getDate() + diff);\r\n    return d;\r\n  }\r\n \r\n  function pad(n) { return String(n).padStart(2, '0'); }\r\n\r\n  \/\/ Fun\u00e7\u00e3o para adicionar o sufixo ingl\u00eas nas datas (10th, 12th, etc.)\r\n  function getOrdinal(d) {\r\n    if (d > 3 && d < 21) return 'th';\r\n    switch (d % 10) {\r\n      case 1:  return \"st\";\r\n      case 2:  return \"nd\";\r\n      case 3:  return \"rd\";\r\n      default: return \"th\";\r\n    }\r\n  }\r\n \r\n  \/\/ Fun\u00e7\u00e3o de substitui\u00e7\u00e3o segura para preservar fontes, cores e badges do Elementor\r\n  function safeSetText(el, text) {\r\n    if (!el) return;\r\n    const target = el.querySelector('.elementor-icon-box-title span') || \r\n                   el.querySelector('.elementor-icon-box-title') ||\r\n                   el.querySelector('.elementor-heading-title') ||\r\n                   el.querySelector('.elementor-icon-list-text');\r\n                   \r\n    if (target) {\r\n      target.textContent = text;\r\n    } else {\r\n      el.textContent = text;\r\n    }\r\n  }\r\n \r\n  function render() {\r\n    try {\r\n      const naturalMonday = eventMonday(nowInTZ());\r\n      const startMonday = new Date(START.ano, START.mes, START.dia);\r\n      startMonday.setHours(0, 0, 0, 0);\r\n \r\n      const monday = (naturalMonday < startMonday) ? startMonday : naturalMonday;\r\n \r\n      \/\/ 1. Faixa do evento (segunda a domingo) -> .evt-range (Ex: \"Aug 10 to 16\")\r\n      const end = new Date(monday);\r\n      end.setDate(monday.getDate() + 6);\r\n      \r\n      const sameMonth = monday.getMonth() === end.getMonth();\r\n      const rangeText = sameMonth\r\n        ? `${MESES[monday.getMonth()].substring(0, 3)} ${monday.getDate()} to ${end.getDate()}`\r\n        : `${MESES[monday.getMonth()].substring(0, 3)} ${monday.getDate()} to ${MESES[end.getMonth()].substring(0, 3)} ${end.getDate()}`;\r\n        \r\n      document.querySelectorAll('.evt-range').forEach(el => safeSetText(el, rangeText));\r\n \r\n      \/\/ 2. Cada aula nos Cards -> .evt-dia-0 ... .evt-dia-3\r\n      AULAS.forEach((aula, i) => {\r\n        const d = new Date(monday);\r\n        d.setDate(monday.getDate() + aula.offset);\r\n        \r\n        const diaDoMes = d.getDate();\r\n        const sufixo = getOrdinal(diaDoMes);\r\n        const mesCurto = MESES[d.getMonth()].substring(0, 3);\r\n        \r\n        \/\/ Formato exato do seu print: Day #01 - Monday, Aug 10th\r\n        const text = `Day #${pad(i + 1)} - ${DIAS[d.getDay()]}, ${mesCurto} ${diaDoMes}${sufixo}`;\r\n        document.querySelectorAll(`.evt-dia-${i}`).forEach(el => safeSetText(el, text));\r\n      });\r\n    } catch (e) {\r\n      console.error('[evt] render falhou:', e);\r\n    }\r\n  }\r\n \r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', () => setTimeout(render, 250));\r\n  } else {\r\n    setTimeout(render, 250);\r\n  }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fe0a37f elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"fe0a37f\" 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<img fetchpriority=\"high\" decoding=\"async\" width=\"670\" height=\"262\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp\" class=\"attachment-large size-large wp-image-22827\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp 670w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO-300x117.webp 300w\" sizes=\"(max-width: 670px) 100vw, 670px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-708ec44 elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"708ec44\" 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\">From Zero to Realistic Rendering in D5 Render.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e4b7ef1 elementor-widget elementor-widget-heading\" data-id=\"e4b7ef1\" 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\">In just 4 classes, you'll reach a render so realistic it looks like an architecture photo. Even if you have never used D5 Render before.\n<br><br>\nAnd if you already know how to render, you'll be amazed by how fast you'll start producing images and animations for your projects using D5 Render.<\/br><\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f665875 e-con-full e-flex e-con e-child\" data-id=\"f665875\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8bbe2bf elementor-icon-list--layout-inline elementor-align-center elementor-widget__width-initial elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"8bbe2bf\" 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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"251\" height=\"249\" viewBox=\"0 0 251 249\" fill=\"none\"><path d=\"M59.5 10V172.5C59.5 183.546 68.4543 192.5 79.5 192.5H241M188 239V78.5C188 67.4543 179.046 58.5 168 58.5H10\" stroke=\"#CD01FF\" stroke-width=\"20\" stroke-linecap=\"round\"><\/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\">Realistic<br>  Render<\/span>\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-9bc4e60 elementor-icon-list--layout-inline elementor-align-center elementor-widget__width-initial elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"9bc4e60\" 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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"250\" height=\"252\" viewBox=\"0 0 250 252\" fill=\"none\"><path d=\"M21.8279 119.368H219.258C230.303 119.368 239.258 128.322 239.258 139.368V221.475C239.258 232.52 230.304 241.475 219.258 241.475H41.8279C30.7822 241.475 21.8279 232.52 21.8279 221.475V119.368ZM133.837 28.0801L64.1059 50.6856L23.8428 63.7381C13.1194 67.2144 7.38621 78.8617 11.1719 89.4798L21.8279 119.368M178.312 73.1754L104.737 94.894L21.8279 119.368M104.737 94.894L64.1059 50.6856M178.312 73.1754L221.106 60.5428C224.603 59.5105 226.379 55.6232 224.869 52.3041L210.96 21.7243C206.749 12.4668 196.261 7.84345 186.587 10.9797L133.837 28.0801M178.312 73.1754L133.837 28.0801\" stroke=\"#CD01FF\" stroke-width=\"20\" stroke-linecap=\"round\"><\/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\">Cinematic <br>Animations<\/span>\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-f11d5fb elementor-icon-list--layout-inline elementor-align-center elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"f11d5fb\" 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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"241\" height=\"252\" viewBox=\"0 0 241 252\" fill=\"none\"><path d=\"M122.359 11.4794C98.1526 94.1876 46.7837 115.054 11.5247 125.167C9.56037 125.73 9.4668 128.7 11.4008 129.36C34.9454 137.394 110.242 168.42 122.595 239.96C123.006 242.345 128.439 242.771 129.103 240.444C149.414 169.244 195.246 139.183 228.856 130.228C231.207 129.602 231.851 121.658 229.582 120.779C200.56 109.54 148.94 80.4744 126.458 11.435C125.828 9.50123 122.93 9.52754 122.359 11.4794Z\" stroke=\"#CD01FF\" stroke-width=\"20\" stroke-linecap=\"round\"><\/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\">Artificial Intelligence<\/span>\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>\n\t\t<div class=\"elementor-element elementor-element-8200d2c e-con-full e-flex e-con e-child\" data-id=\"8200d2c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22f243d elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"22f243d\" 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\"><strong>Up for the challenge?<\/strong> Then click the button below and grab your ticket.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-982c81a elementor-widget__width-inherit elementor-widget elementor-widget-heading\" data-id=\"982c81a\" 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\">All for just $7<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-be494b8 elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget__width-auto elementor-widget-laptop__width-auto elementor-widget-mobile__width-initial elementor-widget-widescreen__width-auto evt-range elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"be494b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-calendar\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\ta\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-805d48b elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget__width-auto elementor-widget-laptop__width-auto elementor-widget-mobile__width-initial elementor-widget-widescreen__width-auto elementor-tablet-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"805d48b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-clock\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t10AM (UTC-3)\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-771aa49 elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"771aa49\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<div class=\"elementor-element elementor-element-2521f1c elementor-icon-list--layout-inline elementor-mobile-align-center elementor-tablet-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"2521f1c\" 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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"211\" height=\"235\" viewBox=\"0 0 211 235\" fill=\"none\"><path d=\"M52 104.495H30C18.9543 104.495 10 113.449 10 124.495V204.5C10 215.546 18.9543 224.5 30 224.5H180.5C191.546 224.5 200.5 215.546 200.5 204.5V124.495C200.5 113.449 191.546 104.495 180.5 104.495H157M52 104.495V52.4974C52 52.4974 56 10.0013 106.5 10C157 9.99869 157 52.4958 157 52.4958V104.495M52 104.495H157\" stroke=\"white\" stroke-width=\"20\" stroke-linecap=\"round\"><\/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\">Secure purchase<\/span>\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<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"192\" height=\"233\" viewBox=\"0 0 192 233\" fill=\"none\"><path d=\"M60.6638 112.846L81.496 135.166C85.3963 139.345 91.9996 139.41 95.9814 135.309L138.664 91.3457M10.668 152.846C9.449 140.656 10.2084 75.9653 10.5358 52.1528C10.605 47.1182 14.4045 42.9195 19.3904 42.2172C27.8185 41.03 41.1158 38.9062 53.6638 35.8457C67.0231 32.5873 81.2318 20.8354 89.5094 13.0437C93.5752 9.21657 100.018 8.93647 104.262 12.5654C113.608 20.558 129.429 33.1602 139.164 35.8457C148.473 38.4137 163.14 40.7757 172.449 42.1377C177.43 42.8666 181.164 47.1189 181.164 52.1536V143.326C181.164 149.52 179.259 155.571 175.498 160.493C168.806 169.25 157.131 183.693 145.668 193.846C135.833 202.556 121.576 212.056 110.973 218.708C102.17 224.23 91.1042 224.352 82.1214 219.127C69.3141 211.678 51.6451 200.827 44.6638 193.846C33.1638 182.346 12.168 167.846 10.668 152.846Z\" stroke=\"white\" stroke-width=\"20\" stroke-linecap=\"round\"><\/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\">7-Day Guarantee<\/span>\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>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-781b0f3 e-con-full e-flex e-con e-child\" data-id=\"781b0f3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-ffe7399 e-con-full e-flex e-con e-child\" data-id=\"ffe7399\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5df779d elementor-widget elementor-widget-html\" data-id=\"5df779d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"video-container\">\r\n  <video autoplay muted loop playsinline preload=\"auto\">\r\n    <source src=\"https:\/\/vz-13bba5d2-263.b-cdn.net\/d1f01530-e08a-44e8-88c0-3130aa260284\/play_720p.mp4\" type=\"video\/mp4\">\r\n  <\/video>\r\n<\/div>\r\n<script>\r\n  const ICONS = {\r\n    play:   \"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/icones-videos-04.svg\",\r\n    pause:  \"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/icones-videos-03.svg\",\r\n    mute:   \"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/icones-videos-01.svg\",\r\n    unmute: \"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/icones-videos-02.svg\",\r\n  };\r\n  document.querySelectorAll('.video-container').forEach(container => {\r\n    const video   = container.querySelector('video');\r\n    const btnPlay = container.querySelector('.btn-play');\r\n    const btnMute = container.querySelector('.btn-mute');\r\n    const imgPlay = btnPlay.querySelector('img');\r\n    const imgMute = btnMute.querySelector('img');\r\n    imgPlay.src = video.paused ? ICONS.play : ICONS.pause;\r\n    imgMute.src = video.muted  ? ICONS.mute : ICONS.unmute;\r\n    btnPlay.addEventListener('click', () => {\r\n      if (video.paused) { video.play();  imgPlay.src = ICONS.pause; }\r\n      else              { video.pause(); imgPlay.src = ICONS.play;  }\r\n    });\r\n    btnMute.addEventListener('click', () => {\r\n      video.muted = !video.muted;\r\n      imgMute.src = video.muted ? ICONS.mute : ICONS.unmute;\r\n    });\r\n    video.addEventListener('play',  () => imgPlay.src = ICONS.pause);\r\n    video.addEventListener('pause', () => imgPlay.src = ICONS.play);\r\n    video.addEventListener('volumechange', () => {\r\n      imgMute.src = video.muted ? ICONS.mute : ICONS.unmute;\r\n    });\r\n  });\r\n<\/script>\r\n\t\t\t\t<\/div>\n\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-f1cb752 e-con-full e-flex e-con e-parent\" data-id=\"f1cb752\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-208806f e-con-full e-flex e-con e-child\" data-id=\"208806f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf9de46 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"bf9de46\" 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\">See it with your own eyes<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-13324a5 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"13324a5\" 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\">Can D5 really deliver Brutal Render quality?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9aebbc elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"a9aebbc\" 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\">All the images below were created in D5 Render, and you'll learn how to reach the same level of quality.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c05bf39 elementor-widget-mobile__width-inherit elementor-arrows-position-inside elementor-widget elementor-widget-image-carousel\" data-id=\"c05bf39\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;6&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;arrows&quot;,&quot;autoplay_speed&quot;:1000,&quot;autoplay&quot;:&quot;yes&quot;,&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;image_spacing_custom_widescreen&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carrossel de imagens\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-9-_-3x4-1-1.webp\" alt=\"CAMERA 9 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-9-_-3x4-2-1.webp\" alt=\"CAMERA 9 _ 3x4 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-8-_-3x4-1-1-1.webp\" alt=\"CAMERA 8 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-8-_-3x4-3-1-1.webp\" alt=\"CAMERA 8 _ 3x4 (3) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-8-_-3x4-1-2.webp\" alt=\"CAMERA 8 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-3-_-3x4-1-2.webp\" alt=\"CAMERA 3 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-6-_-3x4-1-2.webp\" alt=\"CAMERA 6 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-3-_-3x4-1-1-1.webp\" alt=\"CAMERA 3 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-2-_-3x4-1-1.webp\" alt=\"CAMERA 2 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-2-_-3x4-2-1-1.webp\" alt=\"CAMERA 2 _ 3x4 (2) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-1-_-3x4-2-1-1.webp\" alt=\"CAMERA 1 _ 3x4 (2) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-1-_-3x4-3-1-1.webp\" alt=\"CAMERA 1 _ 3x4 (3) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 13\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-1-_-3x4-1-1-1.webp\" alt=\"CAMERA 1 _ 3x4 (1) 1\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\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\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\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\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-08205a5 elementor-hidden-mobile elementor-arrows-position-inside elementor-widget elementor-widget-image-carousel\" data-id=\"08205a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;6&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;arrows&quot;,&quot;autoplay_speed&quot;:1000,&quot;autoplay&quot;:&quot;yes&quot;,&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}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carrossel de imagens\" dir=\"rtl\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-01-_-3x4-3-1.webp\" alt=\"CAMERA 01 _ 3x4 (3) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-01-_-3x4-4-1.webp\" alt=\"CAMERA 01 _ 3x4 (4) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-01-_-3x4-3.webp\" alt=\"CAMERA 01 _ 3x4 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-02-_-3x4-1-1.webp\" alt=\"CAMERA 02 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-02-_-3x4-2-1.webp\" alt=\"CAMERA 02 _ 3x4 (2) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-02-_-3x4-1.webp\" alt=\"CAMERA 02 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-04-_-3x4-1.webp\" alt=\"CAMERA 04 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-05-_-3x4-1.webp\" alt=\"CAMERA 05 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-06-_-3x4-1-1.webp\" alt=\"CAMERA 06 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-06-_-3x4-2-1.webp\" alt=\"CAMERA 06 _ 3x4 (2) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-07-_-3x4-1-1.webp\" alt=\"CAMERA 07 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-07-_-3x4-1.webp\" alt=\"CAMERA 07 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-08-_-3x4-1-1.webp\" alt=\"CAMERA 08 _ 3x4 (1) 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"14 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-08-_-3x4-1.webp\" alt=\"CAMERA 08 _ 3x4 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"15 of 15\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/CAMERA-11-_-3x4-1.webp\" alt=\"CAMERA 11 _ 3x4 1\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\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\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\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\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f0a67f3 e-flex e-con-boxed e-con e-parent\" data-id=\"f0a67f3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d1470c4 e-con-full e-flex e-con e-child\" data-id=\"d1470c4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c1d97bb elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"c1d97bb\" 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\">Who is  D5 Accelerator for?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-584fbb6 e-con-full e-flex e-con e-child\" data-id=\"584fbb6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-d2f94cf e-con-full e-flex e-con e-child\" data-id=\"d2f94cf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-38d64f7 elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-widget-laptop__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"38d64f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFor you who is on the fence about whether it's worth using D5 Render as your architecture rendering software\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0ab928c e-con-full e-flex e-con e-child\" data-id=\"0ab928c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d3482bf elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget-laptop__width-initial elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"d3482bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFor architects and designers who need a fast solution to present their projects with maximum realism\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f1d3984 e-con-full e-flex e-con e-child\" data-id=\"f1d3984\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dbe1807 elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget-laptop__width-initial elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"dbe1807\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFor those who want to close better clients but feel they're lacking the quality or speed for more demanding projects\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61f5412 e-con-full e-flex e-con e-child\" data-id=\"61f5412\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-543657f elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-mobile-position-inline-start elementor-widget-laptop__width-initial elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"543657f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFor those who want to work in a profession with high demand, high value and low competition\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26cc7f6 e-con-full e-flex e-con e-child\" data-id=\"26cc7f6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-33ca54c elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-widget-laptop__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"33ca54c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tFor those who have already tried to learn rendering but found the programs too heavy and complex.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8688270 e-con-full e-flex e-con e-child\" data-id=\"8688270\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4788725 elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-widget-laptop__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"4788725\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tArchitecture students who want to present their projects with more quality and speed\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-257cb35 e-con-full e-flex e-con e-child\" data-id=\"257cb35\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fec7ba4 elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-widget-laptop__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"fec7ba4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t3D artists already working in the market who want to be more productive to serve more clients while delivering the same quality.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d031941 e-con-full e-flex e-con e-child\" data-id=\"d031941\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5bd4812 elementor-widget__width-inherit elementor-widget-mobile__width-auto elementor-position-inline-start elementor-widget-laptop__width-initial elementor-mobile-position-inline-start elementor-view-default elementor-widget elementor-widget-icon-box\" data-id=\"5bd4812\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\tIf you feel like you're working more hours than you should and want to reduce your production time without sacrificing the quality of your work.\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4fd8eb8 elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"4fd8eb8\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-52ee164 e-flex e-con-boxed e-con e-parent\" data-id=\"52ee164\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-abcd819 e-con-full e-flex e-con e-child\" data-id=\"abcd819\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-634ee1b elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"634ee1b\" 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\">Event Schedule<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e6b21b elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading\" data-id=\"5e6b21b\" 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\">Practical content, from zero to the final result.<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff39114 e-con-full e-flex e-con e-child\" data-id=\"ff39114\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-820fd60 e-con-full e-flex e-con e-child\" data-id=\"820fd60\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-7afdee6 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"7afdee6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:200,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-40f219c evt-dia-0 elementor-widget elementor-widget-heading\" data-id=\"40f219c\" 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\">Dia 01 - Segunda, 15\/06 \u00e0s 7h\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f67bba elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1f67bba\" 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\">Brutal Render Fundamentals and Introduction to D5 Render<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cde4096 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"cde4096\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-49b7d41 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"49b7d41\" 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\">What will you learn?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fe8d7a0 elementor-widget elementor-widget-text-editor\" data-id=\"fe8d7a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<ul><li>Introduction to the architecture rendering market<\/li><li>What are the 7 Golden Pillars of Brutal Render<\/li><li>How and where to find good architecture and photography references<\/li><li>What are the main composition rules and how to use each one of them<\/li><li>What are the main lens effects and how to use each one of them<\/li><li>The most used lighting moods in the high-end architecture market<\/li><li>Introduction to D5 Render: how to download, install, create a project and navigate inside it.<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8c9ae86 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"8c9ae86\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:200,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-028df92 evt-dia-1 elementor-widget elementor-widget-heading\" data-id=\"028df92\" 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\">Dia 02 - Quarta, 17\/06 \u00e0s 7h<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd79364 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"cd79364\" 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\">Aula pr\u00e1tica: Seu primeiro Render Brabo no D5 Render<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f6bbfeb elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f6bbfeb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ea43f1a elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"ea43f1a\" 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\">What will you learn?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-951be7b elementor-widget elementor-widget-text-editor\" data-id=\"951be7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<ul><li>How to import any project into D5 Render (whether from Sketchup, 3ds Max, Revit or another 3D software)<\/li><li>How to apply and adjust materials and textures<\/li><li>How to import 3D blocks to compose the scene (D5&#8217;s native library)<\/li><li>How to use D5&#8217;s AI tools to speed up the image production process<\/li><li>How to set up cameras and scenes in the project<\/li><li>How to set up lighting and the project&#8217;s mood<\/li><li>Ideal render settings<\/li><li>Using D5 Render&#8217;s AI to enhance the final result<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d5060c0 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"d5060c0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:200,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b43cea3 evt-dia-2 elementor-widget elementor-widget-heading\" data-id=\"b43cea3\" 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\">Dia 03 - Sexta, 19\/06 \u00e0s 7h<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1deb649 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1deb649\" 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\">Hands-on class: Cinematic animations in D5 Render<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5779521 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"5779521\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5135503 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"5135503\" 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\">What will you learn?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ed1b3fa elementor-widget elementor-widget-text-editor\" data-id=\"ed1b3fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<ul><li>Introduction to animations<\/li><li>What keyframes are<\/li><li>What are the most used camera movements in cinema and how to use each one in architecture<\/li><li>How to create animations inside D5 Render<\/li><li>How to render and export animations<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e95df67 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"e95df67\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:200,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d22ba7 evt-dia-3 elementor-widget elementor-widget-heading\" data-id=\"0d22ba7\" 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\">Dia 04 - Domingo, 21\/06 \u00e0s 10h\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0fb8a74 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"0fb8a74\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a9e8a9d elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"a9e8a9d\" 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\">Secret Class  \ud83d\udd12\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d128a15 elementor-widget__width-inherit elementor-widget-laptop__width-initial elementor-widget elementor-widget-heading\" data-id=\"d128a15\" 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\">The content of this class isn't in the schedule. You'll only find out live, on Sunday.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26d6fedd e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex elementor-invisible e-con e-child\" data-id=\"26d6fedd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:300,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-2c1fe060 e-con-full e-flex e-con e-child\" data-id=\"2c1fe060\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4daf8fd0 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"4daf8fd0\" 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\">And to make it even easier...<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b6b6c12 elementor-widget__width-initial elementor-widget-laptop__width-initial elementor-widget elementor-widget-heading\" data-id=\"6b6b6c12\" 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\">You'll receive a special gift from the OF3D Team<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-44f9ba9a e-con-full e-flex e-con e-child\" data-id=\"44f9ba9a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-67635485 e-con-full e-flex e-con e-child\" data-id=\"67635485\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-606a8351 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"606a8351\" 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\">Exclusive Bonus<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7fa39696 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"7fa39696\" 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\">3D MODELING OF THE PROJECT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e87bbbc elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"5e87bbbc\" 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\">To make your learning experience with D5 Render even smoother, we'll hand you a professional 3D model of the project, developed by the OF3D Academy modelers.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d918745 e-con-full e-flex e-con e-child\" data-id=\"6d918745\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-46ad2dea elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"46ad2dea\" 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<img decoding=\"async\" width=\"621\" height=\"455\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2.png\" class=\"attachment-full size-full wp-image-22480\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2.png 621w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2-300x220.png 300w\" sizes=\"(max-width: 621px) 100vw, 621px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-101b370 e-con-full elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-laptop e-flex elementor-invisible e-con e-child\" data-id=\"101b370\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;bounceInUp&quot;,&quot;animation_delay&quot;:300,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-0fed859 e-con-full e-flex e-con e-child\" data-id=\"0fed859\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-94c56b1 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"94c56b1\" 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\">E pra facilitar ainda mais...<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9ac2a20 elementor-widget__width-initial elementor-widget-laptop__width-initial elementor-widget elementor-widget-heading\" data-id=\"9ac2a20\" 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\">Voc\u00ea vai receber um presente especial da Equipe OF3D<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8c58270 e-con-full e-flex e-con e-child\" data-id=\"8c58270\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-1b6ffa2 e-con-full e-flex e-con e-child\" data-id=\"1b6ffa2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c13733 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2c13733\" 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\">B\u00f4nus Exclusivo<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-351ae76 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"351ae76\" 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\">MODELAGEM 3D DO PROJETO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9080010 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9080010\" 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\">Para que sua experi\u00eancia de aprendizado com o D5 Render seja ainda mais fluida, vamos te entregar uma modelagem 3D profissional do projeto - desenvolvida pelos modeladores da OF3D Academy.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7ac18c3 e-con-full e-flex e-con e-child\" data-id=\"7ac18c3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e39509f elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"e39509f\" 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<img decoding=\"async\" width=\"621\" height=\"455\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2.png\" class=\"attachment-full size-full wp-image-22480\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2.png 621w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/Mockup_Notebook_D5-render-2-300x220.png 300w\" sizes=\"(max-width: 621px) 100vw, 621px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11b1d96 elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"11b1d96\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<\/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-662f461 e-flex e-con-boxed e-con e-parent\" data-id=\"662f461\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-fb97b34 e-con-full e-flex e-con e-child\" data-id=\"fb97b34\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aa43926 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"aa43926\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\tOne of the greatest <span style=\"color: #cd01ff;\">3D artists in the world.<\/span>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-93d43f8 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"93d43f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Who is <br>\n<font color=\"#CD01FF\"> Ander Alencar?<\/font><\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-04e7e87 elementor-widget elementor-widget-heading\" data-id=\"04e7e87\" 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\">He's the founder and CEO of OF3D Creative (formerly Oficina 3D Studio), one of the biggest architecture rendering studios in the world.\n<br><br>\nHe's also the mind behind OF3D Academy, an archviz school with over 15,000 students in more than 120 countries around the world.\n<br><br>\nHe's an internationally renowned and recognized 3D artist, having worked for major architecture and design firms like Zaha Hadid, Pininfarina, Studio Arthur Casas, Porsche Design and others.\n<br><br>\nSome of his work has already won international awards, for example:<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-431c2fe e-con-full e-flex e-con e-child\" data-id=\"431c2fe\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e827895 elementor-widget__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"e827895\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img decoding=\"async\" width=\"186\" height=\"41\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/evermotion-e1725714569933-2.png\" class=\"attachment-full size-full wp-image-9981\" alt=\"\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">EVERMOTION CHALLENGE<\/h3><p class=\"elementor-image-box-description\"><b>1st prize<\/b> -<br> Homeless\n\n<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fba21aa elementor-widget__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"fba21aa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"186\" height=\"54\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/aesthetica-e1725714629897-2.png\" class=\"attachment-full size-full wp-image-9983\" alt=\"\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">AESTHETICA SHORT<BR>FILM FESTIVAL<\/h3><p class=\"elementor-image-box-description\"><b>Official Selection<\/b> - <br>The Last Flight<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ebb2ebf elementor-widget__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"ebb2ebf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"186\" height=\"100\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/la-shorts-2.png\" class=\"attachment-full size-full wp-image-9985\" alt=\"\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">LA SHORTS INTERNATIONAL<BR>FILM FESTIVAL<\/h3><p class=\"elementor-image-box-description\"><b>Official Selection<\/b> - <br>The Last Flight <\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4062a4a elementor-widget__width-initial elementor-widget-laptop__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"4062a4a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"186\" height=\"43\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/cg-arch-e1725714942149-2.png\" class=\"attachment-full size-full wp-image-9987\" alt=\"\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">CGARCHITECT ARCHITECTURAL 3D AWARDS<\/h3><p class=\"elementor-image-box-description\">Finalist for best animated short for<br><b>The Last Flight<\/b><\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bcb4482 elementor-widget__width-initial elementor-widget-laptop__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"bcb4482\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"377\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4.png\" class=\"attachment-full size-full wp-image-9989\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4.png 1600w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-300x71.png 300w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-1024x241.png 1024w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-768x181.png 768w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-1536x362.png 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Architizer<BR>Vision Awards<\/h3><p class=\"elementor-image-box-description\"><b>Special Mention<\/b><br>Artistic Visualization <\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f0ac661 elementor-widget__width-initial elementor-widget-laptop__width-initial elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"f0ac661\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"377\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4.png\" class=\"attachment-full size-full wp-image-9989\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4.png 1600w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-300x71.png 300w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-1024x241.png 1024w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-768x181.png 768w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/VisionAwards_LogoFavicon_WHT-4-1536x362.png 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\">Architizer<BR>Vision Awards<\/h3><p class=\"elementor-image-box-description\"><b>Winner Architectural<\/b><BR>Visualizer Of The Year<\/p><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e591bc9 e-con-full e-flex e-con e-child\" data-id=\"e591bc9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9037936 elementor-widget elementor-widget-image\" data-id=\"9037936\" 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<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"1016\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/Group-67.webp\" class=\"attachment-large size-large wp-image-17422\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/Group-67.webp 612w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/08\/Group-67-181x300.webp 181w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ae2687c elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"ae2687c\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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-d6ac4f7 e-flex e-con-boxed e-con e-parent\" data-id=\"d6ac4f7\" data-element_type=\"container\" data-e-type=\"container\" id=\"ingresso\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-9902b5a e-con-full e-flex e-con e-child\" data-id=\"9902b5a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d1e3333 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"d1e3333\" 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\">Special Offer Unlocked<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ecd85b2 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"ecd85b2\" 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\">Everything you need to master D5 Render and achieve realistic renders and cinematic animations<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-da65702 e-con-full ticket-oferta e-flex e-con e-child\" data-id=\"da65702\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-da69d69 elementor-widget elementor-widget-html\" data-id=\"da69d69\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"ticket-perf\"><\/div>\n\n<div class=\"ticket-perf-corners\">\n  <span class=\"tc-tl\"><\/span>\n  <span class=\"tc-tr\"><\/span>\n  <span class=\"tc-bl\"><\/span>\n  <span class=\"tc-br\"><\/span>\n<\/div>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c90c8d4 e-con-full e-flex e-con e-child\" data-id=\"c90c8d4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab24e68 e-con-full e-flex e-con e-child\" data-id=\"ab24e68\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-08ee05f e-con-full e-flex e-con e-child\" data-id=\"08ee05f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8611c1b elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"8611c1b\" 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:\/\/link.of3dacademy.com.br\/L12-PT\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<div class=\"elementor-element elementor-element-c4600e3 elementor-align-start elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"c4600e3\" 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\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\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-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/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\">Hands-on classes with Ander Alencar and the OF3D Team<\/span>\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\">\n\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-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/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\">Bonus: downloadable project 3D model<\/span>\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\">\n\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-far-check-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 8zm0 48c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m140.204 130.267l-22.536-22.718c-4.667-4.705-12.265-4.736-16.97-.068L215.346 303.697l-59.792-60.277c-4.667-4.705-12.265-4.736-16.97-.069l-22.719 22.536c-4.705 4.667-4.736 12.265-.068 16.971l90.781 91.516c4.667 4.705 12.265 4.736 16.97.068l172.589-171.204c4.704-4.668 4.734-12.266.067-16.971z\"><\/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\">Unconditional 7-day guarantee<\/span>\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-21bde91 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"21bde91\" 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\">From <span style=\"text-decoration: red line-through !important\">$95<\/span> for just:<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-56da27c e-con-full e-flex e-con e-child\" data-id=\"56da27c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-540b737 elementor-widget elementor-widget-heading\" data-id=\"540b737\" 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\">$<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-277f667 elementor-widget elementor-widget-heading\" data-id=\"277f667\" 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\">7<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e4d42c elementor-widget elementor-widget-heading\" data-id=\"9e4d42c\" 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\">.00<\/h2>\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02f6aeb e-con-full e-flex e-con e-child\" data-id=\"02f6aeb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3070955 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"3070955\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"198\" height=\"235\" viewBox=\"0 0 198 235\" fill=\"none\"><path d=\"M63.7732 112.846L84.6055 135.166C88.5057 139.345 95.1091 139.41 99.0908 135.309L141.773 91.3457M13.7774 152.846C6.91021 129.812 11.1406 72.4838 13.0159 51.3419C13.4312 46.66 17.0972 42.9693 21.7526 42.3218C30.1272 41.1569 43.8478 38.9983 56.7732 35.8457C70.1325 32.5873 84.3412 20.8354 92.6188 13.0437C96.6846 9.21657 103.128 8.93647 107.372 12.5654C116.718 20.558 132.538 33.1602 142.273 35.8457C151.802 38.4742 166.944 40.8868 176.207 42.2322C180.9 42.9139 184.531 46.7259 184.843 51.4581C186.274 73.1405 189.542 132.188 184.273 152.846C177.769 178.346 161.289 195.007 151.781 201.346C145.719 205.387 129.094 214.641 117.84 220.818C110.772 224.697 102.438 225.516 94.8026 222.925C79.3185 217.671 53.4852 208.212 46.2812 201.346C35.7893 191.346 22.2742 181.346 13.7774 152.846Z\" stroke=\"#CD01FF\" stroke-width=\"20\" stroke-linecap=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c6653be elementor-widget__width-initial elementor-absolute elementor-widget elementor-widget-image\" data-id=\"c6653be\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"553\" height=\"473\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/glowzinho-d5.png\" class=\"attachment-large size-large wp-image-22170\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/glowzinho-d5.png 553w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/06\/glowzinho-d5-300x257.png 300w\" sizes=\"(max-width: 553px) 100vw, 553px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4cce9ee elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"4cce9ee\" 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\">\nZERO Risk<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f84f192 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"f84f192\" 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\">You have up to <b style=\"color:#fff\">7 days after purchase <\/b>to request a refund. No bureaucracy, no questions asked. Just request it on the platform.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1cb7cfe elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"1cb7cfe\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<\/div>\n\t\t<div class=\"elementor-element elementor-element-09648ec e-con-full e-flex e-con e-child\" data-id=\"09648ec\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1788414 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"1788414\" 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\"><font color=\"#CD01FF\">FAQ \n<\/font>\u2014 Frequently Asked Questions\n\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b0eed2e elementor-widget elementor-widget-n-accordion\" data-id=\"b0eed2e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1850\" class=\"e-n-accordion-item\" open>\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"true\" aria-controls=\"e-n-accordion-item-1850\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Do I need an architecture degree to work with rendering? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1850\" class=\"elementor-element elementor-element-925ce21 e-con-full e-flex e-con e-child\" data-id=\"925ce21\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1850\" class=\"elementor-element elementor-element-e730660 e-con-full e-flex e-con e-child\" data-id=\"e730660\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72339fb elementor-widget elementor-widget-text-editor\" data-id=\"72339fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>No, you don&#8217;t! The best part of the rendering market is that you don&#8217;t need a degree to work in it. What you&#8217;ll really need is above-average quality images, and D5 Accelerator exists to show you that path.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1851\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1851\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Does it work for beginners? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1851\" class=\"elementor-element elementor-element-e9dd19e e-con-full e-flex e-con e-child\" data-id=\"e9dd19e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1851\" class=\"elementor-element elementor-element-aa48e91 e-con-full e-flex e-con e-child\" data-id=\"aa48e91\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a7530f elementor-widget elementor-widget-text-editor\" data-id=\"3a7530f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Absolutely. If you&#8217;ve never touched 3D in your life, you&#8217;ll be able to learn with the most proven methodology in the market, avoiding all the struggles that people who&#8217;ve been in the market for years had to face.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1852\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1852\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Do I need a powerful computer to take part? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1852\" class=\"elementor-element elementor-element-0e3b9ca e-con-full e-flex e-con e-child\" data-id=\"0e3b9ca\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1852\" class=\"elementor-element elementor-element-7d58c1c e-con-full e-flex e-con e-child\" data-id=\"7d58c1c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a94a0d9 elementor-widget elementor-widget-text-editor\" data-id=\"a94a0d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Having a good computer helps, but it&#8217;s not required. You&#8217;ll learn techniques to optimize the use of your machine and be able to keep up with a basic computer. As you gain more skill, you can upgrade along the way.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1853\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1853\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> How long will I have access to the event? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1853\" class=\"elementor-element elementor-element-c89cb44 e-con-full e-flex e-con e-child\" data-id=\"c89cb44\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1853\" class=\"elementor-element elementor-element-d15bd49 e-con-full e-flex e-con e-child\" data-id=\"d15bd49\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-346b8fa elementor-widget elementor-widget-text-editor\" data-id=\"346b8fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The recordings will be available for up to 24 hours after the last class ends. During this period, you&#8217;ll have continuous access to all the content, giving you enough time to learn and apply the techniques taught at your own pace.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1854\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"5\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1854\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> How will I access the content? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1854\" class=\"elementor-element elementor-element-c30248b e-con-full e-flex e-con e-child\" data-id=\"c30248b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1854\" class=\"elementor-element elementor-element-93d3d40 e-con-full e-flex e-con e-child\" data-id=\"93d3d40\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57b552f elementor-widget elementor-widget-text-editor\" data-id=\"57b552f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>After completing your purchase, you&#8217;ll be redirected to the access page for the Exclusive WhatsApp Group.\u00a0<strong>It&#8217;s very important that you join the group,<\/strong>\u00a0since that&#8217;s where we&#8217;ll send all the class links and support materials.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-1855\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"6\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-1855\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What if I miss a class? Will it be recorded? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M1000.7,695.8v21.5c-8,24.4-50.7,71.5-75.7,75.7-14.7,2.5-29.7.4-42.2-7.7l-381.7-380.6L120,783.4c-28.6,18.5-52,11.2-75.9-9.4-34.5-29.6-64.4-66.7-26.4-108.6L458.4,224.8c20.1-19.1,47.7-24.4,72-9.4,156,151.7,310.4,306.1,462.2,462.1l8.1,18.3Z\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Camada_1\" viewBox=\"0 0 1000 1000\"><path d=\"M0,304.9v-21.5c8-24.4,50.7-71.5,75.7-75.7,14.7-2.5,29.7-.4,42.2,7.7l381.7,380.6,381.1-378.6c28.6-18.5,52-11.2,75.9,9.4,34.5,29.6,64.4,66.7,26.4,108.6l-440.7,440.7c-20.1,19.1-47.7,24.4-72,9.4C314.3,633.6,159.9,479.2,8.2,323.2L0,304.9Z\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1855\" class=\"elementor-element elementor-element-5c0520f e-con-full e-flex e-con e-child\" data-id=\"5c0520f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-1855\" class=\"elementor-element elementor-element-5bcfc79 e-con-full e-flex e-con e-child\" data-id=\"5bcfc79\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0a01b9e elementor-widget elementor-widget-text-editor\" data-id=\"0a01b9e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The replay will be available as soon as the class ends. We recommend watching the replay as soon as possible, so you can apply all the activities proposed during the week.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-61663b3 e-flex e-con-boxed e-con e-parent\" data-id=\"61663b3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e114176 e-con-full e-flex e-con e-child\" data-id=\"e114176\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-9c184e3 e-con-full e-flex e-con e-child\" data-id=\"9c184e3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dbddb14 elementor-widget elementor-widget-image\" data-id=\"dbddb14\" 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<img loading=\"lazy\" decoding=\"async\" width=\"317\" height=\"63\" src=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/alunos-copiar_resultado-1.webp\" class=\"attachment-full size-full wp-image-10214\" alt=\"\" srcset=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/alunos-copiar_resultado-1.webp 317w, https:\/\/of3dacademy.com\/wp-content\/uploads\/2025\/06\/alunos-copiar_resultado-1-300x60.webp 300w\" sizes=\"(max-width: 317px) 100vw, 317px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-475d760 e-con-full e-flex e-con e-child\" data-id=\"475d760\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-db0e1c8 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"db0e1c8\" 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\">15,000+ students<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa8bfc6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"aa8bfc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Join the OF3D Academy community today!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-590be85 e-con-full e-flex e-con e-child\" data-id=\"590be85\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8b5f82f elementor-align-justify elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"8b5f82f\" 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=\"#ingresso\">\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-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">I WANT MY TICKET<\/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<\/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-42355ce e-flex e-con-boxed e-con e-parent\" data-id=\"42355ce\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-da779ee elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"da779ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>All rights reserved. OF3D Academy LTDA. CNPJ: 40.679.293\/0001-08<\/p>\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-b5cbb8b e-flex e-con-boxed e-con e-parent\" data-id=\"b5cbb8b\" data-element_type=\"container\" data-e-type=\"container\" id=\"prepopulado\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-63f559e elementor-widget elementor-widget-html\" data-id=\"63f559e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\n    document.addEventListener(\"DOMContentLoaded\", function() {\n    \/\/ Fun\u00e7\u00e3o para abrir o popup\n    function openPopup() {\n        const popup = document.getElementById('prepopulado');\n        if (popup) {\n            popup.style.display = 'block';\n            popup.style.position = 'fixed';\n            popup.style.top = '0';\n            popup.style.left = '0';\n            popup.style.width = '100%';\n            popup.style.height = '100%';\n            popup.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';\n            popup.style.zIndex = '11'; \/\/ Garante que estar\u00e1 por cima de tudo\n        }\n    }\n\n    \/\/ Fun\u00e7\u00e3o para fechar o popup\n    function closePopup() {\n        const popup = document.getElementById('prepopulado');\n        if (popup) {\n            popup.style.display = 'none';\n        }\n    }\n\n    \/\/ Abrir o popup ao clicar em qualquer bot\u00e3o com a classe 'btn-subsnaluno'\n    const buttons = document.querySelectorAll('.btn-prepopulado');\n    buttons.forEach(function(button) {\n        button.addEventListener('click', function() {\n            openPopup();\n        });\n    });\n\n    \/\/ Fechar o popup ao pressionar ESC\n    document.addEventListener('keydown', function(event) {\n        if (event.key === 'Escape') {\n            closePopup();\n        }\n    });\n\n    \/\/ Fechar o popup ao clicar no bot\u00e3o com a classe 'close-popup'\n    const closeButtons = document.querySelectorAll('.close-popup');\n    closeButtons.forEach(function(closeButton) {\n        closeButton.addEventListener('click', function() {\n            closePopup();\n        });\n    });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9d28f69 e-con-full e-flex e-con e-child\" data-id=\"9d28f69\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-020667f close-popup elementor-absolute elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"020667f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 24 24\" width=\"512\" height=\"512\"><path d=\"m16.707,8.707l-3.293,3.293,3.293,3.293-1.414,1.414-3.293-3.293-3.293,3.293-1.414-1.414,3.293-3.293-3.293-3.293,1.414-1.414,3.293,3.293,3.293-3.293,1.414,1.414Zm7.293,3.293c0,6.617-5.383,12-12,12S0,18.617,0,12,5.383,0,12,0s12,5.383,12,12Zm-2,0c0-5.514-4.486-10-10-10S2,6.486,2,12s4.486,10,10,10,10-4.486,10-10Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1000a71 elementor-widget__width-initial hidden-zapform elementor-widget elementor-widget-heading\" data-id=\"1000a71\" 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\">Voc\u00ea est\u00e1 a um passo de entrar para a Semana Desbloqueando a IA<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-96aa2b0 fluentform-widget-submit-button-full-width elementor-widget__width-inherit fluent-form-widget-step-header-yes fluent-form-widget-step-progressbar-yes elementor-widget elementor-widget-fluent-form-widget\" data-id=\"96aa2b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"fluent-form-widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n            <div class=\"fluentform-widget-wrapper fluentform-widget-align-default\">\n\n            \n            <div class='fluentform ff-default fluentform_wrapper_54 ffs_default_wrap'><form data-form_id=\"54\" id=\"fluentform_54\" class=\"frm-fluent-form fluent_form_54 ff-el-form-top ff_form_instance_54_1 ff-form-loading ffs_default\" data-form_instance=\"ff_form_instance_54_1\" method=\"POST\" ><fieldset  style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;box-shadow: none!important;outline: none!important; min-inline-size: 100%;\">\n                    <legend class=\"ff_screen_reader_title\" style=\"display: block; margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;overflow:hidden;\">[PT] SEMANA DESBLOQUEANDO A IA<\/legend><input type='hidden' name='__fluent_form_embded_post_id' value='22815' \/><input type=\"hidden\" id=\"_fluentform_54_fluentformnonce\" name=\"_fluentform_54_fluentformnonce\" value=\"8539c78fc4\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/pages\/22815\" \/><div class='ff-el-group ff-el-form-hide_label'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_54_name' id='label_ff_54_name' >Digite seu primeiro nome<\/label><\/div><div class='ff-el-input--content'><input type=\"text\" name=\"name\" class=\"ff-el-form-control\" placeholder=\"Nome Completo\" data-name=\"name\" id=\"ff_54_name\"  aria-invalid=\"false\" aria-required=true><\/div><\/div><input type=\"hidden\" name=\"firstname\" data-name=\"firstname\" ><input type=\"hidden\" name=\"lastname\" data-name=\"lastname\" ><div class='ff-el-group ff-el-form-hide_label'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_54_email' id='label_ff_54_email' aria-label=\"Email\">Email<\/label><\/div><div class='ff-el-input--content'><input type=\"email\" name=\"email\" id=\"ff_54_email\" class=\"ff-el-form-control\" placeholder=\"Digite seu melhor Email\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><\/div><\/div><div class='ff-el-group ff-el-form-hide_label'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_54_phone' id='label_ff_54_phone' aria-label=\"Phone\/Mobile\">Phone\/Mobile<\/label><\/div><div class='ff-el-input--content'><input name=\"phone\" class=\"ff-el-form-control ff-el-phone ff_el_with_extended_validation\" type=\"tel\" placeholder=\"Digite seu WhatsApp com DDD\" data-name=\"phone\" id=\"ff_54_phone\" inputmode=\"tel\"  aria-invalid='false' aria-required=true><\/div><\/div><div data-name=\"ff_cn_id_1\"  class='ff-t-container ff-column-container ff_columns_total_1 '><div class='ff-t-cell ff-t-column-1' style='flex-basis: 100%;'><input type=\"hidden\" name=\"campaign_prefix\" value=\"PRECHK_3DS_MAX_RENDERCLASS\" data-name=\"campaign_prefix\" ><input type=\"hidden\" name=\"campaign_sufix\" value=\"MASTERVIZ_2054\" data-name=\"campaign_sufix\" ><input type=\"hidden\" name=\"utm_id\" value=\"\" data-name=\"utm_id\" ><input type=\"hidden\" name=\"utm_campaign\" value=\"\" data-name=\"utm_campaign\" ><input type=\"hidden\" name=\"utm_source\" value=\"\" data-name=\"utm_source\" ><input type=\"hidden\" name=\"utm_term\" value=\"\" data-name=\"utm_term\" ><input type=\"hidden\" name=\"utm_medium\" value=\"\" data-name=\"utm_medium\" ><input type=\"hidden\" name=\"utm_content\" value=\"\" data-name=\"utm_content\" ><input type=\"hidden\" name=\"fbclid\" value=\"\" data-name=\"fbclid\" ><input type=\"hidden\" name=\"gclid\" value=\"\" data-name=\"gclid\" ><input type=\"hidden\" name=\"page_url\" value=\"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/pages\/22815\" data-name=\"page_url\" ><input type=\"hidden\" name=\"custom_referer\" value=\"{custom_http_referer}\" data-name=\"custom_referer\" ><\/div><\/div><div class='ff-el-group ff-text-center ff_submit_btn_wrapper'><button type=\"submit\" class=\"ff-btn ff-btn-submit ff-btn-lg ff_btn_style\"  aria-label=\"PARTICIPAR AGORA\">PARTICIPAR AGORA<\/button><\/div><\/fieldset><\/form><div id='fluentform_54_errors' class='ff-errors-in-stack ff_form_instance_54_1 ff-form-loading_errors ff_form_instance_54_1_errors'><\/div><\/div>            <script type=\"text\/javascript\">\n                window.fluent_form_ff_form_instance_54_1 = {\"id\":\"54\",\"settings\":{\"layout\":{\"labelPlacement\":\"top\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\",\"asteriskPlacement\":\"asterisk-right\"},\"restrictions\":{\"denyEmptySubmission\":{\"enabled\":false}}},\"form_instance\":\"ff_form_instance_54_1\",\"form_id_selector\":\"fluentform_54\",\"rules\":{\"name\":{\"required\":{\"value\":true,\"message\":\"This field is required\",\"global_message\":\"Este campo \\u00e9 obrigat\\u00f3rio\",\"global\":true}},\"email\":{\"required\":{\"value\":true,\"message\":\"Est\\u00e9 campo \\u00e9 obrigat\\u00f3rio.\",\"global_message\":\"Este campo \\u00e9 obrigat\\u00f3rio\",\"global\":false},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\",\"global_message\":\"Este campo deve conter um e-mail v\\u00e1lido\",\"global\":true}},\"phone\":{\"required\":{\"value\":true,\"message\":\"Est\\u00e9 campo \\u00e9 obrigat\\u00f3rio.\",\"global\":false,\"global_message\":\"Este campo \\u00e9 obrigat\\u00f3rio\"},\"valid_phone_number\":{\"value\":true,\"message\":\"Seu n\\u00famero de telefone \\u00e9 inv\\u00e1lido.\",\"global\":false,\"global_message\":\"O n\\u00famero de telefone n\\u00e3o \\u00e9 v\\u00e1lido\"}}},\"debounce_time\":300};\n                            <\/script>\n                        <\/div>\n\n            \t\t\t\t<\/div>\n\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>From Zero to Realistic Rendering in D5 Render. In just 4 classes, you&#8217;ll reach a render so realistic it looks like an architecture photo. Even if you have never used D5 Render before. And if you already know how to render, you&#8217;ll be amazed by how fast you&#8217;ll start producing images and animations for your [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"footnotes":""},"folder":[69],"class_list":["post-22815","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>D5 Accelerator - OF3D Academy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/of3dacademy.com\/en\/d5-accelerator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"D5 Accelerator\" \/>\n<meta property=\"og:description\" content=\"From Zero to Realistic Rendering in D5 Render. In just 4 classes, you&#8217;ll reach a render so realistic it looks like an architecture photo. Even if you have never used D5 Render before. And if you already know how to render, you&#8217;ll be amazed by how fast you&#8217;ll start producing images and animations for your [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/of3dacademy.com\/en\/d5-accelerator\/\" \/>\n<meta property=\"og:site_name\" content=\"OF3D Academy\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-15T17:38:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"670\" \/>\n\t<meta property=\"og:image:height\" content=\"262\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/\",\"url\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/\",\"name\":\"D5 Accelerator - OF3D Academy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/of3dacademy.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/LOGO.webp\",\"datePublished\":\"2026-06-08T20:43:45+00:00\",\"dateModified\":\"2026-07-15T17:38:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/#primaryimage\",\"url\":\"https:\\\/\\\/of3dacademy.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/LOGO.webp\",\"contentUrl\":\"https:\\\/\\\/of3dacademy.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/LOGO.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/d5-accelerator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"D5 Accelerator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/\",\"name\":\"OF3D Academy\",\"description\":\"Render Is Cool\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/of3dacademy.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"D5 Accelerator - OF3D Academy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/","og_locale":"en_US","og_type":"article","og_title":"D5 Accelerator","og_description":"From Zero to Realistic Rendering in D5 Render. In just 4 classes, you&#8217;ll reach a render so realistic it looks like an architecture photo. Even if you have never used D5 Render before. And if you already know how to render, you&#8217;ll be amazed by how fast you&#8217;ll start producing images and animations for your [&hellip;]","og_url":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/","og_site_name":"OF3D Academy","article_modified_time":"2026-07-15T17:38:59+00:00","og_image":[{"width":670,"height":262,"url":"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/","url":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/","name":"D5 Accelerator - OF3D Academy","isPartOf":{"@id":"https:\/\/of3dacademy.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/#primaryimage"},"image":{"@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/#primaryimage"},"thumbnailUrl":"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp","datePublished":"2026-06-08T20:43:45+00:00","dateModified":"2026-07-15T17:38:59+00:00","breadcrumb":{"@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/of3dacademy.com\/en\/d5-accelerator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/#primaryimage","url":"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp","contentUrl":"https:\/\/of3dacademy.com\/wp-content\/uploads\/2026\/07\/LOGO.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/of3dacademy.com\/en\/d5-accelerator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/of3dacademy.com\/en\/"},{"@type":"ListItem","position":2,"name":"D5 Accelerator"}]},{"@type":"WebSite","@id":"https:\/\/of3dacademy.com\/en\/#website","url":"https:\/\/of3dacademy.com\/en\/","name":"OF3D Academy","description":"Render Is Cool","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/of3dacademy.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/pages\/22815","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/comments?post=22815"}],"version-history":[{"count":0,"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/pages\/22815\/revisions"}],"wp:attachment":[{"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/media?parent=22815"}],"wp:term":[{"taxonomy":"folder","embeddable":true,"href":"https:\/\/of3dacademy.com\/en\/wp-json\/wp\/v2\/folder?post=22815"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}