{"id":26,"date":"2024-10-15T11:37:02","date_gmt":"2024-10-15T14:37:02","guid":{"rendered":"https:\/\/webapp390257.ip-198-58-123-4.cloudezapp.io\/?page_id=26"},"modified":"2026-03-11T11:18:22","modified_gmt":"2026-03-11T14:18:22","slug":"home","status":"publish","type":"page","link":"https:\/\/koffko.com.br\/pt\/","title":{"rendered":"In\u00edcio"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"26\" class=\"elementor elementor-26\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eae6ac8 e-flex e-con-boxed e-con e-parent\" data-id=\"eae6ac8\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b91cc28 elementor-widget elementor-widget-html\" data-id=\"b91cc28\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n    \/* Estilos isolados para o Widget do Elementor *\/\r\n    .floral-header-widget {\r\n        position: relative;\r\n        width: 100%;\r\n        \/* ALTERADO: Removemos altura fixa e usamos aspect-ratio *\/\r\n        \/* Isso garante que em mobile (ex: 360px largura) a altura diminua proporcionalmente *\/\r\n        aspect-ratio: 1920 \/ 600; \r\n        background-color: #000000;\r\n        overflow: hidden;\r\n        cursor: default;\r\n    }\r\n    \r\n    .floral-header-widget canvas {\r\n        display: block;\r\n        width: 100%;\r\n        height: 100%;\r\n        \/* Garante que o canvas preencha o container sem distorcer *\/\r\n        object-fit: contain; \r\n        filter: contrast(1.1) brightness(1.0);\r\n    }\r\n<\/style>\r\n\r\n<div class=\"floral-header-widget\" id=\"floral-container\">\r\n    <canvas id=\"floral-canvas\"><\/canvas>\r\n<\/div>\r\n\r\n<script>\r\n(function() {\r\n    \/**\r\n     * The Novelist's Flowers - Elementor Header Edition\r\n     * Estrutura de Camadas:\r\n     * 1. Back (Flores Fundo)\r\n     * 2. Middle (Imagem URL)\r\n     * 3. Front (Flores Frente)\r\n     * 4. Top (Imagem URL - ex: Logo\/Menu)\r\n     *\/\r\n\r\n    \/\/ --- CONFIGURA\u00c7\u00c3O DE IMAGENS ---\r\n    \/\/ Insira os links das suas imagens do WordPress aqui entre as aspas\r\n    const MIDDLE_LAYER_URL = \"\"; \r\n    const TOP_LAYER_URL = \"https:\/\/raw.githubusercontent.com\/gbrnovais-ops\/koff\/main\/header2.png\";    \r\n\r\n    \/\/ --- VARI\u00c1VEIS GLOBAIS DO ESCOPO ---\r\n    const container = document.getElementById('floral-container');\r\n    const canvas = document.getElementById('floral-canvas');\r\n    const ctx = canvas.getContext('2d', { alpha: false });\r\n    \r\n    let branches = [];\r\n    let time = 0;\r\n    let animationFrameId;\r\n    let mouse = { x: -1000, y: -1000 };\r\n\r\n    \/\/ --- CARREGAMENTO DE IMAGENS ---\r\n    const overlayImg = new Image();\r\n    overlayImg.crossOrigin = \"Anonymous\";\r\n    if (MIDDLE_LAYER_URL) overlayImg.src = MIDDLE_LAYER_URL;\r\n\r\n    const topLayerImg = new Image();\r\n    topLayerImg.crossOrigin = \"Anonymous\";\r\n    if (TOP_LAYER_URL) topLayerImg.src = TOP_LAYER_URL;\r\n\r\n    \/\/ --- CONFIGURA\u00c7\u00d5ES ---\r\n    const CONFIG = {\r\n        resScale: 1.5, \/\/ Levemente reduzido para performance em sites\r\n        width: 1920,   \/\/ Resolu\u00e7\u00e3o interna fixa\r\n        height: 600,   \/\/ Resolu\u00e7\u00e3o interna fixa\r\n        growSpeed: 1.2,\r\n        windSpeed: 0.005, \r\n        rootDelayMs: 200,\r\n        trailOpacity: 0.15,\r\n    };\r\n\r\n    const PALETTE = {\r\n        stems: ['#556b2f', '#6b8e23', '#4f7942', '#355e3b'], \r\n        leaves: ['#4f7942', '#355e3b', '#2d4d30'], \r\n        zelkova: ['#8a0303', '#b31515', '#cf3a0a', '#d65608', '#6b1c0a', '#5e1509'], \r\n        petals: '#f0f0f0', \r\n        center: '#E2C820',  \r\n        foxtail: ['#d4c44e', '#c4b633', '#ded168']\r\n    };\r\n\r\n    const TYPE_DAISY = 'daisy';\r\n    const TYPE_FOXTAIL = 'foxtail';\r\n    const TYPE_ZELKOVA = 'zelkova';\r\n\r\n    \/\/ --- HELPERS ---\r\n    function hexToRgb(hex) {\r\n        var shorthandRegex = \/^#?([a-f\\d])([a-f\\d])([a-f\\d])$\/i;\r\n        hex = hex.replace(shorthandRegex, function(m, r, g, b) {\r\n            return r + r + g + g + b + b;\r\n        });\r\n        var result = \/^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$\/i.exec(hex);\r\n        return result ? {\r\n            r: parseInt(result[1], 16),\r\n            g: parseInt(result[2], 16),\r\n            b: parseInt(result[3], 16)\r\n        } : { r: 0, g: 0, b: 0 };\r\n    }\r\n\r\n    function getInterpolatedColor(colorVal, saturation) {\r\n        let r, g, b;\r\n        if (typeof colorVal === 'string' && colorVal.startsWith('#')) {\r\n            const rgb = hexToRgb(colorVal);\r\n            r = rgb.r; g = rgb.g; b = rgb.b;\r\n        } else if (typeof colorVal === 'string' && colorVal.startsWith('rgb')) {\r\n            const parts = colorVal.match(\/\\d+\/g);\r\n            if (parts) { r = parseInt(parts[0]); g = parseInt(parts[1]); b = parseInt(parts[2]); } \r\n            else { return colorVal; }\r\n        } else { return colorVal; }\r\n\r\n        const lum = 0.299 * r + 0.587 * g + 0.114 * b;\r\n        const finalR = Math.floor(lum * (1 - saturation) + r * saturation);\r\n        const finalG = Math.floor(lum * (1 - saturation) + g * saturation);\r\n        const finalB = Math.floor(lum * (1 - saturation) + b * saturation);\r\n\r\n        return `rgb(${finalR}, ${finalG}, ${finalB})`;\r\n    }\r\n\r\n    \/\/ Helper para desenhar imagem mantendo propor\u00e7\u00e3o (Cover)\r\n    function drawCover(ctx, img) {\r\n        if (!img.width || !img.height) return;\r\n        const canvasRatio = ctx.canvas.width \/ ctx.canvas.height;\r\n        const imgRatio = img.width \/ img.height;\r\n        \r\n        let renderW, renderH, renderX, renderY;\r\n\r\n        if (canvasRatio > imgRatio) {\r\n            renderW = ctx.canvas.width;\r\n            renderH = ctx.canvas.width \/ imgRatio;\r\n            renderX = 0;\r\n            renderY = (ctx.canvas.height - renderH) \/ 2;\r\n        } else {\r\n            renderH = ctx.canvas.height;\r\n            renderW = ctx.canvas.height * imgRatio;\r\n            renderX = (ctx.canvas.width - renderW) \/ 2;\r\n            renderY = 0;\r\n        }\r\n        ctx.drawImage(img, renderX, renderY, renderW, renderH);\r\n    }\r\n\r\n    \/\/ --- NOISE ---\r\n    const SimplexNoise = function(random) {\r\n        if (!random) random = Math.random;\r\n        this.p = new Uint8Array(256);\r\n        this.perm = new Uint8Array(512);\r\n        this.permMod12 = new Uint8Array(512);\r\n        for (let i = 0; i < 256; i++) { this.p[i] = i; }\r\n        for (let i = 0; i < 255; i++) {\r\n            let r = i + ~~(random() * (256 - i));\r\n            let tmp = this.p[i]; this.p[i] = this.p[r]; this.p[r] = tmp;\r\n        }\r\n        for (let i = 0; i < 512; i++) {\r\n            this.perm[i] = this.p[i & 255];\r\n            this.permMod12[i] = this.perm[i] % 12;\r\n        }\r\n    };\r\n    SimplexNoise.prototype.noise3D = function(xin, yin, zin) {\r\n        let permMod12 = this.permMod12; let perm = this.perm;\r\n        let F3 = 1.0 \/ 3.0; let G3 = 1.0 \/ 6.0;\r\n        let s = (xin + yin + zin) * F3;\r\n        let i = Math.floor(xin + s); let j = Math.floor(yin + s); let k = Math.floor(zin + s);\r\n        let t = (i + j + k) * G3;\r\n        let X0 = i - t; let Y0 = j - t; let Z0 = k - t;\r\n        let x0 = xin - X0; let y0 = yin - Y0; let z0 = zin - Z0;\r\n        let i1, j1, k1; let i2, j2, k2;\r\n        if (x0 >= y0) {\r\n            if (y0 >= z0) { i1 = 1; j1 = 0; k1 = 0; i2 = 1; j2 = 1; k2 = 0; }\r\n            else if (x0 >= z0) { i1 = 1; j1 = 0; k1 = 0; i2 = 1; j2 = 0; k2 = 1; }\r\n            else { i1 = 0; j1 = 0; k1 = 1; i2 = 1; j2 = 0; k2 = 1; }\r\n        } else {\r\n            if (y0 < z0) { i1 = 0; j1 = 0; k1 = 1; i2 = 0; j2 = 1; k2 = 1; }\r\n            else if (x0 < z0) { i1 = 0; j1 = 1; k1 = 0; i2 = 0; j2 = 1; k2 = 1; }\r\n            else { i1 = 0; j1 = 1; k1 = 0; i2 = 1; j2 = 1; k2 = 0; }\r\n        }\r\n        let x1 = x0 - i1 + G3; let y1 = y0 - j1 + G3; let z1 = z0 - k1 + G3;\r\n        let x2 = x0 - i2 + 2.0 * G3; let y2 = y0 - j2 + 2.0 * G3; let z2 = z0 - k2 + 2.0 * G3;\r\n        let x3 = x0 - 1.0 + 3.0 * G3; let y3 = y0 - 1.0 + 3.0 * G3; let z3 = z0 - 1.0 + 3.0 * G3;\r\n        let ii = i & 255; let jj = j & 255; let kk = k & 255;\r\n        let t0 = 0.6 - x0 * x0 - y0 * y0 - z0 * z0;\r\n        let n0 = 0.0;\r\n        if (t0 >= 0) {\r\n            t0 *= t0;\r\n            let gi0 = permMod12[ii + perm[jj + perm[kk]]];\r\n            let grad3 = [[1,1,0],[-1,1,0],[1,-1,0],[-1,-1,0],[1,0,1],[-1,0,1],[1,0,-1],[-1,0,-1],[0,1,1],[0,-1,1],[0,1,-1],[0,-1,-1]];\r\n            n0 = t0 * t0 * (grad3[gi0][0] * x0 + grad3[gi0][1] * y0 + grad3[gi0][2] * z0);\r\n        }\r\n        let t1 = 0.6 - x1 * x1 - y1 * y1 - z1 * z1;\r\n        let n1 = 0.0;\r\n        if (t1 >= 0) {\r\n            t1 *= t1;\r\n            let gi1 = permMod12[ii + i1 + perm[jj + j1 + perm[kk + k1]]];\r\n            let grad3 = [[1,1,0],[-1,1,0],[1,-1,0],[-1,-1,0],[1,0,1],[-1,0,1],[1,0,-1],[-1,0,-1],[0,1,1],[0,-1,1],[0,1,-1],[0,-1,-1]];\r\n            n1 = t1 * t1 * (grad3[gi1][0] * x1 + grad3[gi1][1] * y1 + grad3[gi1][2] * z1);\r\n        }\r\n        let t2 = 0.6 - x2 * x2 - y2 * y2 - z2 * z2;\r\n        let n2 = 0.0;\r\n        if (t2 >= 0) {\r\n            t2 *= t2;\r\n            let gi2 = permMod12[ii + i2 + perm[jj + j2 + perm[kk + k2]]];\r\n            let grad3 = [[1,1,0],[-1,1,0],[1,-1,0],[-1,-1,0],[1,0,1],[-1,0,1],[1,0,-1],[-1,0,-1],[0,1,1],[0,-1,1],[0,1,-1],[0,-1,-1]];\r\n            n2 = t2 * t2 * (grad3[gi2][0] * x2 + grad3[gi2][1] * y2 + grad3[gi2][2] * z2);\r\n        }\r\n        let t3 = 0.6 - x3 * x3 - y3 * y3 - z3 * z3;\r\n        let n3 = 0.0;\r\n        if (t3 >= 0) {\r\n            t3 *= t3;\r\n            let gi3 = permMod12[ii + 1 + perm[jj + 1 + perm[kk + 1]]];\r\n            let grad3 = [[1,1,0],[-1,1,0],[1,-1,0],[-1,-1,0],[1,0,1],[-1,0,1],[1,0,-1],[-1,0,-1],[0,1,1],[0,-1,1],[0,1,-1],[0,-1,-1]];\r\n            n3 = t3 * t3 * (grad3[gi3][0] * x3 + grad3[gi3][1] * y3 + grad3[gi3][2] * z3);\r\n        }\r\n        return 32.0 * (n0 + n1 + n2 + n3);\r\n    };\r\n\r\n    const simplex = new SimplexNoise(Math.random);\r\n    const noise3D = (x, y, z) => simplex.noise3D(x, y, z);\r\n\r\n    \/\/ --- CLASS BRANCH ---\r\n    class Branch {\r\n        constructor(x, y, angle, length, depth, parentWidth, type = null, delay = 0, layer = 'back') {\r\n            this.x = x; this.y = y;\r\n            this.targetAngle = angle; this.angle = angle;\r\n            this.length = 0; \r\n            this.targetLength = length * (0.8 + Math.random() * 0.4); \r\n            this.depth = depth;\r\n            this.baseWidth = parentWidth * 0.55; \r\n            this.width = this.baseWidth;\r\n            this.delay = delay; \r\n            this.children = []; this.spawned = false;\r\n            this.layer = layer; this.saturation = 0; \r\n            \r\n            this.curveOffset = (Math.random() - 0.5) * (this.baseWidth * 8);\r\n            this.type = type || (Math.random() > 0.4 ? TYPE_DAISY : TYPE_FOXTAIL);\r\n            \r\n            if (this.type === TYPE_ZELKOVA) {\r\n                this.color = PALETTE.zelkova[Math.floor(Math.random() * PALETTE.zelkova.length)];\r\n            } else {\r\n                this.color = PALETTE.stems[Math.floor(Math.random() * PALETTE.stems.length)];\r\n            }\r\n            \r\n            this.hasFlower = false;\r\n            if (this.type === TYPE_DAISY) {\r\n                this.hasFlower = (depth < 2 && Math.random() > 0.1) || (depth < 4 && Math.random() > 0.7);\r\n            } else if (this.type === TYPE_FOXTAIL) {\r\n                this.hasFlower = (depth === 0);\r\n            } else if (this.type === TYPE_ZELKOVA) {\r\n                this.hasFlower = true;\r\n            }\r\n\r\n            this.flowerScale = 0;\r\n            this.flowerDelay = 10 + Math.random() * 60; \r\n\r\n            if (this.hasFlower) this.initFlowerData();\r\n\r\n            this.leaves = [];\r\n            if (this.depth >= 2 && this.type === TYPE_DAISY) this.initLeaves();\r\n            \r\n            this.geo = { startX: x, startY: y, cpX: x, cpY: y, endX: x, endY: y, flowerX: x, flowerY: y, flowerRot: 0 };\r\n        }\r\n\r\n        initLeaves() {\r\n            const leafCount = 1 + Math.floor(Math.random() * 3);\r\n            for (let i = 0; i < leafCount; i++) {\r\n                this.leaves.push({\r\n                    t: 0.2 + Math.random() * 0.6, \r\n                    side: Math.random() > 0.5 ? 1 : -1, \r\n                    angleOffset: (Math.random() - 0.5) * 0.5, \r\n                    size: (8 + Math.random() * 6) * CONFIG.resScale, \r\n                    color: PALETTE.leaves[Math.floor(Math.random() * PALETTE.leaves.length)]\r\n                });\r\n            }\r\n        }\r\n\r\n        initFlowerData() {\r\n            this.flowerData = {}; \r\n            const sizeFactor = 0.6; \r\n            if (this.type === TYPE_DAISY) {\r\n                this.flowerData.petalsCount = 10 + Math.floor(Math.random() * 6);\r\n                this.flowerData.petalOffset = Math.random() * Math.PI;\r\n                this.flowerData.petalW = (8 + Math.random() * 4) * CONFIG.resScale * sizeFactor;\r\n                this.flowerData.petalH = (25 + Math.random() * 15) * CONFIG.resScale * sizeFactor;\r\n            } else if (this.type === TYPE_FOXTAIL) {\r\n                this.flowerData.foxLength = (100 + Math.random() * 50) * CONFIG.resScale * 0.7; \r\n                this.flowerData.foxColor = PALETTE.foxtail[Math.floor(Math.random() * PALETTE.foxtail.length)];\r\n                this.flowerData.foxWidth = (12 + Math.random() * 6) * CONFIG.resScale * sizeFactor;\r\n            } else if (this.type === TYPE_ZELKOVA) {\r\n                this.flowerData.leafLen = (60 + Math.random() * 30) * CONFIG.resScale;\r\n                this.flowerData.leafWid = (30 + Math.random() * 10) * CONFIG.resScale;\r\n                this.flowerData.leafColor = this.color; \r\n                this.flowerData.serrations = 8 + Math.floor(Math.random() * 4); \r\n                const bendDir = this.targetAngle > -Math.PI\/2 ? 1 : -1;\r\n                const bendAngle = (40 * Math.PI\/180) + Math.random() * (60 * Math.PI\/180);\r\n                this.flowerData.leafBend = bendDir * bendAngle;\r\n            }\r\n        }\r\n\r\n        update() {\r\n            if (this.delay > 0) { this.delay--; return; }\r\n            if (this.length < this.targetLength) {\r\n                this.length += CONFIG.growSpeed;\r\n                if (this.length > this.targetLength) this.length = this.targetLength;\r\n            }\r\n\r\n            let spawnThreshold = 0.6;\r\n            if (this.type === TYPE_FOXTAIL) spawnThreshold = 0.8;\r\n            if (this.type === TYPE_ZELKOVA) spawnThreshold = 2.0; \r\n\r\n            if (this.length > this.targetLength * spawnThreshold && !this.spawned && this.depth > 0) {\r\n                this.spawnChildren();\r\n                this.spawned = true;\r\n            }\r\n\r\n            const flowValue = noise3D(this.x * 0.001, this.y * 0.001, time * 0.005);\r\n            let windFactor = (0.02 * (8 - this.depth)); \r\n            if (this.type === TYPE_FOXTAIL) windFactor *= 0.6;\r\n            if (this.type === TYPE_ZELKOVA) windFactor *= 0.4; \r\n            const wind = (flowValue + 0.5) * windFactor; \r\n\r\n            \/\/ INTERA\u00c7\u00c3O MOUSE & COR\r\n            let mouseInfluence = 0;\r\n            let targetSaturation = 0;\r\n\r\n            if (this.length > 50) {\r\n                const dx = (this.geo.endX || this.x) - mouse.x;\r\n                const dy = (this.geo.endY || this.y) - mouse.y;\r\n                const dist = Math.sqrt(dx*dx + dy*dy);\r\n                const interactionRadius = 400 * CONFIG.resScale;\r\n\r\n                if (dist < interactionRadius) {\r\n                    let force = (interactionRadius - dist) \/ interactionRadius;\r\n                    force = force * force; \r\n                    const direction = dx > 0 ? 1 : -1;\r\n                    mouseInfluence = direction * force * 0.08; \r\n                    targetSaturation = Math.min(1, force * 2.5); \r\n                }\r\n            }\r\n\r\n            this.angle += ( (this.targetAngle + wind + mouseInfluence) - this.angle ) * 0.05;\r\n            this.saturation += (targetSaturation - this.saturation) * 0.05;\r\n\r\n            if (this.hasFlower && this.length > this.targetLength * 0.95) {\r\n                if (this.flowerDelay > 0) { this.flowerDelay--; } \r\n                else { if (this.flowerScale < 1) this.flowerScale += 0.01; }\r\n            }\r\n\r\n            const cosA = Math.cos(this.angle); const sinA = Math.sin(this.angle);\r\n            const endX = this.x + cosA * this.length; const endY = this.y + sinA * this.length;\r\n            const midX = (this.x + endX) \/ 2; const midY = (this.y + endY) \/ 2;\r\n            const cpX = midX + (-sinA * this.curveOffset); const cpY = midY + (cosA * this.curveOffset);\r\n\r\n            this.geo.startX = this.x; this.geo.startY = this.y;\r\n            this.geo.endX = endX; this.geo.endY = endY;\r\n            this.geo.cpX = cpX; this.geo.cpY = cpY;\r\n            this.geo.flowerX = endX; this.geo.flowerY = endY;\r\n            \r\n            this.children.forEach(child => { child.x = endX; child.y = endY; child.update(); });\r\n        }\r\n\r\n        draw(ctx) {\r\n            if (this.delay > 0) return;\r\n            if (this.length > 1) {\r\n                ctx.beginPath();\r\n                ctx.moveTo(this.geo.startX, this.geo.startY);\r\n                ctx.quadraticCurveTo(this.geo.cpX, this.geo.cpY, this.geo.endX, this.geo.endY);\r\n                ctx.lineCap = 'round';\r\n                ctx.strokeStyle = getInterpolatedColor(this.color, this.saturation);\r\n                const taper = Math.max(0.2, 1.0 - (this.depth * 0.1));\r\n                const currentWidth = Math.max(1, this.baseWidth * taper * (this.length \/ this.targetLength));\r\n                ctx.lineWidth = currentWidth;\r\n                ctx.stroke();\r\n            }\r\n            if (this.leaves.length > 0) this.drawLeaves(ctx);\r\n            if (this.hasFlower && this.flowerScale > 0.01) {\r\n                if (this.type === TYPE_DAISY) this.drawDaisy(ctx);\r\n                else if (this.type === TYPE_FOXTAIL) this.drawFoxtail(ctx);\r\n                else if (this.type === TYPE_ZELKOVA) this.drawZelkova(ctx);\r\n            }\r\n        }\r\n\r\n        drawLeaves(ctx) {\r\n            const t_current = this.length \/ this.targetLength;\r\n            this.leaves.forEach(leaf => {\r\n                if (t_current < leaf.t) return;\r\n                const invT = 1 - leaf.t;\r\n                const leafX = invT * invT * this.geo.startX + 2 * invT * leaf.t * this.geo.cpX + leaf.t * leaf.t * this.geo.endX;\r\n                const leafY = invT * invT * this.geo.startY + 2 * invT * leaf.t * this.geo.cpY + leaf.t * leaf.t * this.geo.endY;\r\n                \r\n                \/\/ Tangente para rota\u00e7\u00e3o\r\n                const tanX = 2 * invT * (this.geo.cpX - this.geo.startX) + 2 * leaf.t * (this.geo.endX - this.geo.cpX);\r\n                const tanY = 2 * invT * (this.geo.cpY - this.geo.startY) + 2 * leaf.t * (this.geo.endY - this.geo.cpY);\r\n                const stemAngle = Math.atan2(tanY, tanX);\r\n                const leafAngle = stemAngle + (Math.PI \/ 4 * leaf.side) + leaf.angleOffset;\r\n                const leafScale = Math.min(1, (t_current - leaf.t) * 5); \r\n\r\n                ctx.save();\r\n                ctx.translate(leafX, leafY);\r\n                ctx.rotate(leafAngle);\r\n                ctx.scale(leafScale, leafScale);\r\n                ctx.fillStyle = getInterpolatedColor(leaf.color, this.saturation);\r\n                ctx.beginPath();\r\n                ctx.moveTo(0, 0);\r\n                ctx.quadraticCurveTo(leaf.size \/ 2, -leaf.size \/ 3, leaf.size, 0);\r\n                ctx.quadraticCurveTo(leaf.size \/ 2, leaf.size \/ 3, 0, 0);\r\n                ctx.fill();\r\n                ctx.restore();\r\n            });\r\n        }\r\n\r\n        drawDaisy(ctx) {\r\n            ctx.save();\r\n            ctx.translate(this.geo.flowerX, this.geo.flowerY);\r\n            ctx.rotate(this.angle + Math.PI\/2 + (Math.sin(time * 0.02) * 0.1));\r\n            ctx.scale(this.flowerScale, this.flowerScale);\r\n            const count = this.flowerData.petalsCount;\r\n            const pW = this.flowerData.petalW; const pH = this.flowerData.petalH;\r\n            ctx.fillStyle = getInterpolatedColor(PALETTE.petals, this.saturation);\r\n            for (let i = 0; i < count; i++) {\r\n                const angle = (Math.PI * 2 \/ count) * i + this.flowerData.petalOffset;\r\n                ctx.save(); ctx.rotate(angle); ctx.beginPath();\r\n                ctx.ellipse(0, pH\/2, pW\/2, pH\/2, 0, 0, Math.PI*2);\r\n                ctx.fill(); ctx.restore();\r\n            }\r\n            ctx.beginPath();\r\n            ctx.fillStyle = getInterpolatedColor(PALETTE.center, this.saturation);\r\n            ctx.arc(0, 0, pW * 0.7, 0, Math.PI * 2); \r\n            ctx.fill();\r\n            ctx.restore();\r\n        }\r\n\r\n        drawFoxtail(ctx) {\r\n            ctx.save();\r\n            ctx.translate(this.geo.flowerX, this.geo.flowerY);\r\n            ctx.rotate(this.angle + Math.PI\/2);\r\n            ctx.scale(this.flowerScale, this.flowerScale);\r\n            const len = this.flowerData.foxLength; const width = this.flowerData.foxWidth; const steps = 60; \r\n            ctx.strokeStyle = getInterpolatedColor(this.flowerData.foxColor, this.saturation);\r\n            ctx.lineWidth = 1.5 * CONFIG.resScale;\r\n            ctx.lineCap = 'round';\r\n            for (let i = 0; i < steps; i++) {\r\n                const prog = i \/ steps; const y = -len * prog;\r\n                const w = width * (1 - prog) * (1 + Math.sin(prog * Math.PI)*0.5);\r\n                const n = noise3D(i * 0.2, this.x * 0.01, time * 0.01);\r\n                const bristles = 8;\r\n                for (let b = 0; b < bristles; b++) {\r\n                    const angle = (b \/ bristles) * Math.PI * 2 + n;\r\n                    const bx = Math.cos(angle) * w; const by = Math.sin(angle) * (w * 0.3); \r\n                    ctx.beginPath(); ctx.moveTo(0, y);\r\n                    ctx.lineTo(bx + n * 5, y + by - (Math.abs(bx)*0.5)); ctx.stroke();\r\n                }\r\n            }\r\n            ctx.restore();\r\n        }\r\n\r\n        drawZelkova(ctx) {\r\n            ctx.save();\r\n            ctx.translate(this.geo.flowerX, this.geo.flowerY);\r\n            ctx.rotate(this.angle + Math.PI\/2 + this.flowerData.leafBend);\r\n            ctx.scale(this.flowerScale, this.flowerScale);\r\n            const len = this.flowerData.leafLen; const width = this.flowerData.leafWid; const serrations = this.flowerData.serrations;\r\n            ctx.fillStyle = getInterpolatedColor(this.flowerData.leafColor, this.saturation);\r\n            ctx.beginPath(); ctx.moveTo(0, 0); \r\n            for (let i = 0; i <= serrations; i++) {\r\n                const prog = i \/ serrations; const y = -len * prog;\r\n                const baseW = width\/2 * Math.sin(prog * Math.PI);\r\n                if (i > 0 && i < serrations) {\r\n                     ctx.lineTo(baseW + width * 0.15, y); ctx.lineTo(baseW, y - (len\/serrations)*0.5); \r\n                } else { ctx.lineTo(baseW, y); }\r\n            }\r\n            ctx.lineTo(0, -len); \r\n            for (let i = serrations; i >= 0; i--) {\r\n                const prog = i \/ serrations; const y = -len * prog;\r\n                const baseW = -width\/2 * Math.sin(prog * Math.PI);\r\n                 if (i > 0 && i < serrations) {\r\n                     ctx.lineTo(baseW - width * 0.15, y); ctx.lineTo(baseW, y + (len\/serrations)*0.5); \r\n                } else { ctx.lineTo(baseW, y); }\r\n            }\r\n            ctx.closePath(); ctx.fill();\r\n            ctx.strokeStyle = \"rgba(0,0,0,0.3)\"; ctx.lineWidth = 2;\r\n            ctx.beginPath(); ctx.moveTo(0, 0); ctx.lineTo(0, -len * 0.9); ctx.stroke();\r\n            ctx.restore();\r\n        }\r\n\r\n        spawnChildren() {\r\n            const endX = this.x + Math.cos(this.angle) * this.length;\r\n            const endY = this.y + Math.sin(this.angle) * this.length;\r\n            let count = (this.depth >= 3) ? 2 : (Math.random() > 0.7 ? 2 : 1);\r\n            let angleStep = 0.5; \r\n            let startAngleOffset = (count === 3) ? -angleStep : (count === 2 ? -angleStep\/2 : (Math.random()-0.5)*0.5);\r\n\r\n            for (let i = 0; i < count; i++) {\r\n                let fixedOffset = startAngleOffset + (count > 1 ? i * angleStep : 0);\r\n                const naturalRandom = (Math.random() - 0.5) * 0.3;\r\n                const newAngle = this.angle + fixedOffset + naturalRandom;\r\n                this.children.push(new Branch(endX, endY, newAngle, this.targetLength * 0.75, this.depth - 1, this.width, this.type, 0, this.layer));\r\n            }\r\n        }\r\n    }\r\n\r\n    \/\/ --- MAIN LOGIC ---\r\n    function init() {\r\n        initInteraction();\r\n        resize();\r\n        createBouquet();\r\n        animate();\r\n    }\r\n\r\n    function initInteraction() {\r\n        const updateMouse = (clientX, clientY) => {\r\n            const rect = canvas.getBoundingClientRect();\r\n            \/\/ Calcular escala correta considerando o aspect-ratio\r\n            const scaleX = CONFIG.width \/ rect.width;\r\n            const scaleY = CONFIG.height \/ rect.height;\r\n            mouse.x = (clientX - rect.left) * scaleX;\r\n            mouse.y = (clientY - rect.top) * scaleY;\r\n        };\r\n        window.addEventListener('mousemove', (e) => updateMouse(e.clientX, e.clientY));\r\n        window.addEventListener('mouseout', () => { mouse.x = -1000; mouse.y = -1000; });\r\n    }\r\n\r\n    function createBouquet() {\r\n        branches = [];\r\n        const totalStems = 10; \r\n        let types = [];\r\n        \/\/ 70% Margaridas, 20% Foxtails, 10% Zelkova\r\n        for(let i=0; i<7; i++) types.push(TYPE_DAISY);\r\n        for(let i=0; i<2; i++) types.push(TYPE_FOXTAIL);\r\n        for(let i=0; i<1; i++) types.push(TYPE_ZELKOVA);\r\n        types.sort(() => Math.random() - 0.5);\r\n        \r\n        const staggerFrames = Math.round((CONFIG.rootDelayMs \/ 1000) * 60);\r\n        \/\/ Ponto de origem fixo no canto esquerdo (proporcional ao width do container)\r\n        \/\/ 12% da largura total\r\n        const bouquetX = CONFIG.width * 0.12; \r\n        \r\n        for(let i=0; i<totalStems; i++) {\r\n            let startDelay = i * staggerFrames;\r\n            const layer = Math.random() < 0.8 ? 'back' : 'front';\r\n            const progress = i \/ (totalStems - 1);\r\n            \r\n            \/\/ Leque de abertura suave\r\n            let angleBase = -Math.PI \/ 2 + 0.1 + (progress * 0.7);\r\n            let lengthMultiplier = 1.0 + (progress * 0.6); \r\n\r\n            const finalAngle = angleBase + (Math.random() - 0.5) * 0.15; \r\n            const targetHeight = (400 + Math.random() * 200) * lengthMultiplier; \r\n            const baseLength = targetHeight \/ 3.05;\r\n            const startX = bouquetX + (Math.random() - 0.5) * 30; \r\n\r\n            const b = new Branch(startX, CONFIG.height + 50, finalAngle, baseLength, 3, 6 * CONFIG.resScale, types[i], startDelay, layer);\r\n            branches.push(b);\r\n        }\r\n\r\n        const zelkovaCount = 8 + Math.floor(Math.random() * 3); \r\n        for(let i=0; i<zelkovaCount; i++) {\r\n            const angle = -Math.PI \/ 2 + 0.1 + (Math.random() * 1.0); \r\n            const lengthVar = (CONFIG.height \/ 8) + Math.random() * (CONFIG.height \/ 6);\r\n            const layer = Math.random() < 0.8 ? 'back' : 'front';\r\n            const startX = bouquetX + (Math.random() - 0.5) * 40; \r\n            const b = new Branch(startX, CONFIG.height + 20, angle, lengthVar, 0, 3 * CONFIG.resScale, TYPE_ZELKOVA, Math.random() * 60, layer);\r\n            branches.push(b);\r\n        }\r\n    }\r\n\r\n    function animate() {\r\n        ctx.globalCompositeOperation = 'source-over';\r\n        ctx.fillStyle = `rgba(0, 0, 0, ${CONFIG.trailOpacity})`; \r\n        ctx.fillRect(0, 0, CONFIG.width, CONFIG.height);\r\n\r\n        time++;\r\n        let allBranches = [];\r\n        const collect = (b) => { allBranches.push(b); b.children.forEach(collect); };\r\n        branches.forEach(collect);\r\n\r\n        allBranches.forEach(b => b.update());\r\n\r\n        \/\/ Desenhar Camadas\r\n        allBranches.filter(b => b.layer === 'back').forEach(b => b.draw(ctx));\r\n        \r\n        if (MIDDLE_LAYER_URL && overlayImg.complete && overlayImg.src) {\r\n            drawCover(ctx, overlayImg);\r\n        }\r\n        \r\n        allBranches.filter(b => b.layer === 'front').forEach(b => b.draw(ctx));\r\n        \r\n        if (TOP_LAYER_URL && topLayerImg.complete && topLayerImg.src) {\r\n            drawCover(ctx, topLayerImg);\r\n        }\r\n\r\n        animationFrameId = requestAnimationFrame(animate);\r\n    }\r\n\r\n    function resize() {\r\n        \/\/ Agora apenas definimos o tamanho interno FIXO\r\n        \/\/ O CSS aspect-ratio cuida do resto\r\n        canvas.width = CONFIG.width;\r\n        canvas.height = CONFIG.height;\r\n        \r\n        \/\/ Redesenha fundo inicial\r\n        ctx.fillStyle = `rgb(0,0,0)`;\r\n        ctx.fillRect(0, 0, CONFIG.width, CONFIG.height);\r\n    }\r\n\r\n    window.addEventListener('resize', resize);\r\n    \r\n    \/\/ Iniciar\r\n    init();\r\n})();\r\n<\/script>\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<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6f1900e elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6f1900e\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-de66ffb\" data-id=\"de66ffb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2be95d3 elementor-widget elementor-widget-heading\" data-id=\"2be95d3\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Curtas-metragens<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-25a6892 elementor-widget elementor-widget-jet-listing-grid\" data-id=\"25a6892\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:false,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:13,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:3,&quot;tablet&quot;:3,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-3 grid-col-tablet-3 grid-col-mobile-1 jet-listing-grid--535\" data-queried-id=\"26|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:535,&quot;posts_num&quot;:100,&quot;columns&quot;:3,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"posts\" data-listing-id=\"535\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1270\" data-post-id=\"1270\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/luna\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LUNA.jpg\" class=\"attachment-large size-large wp-image-1340\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LUNA.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LUNA-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LUNA-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">LUNA<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/luna\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-822\" data-post-id=\"822\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-hairpin\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-HAIRPIN.webp\" class=\"attachment-large size-large wp-image-823\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-HAIRPIN.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-HAIRPIN-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE HAIRPIN<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-hairpin\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-820\" data-post-id=\"820\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/stain\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STAIN.webp\" class=\"attachment-large size-large wp-image-821\" alt=\"STAIN\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STAIN.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STAIN-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">STAIN<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/stain\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-815\" data-post-id=\"815\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-lee-families\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-LEE-FAMILIES.webp\" class=\"attachment-large size-large wp-image-816\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-LEE-FAMILIES.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-LEE-FAMILIES-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE LEE FAMILIES<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-lee-families\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-813\" data-post-id=\"813\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/rest-day\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/REST-DAY.webp\" class=\"attachment-large size-large wp-image-814\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/REST-DAY.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/REST-DAY-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">REST DAY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/rest-day\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-811\" data-post-id=\"811\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/other-life\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/OTHER-LIFE.webp\" class=\"attachment-large size-large wp-image-812\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/OTHER-LIFE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/OTHER-LIFE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">OTHER LIFE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/other-life\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-809\" data-post-id=\"809\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/no-hair\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NO-HAIR.webp\" class=\"attachment-large size-large wp-image-810\" alt=\"NO HAIR\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NO-HAIR.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NO-HAIR-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">NO HAIR<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/no-hair\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-807\" data-post-id=\"807\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/my-mothers-story\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/My-Mothers-Story.webp\" class=\"attachment-large size-large wp-image-808\" alt=\"My Mothers Story\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/My-Mothers-Story.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/My-Mothers-Story-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MY MOTHERS STORY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/my-mothers-story\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-804\" data-post-id=\"804\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/my-worst-nightmare\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-WORST-NIGHTMARE.webp\" class=\"attachment-large size-large wp-image-806\" alt=\"MY WORST NIGHTMARE\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-WORST-NIGHTMARE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-WORST-NIGHTMARE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MY WORST NIGHTMARE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/my-worst-nightmare\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-802\" data-post-id=\"802\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/my-heart-is-going-to-explode\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-HEART-IS-GOING-TO-EXPLODE.webp\" class=\"attachment-large size-large wp-image-803\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-HEART-IS-GOING-TO-EXPLODE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MY-HEART-IS-GOING-TO-EXPLODE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MY HEART IS GOING TO EXPLODE!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/my-heart-is-going-to-explode\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-800\" data-post-id=\"800\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/freesize\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/FREESIZE.webp\" class=\"attachment-large size-large wp-image-801\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/FREESIZE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/FREESIZE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">FREESIZE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/freesize\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-798\" data-post-id=\"798\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/cheonwangbong-peak\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHEONWANGBONG-PEAK.webp\" class=\"attachment-large size-large wp-image-799\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHEONWANGBONG-PEAK.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHEONWANGBONG-PEAK-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">CHEONWANGBONG PEAK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/cheonwangbong-peak\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-774\" data-post-id=\"774\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/summer-vacation\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SUMMER-VACATION.webp\" class=\"attachment-large size-large wp-image-775\" alt=\"SUMMER VACATION\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SUMMER-VACATION.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SUMMER-VACATION-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">SUMMER VACATION<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/summer-vacation\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-27f9ecf elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"27f9ecf\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ed07d53\" data-id=\"ed07d53\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c2316db elementor-widget elementor-widget-text-editor\" data-id=\"c2316db\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>MOSTRA COMPETITIVA<\/p>\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-7ab7126 elementor-widget elementor-widget-heading\" data-id=\"7ab7126\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Longas-metragens<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e96533d elementor-widget elementor-widget-jet-listing-grid\" data-id=\"e96533d\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:false,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:9,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:3,&quot;tablet&quot;:3,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-3 grid-col-tablet-3 grid-col-mobile-1 jet-listing-grid--535\" data-queried-id=\"26|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:535,&quot;posts_num&quot;:100,&quot;columns&quot;:3,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"posts\" data-listing-id=\"535\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1281\" data-post-id=\"1281\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/from-you\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/from-you.jpg\" class=\"attachment-large size-large wp-image-1336\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/from-you.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/from-you-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/from-you-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">FROM YOU<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/from-you\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1277\" data-post-id=\"1277\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/junhee-from-5-to-7\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/juhee.jpg\" class=\"attachment-large size-large wp-image-1337\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/juhee.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/juhee-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/juhee-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">JUNHEE FROM 5 TO 7<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/junhee-from-5-to-7\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-784\" data-post-id=\"784\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-ripple\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-ripple.jpg\" class=\"attachment-large size-large wp-image-1338\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-ripple.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-ripple-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-ripple-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE RIPPLE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-ripple\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-782\" data-post-id=\"782\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/anemone-a-fairy-tale-for-no-kids\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/anemone-1.jpg\" class=\"attachment-large size-large wp-image-1339\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/anemone-1.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/anemone-1-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/anemone-1-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ANEMONE: A FAIRY FOR NO KIDS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/anemone-a-fairy-tale-for-no-kids\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-780\" data-post-id=\"780\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/stars-in-the-ordinary-universe\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STARS-IN-THE-ORDINARY-UNIVERSE.webp\" class=\"attachment-large size-large wp-image-781\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STARS-IN-THE-ORDINARY-UNIVERSE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/STARS-IN-THE-ORDINARY-UNIVERSE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">STARS IN THE ORDINARY UNIVERSE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/stars-in-the-ordinary-universe\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-778\" data-post-id=\"778\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-bygone-days\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-bygone-days.jpg\" class=\"attachment-large size-large wp-image-1333\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-bygone-days.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-bygone-days-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-bygone-days-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE BYGONE DAYS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-bygone-days\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-776\" data-post-id=\"776\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/rebound\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/rebound-1.jpg\" class=\"attachment-large size-large wp-image-1334\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/rebound-1.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/rebound-1-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/rebound-1-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">REBOUND<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/rebound\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-771\" data-post-id=\"771\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/a-table-for-two\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-TABLE-FOR-TWO-1.webp\" class=\"attachment-large size-large wp-image-773\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-TABLE-FOR-TWO-1.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-TABLE-FOR-TWO-1-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A TABLE FOR TWO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/a-table-for-two\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-769\" data-post-id=\"769\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/birth\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/birth-2.jpg\" class=\"attachment-large size-large wp-image-1335\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/birth-2.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/birth-2-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/birth-2-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Feature Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BIRTH<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/birth\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4cdfa70 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"4cdfa70\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-39fe784\" data-id=\"39fe784\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-98c2b5d elementor-widget elementor-widget-text-editor\" data-id=\"98c2b5d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Curtas-metragens<\/p>\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-4d8d4dd elementor-widget elementor-widget-jet-listing-grid\" data-id=\"4d8d4dd\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:false,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:27,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:3,&quot;tablet&quot;:3,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-3 grid-col-tablet-3 grid-col-mobile-1 jet-listing-grid--535\" data-queried-id=\"26|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:535,&quot;posts_num&quot;:100,&quot;columns&quot;:3,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"posts\" data-listing-id=\"535\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1284\" data-post-id=\"1284\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/i-beg-for\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"554\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/i-beg.jpg\" class=\"attachment-large size-large wp-image-1344\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/i-beg.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/i-beg-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/i-beg-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">I BEG FOR<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/i-beg-for\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1276\" data-post-id=\"1276\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/beyond\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"554\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/beyond.jpg\" class=\"attachment-large size-large wp-image-1345\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/beyond.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/beyond-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/beyond-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BEYOND<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/beyond\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1272\" data-post-id=\"1272\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/ld-yeonggils-mom\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"553\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/id.jpg\" class=\"attachment-large size-large wp-image-1341\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/id.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/id-199x300.jpg 199w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/id-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ID YEONGGILS MOM<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/ld-yeonggils-mom\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-796\" data-post-id=\"796\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/main-character-energy\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MAIN-CHARACTER-ENERGY.webp\" class=\"attachment-large size-large wp-image-797\" alt=\"MAIN CHARACTER ENERGY\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MAIN-CHARACTER-ENERGY.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MAIN-CHARACTER-ENERGY-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MAIN CHARACTER ENERGY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/main-character-energy\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-794\" data-post-id=\"794\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/50cm\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/50cm.webp\" class=\"attachment-large size-large wp-image-795\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/50cm.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/50cm-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">50CM<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/50cm\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-792\" data-post-id=\"792\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/microwave-love\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MICROWAVE-LOVE.webp\" class=\"attachment-large size-large wp-image-793\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MICROWAVE-LOVE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MICROWAVE-LOVE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MICROWAVE LOVE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/microwave-love\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-790\" data-post-id=\"790\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-nape\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-NAPE.webp\" class=\"attachment-large size-large wp-image-791\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-NAPE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-NAPE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE NAPE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-nape\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-788\" data-post-id=\"788\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/say-something\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SAY-SOMETHING.webp\" class=\"attachment-large size-large wp-image-789\" alt=\"SAY SOMETHING\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SAY-SOMETHING.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/SAY-SOMETHING-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">SAY SOMETHING<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/say-something\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-786\" data-post-id=\"786\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/mm-uh-oh-ah\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MM-UH-OH-AH.webp\" class=\"attachment-large size-large wp-image-787\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MM-UH-OH-AH.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MM-UH-OH-AH-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MM, UH, OH, AH<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/mm-uh-oh-ah\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-762\" data-post-id=\"762\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/your-regards\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/YOUR-REGARDS.webp\" class=\"attachment-large size-large wp-image-763\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/YOUR-REGARDS.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/YOUR-REGARDS-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">YOUR REGARDS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/your-regards\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-760\" data-post-id=\"760\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/with-the-memory\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"750\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/koff-short-film-with-memory.png\" class=\"attachment-large size-large wp-image-4893\" alt=\"KOFF - Short Film - WITH THE MEMORY\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/koff-short-film-with-memory.png 500w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/koff-short-film-with-memory-200x300.png 200w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/koff-short-film-with-memory-8x12.png 8w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">WITH THE MEMORY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/with-the-memory\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-758\" data-post-id=\"758\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/we-will-go-somewhere\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WE-WILL-GO-SOMEWHERE.webp\" class=\"attachment-large size-large wp-image-759\" alt=\"WE WILL GO SOMEWHERE\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WE-WILL-GO-SOMEWHERE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WE-WILL-GO-SOMEWHERE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">WE WILL GO SOMEWHERE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/we-will-go-somewhere\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-756\" data-post-id=\"756\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-order\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-ORDER.webp\" class=\"attachment-large size-large wp-image-757\" alt=\"THE ORDER\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-ORDER.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/THE-ORDER-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE ORDER<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-order\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-754\" data-post-id=\"754\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/wanna-die-wanna-kill\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WANNA-DIE-WANNA-KILL.webp\" class=\"attachment-large size-large wp-image-755\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WANNA-DIE-WANNA-KILL.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/WANNA-DIE-WANNA-KILL-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">WANNA DIE WANNA KILL<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/wanna-die-wanna-kill\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-752\" data-post-id=\"752\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/time-to-dilate\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIME-TO-DILATE.webp\" class=\"attachment-large size-large wp-image-753\" alt=\"TIME TO DILATE\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIME-TO-DILATE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIME-TO-DILATE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TIME TO DILATE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/time-to-dilate\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-750\" data-post-id=\"750\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/tiktok\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIKTOK.webp\" class=\"attachment-large size-large wp-image-751\" alt=\"TIKTOK\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIKTOK.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/TIKTOK-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TIKTOK<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/tiktok\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-747\" data-post-id=\"747\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-eternal-legacy\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"367\" height=\"548\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-eternal-legacy-1-e1732915222137.jpg\" class=\"attachment-large size-large wp-image-1343\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-eternal-legacy-1-e1732915222137.jpg 367w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-eternal-legacy-1-e1732915222137-201x300.jpg 201w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-eternal-legacy-1-e1732915222137-8x12.jpg 8w\" sizes=\"(max-width: 367px) 100vw, 367px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE ETERNAL LEGACY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-eternal-legacy\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-745\" data-post-id=\"745\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/nepal-searching-the-scent-of-hope\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NEPAL-SEARCHING-THE-SCENT-OF-HOPE.webp\" class=\"attachment-large size-large wp-image-746\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NEPAL-SEARCHING-THE-SCENT-OF-HOPE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/NEPAL-SEARCHING-THE-SCENT-OF-HOPE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">NEPAL, SEARCHING THE SCENT OF HOPE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/nepal-searching-the-scent-of-hope\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-743\" data-post-id=\"743\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/anamnese\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ANAMNESE.webp\" class=\"attachment-large size-large wp-image-744\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ANAMNESE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ANAMNESE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ANAMNESE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/anamnese\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-741\" data-post-id=\"741\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/leave-me-not\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LEAVE-ME-NOT.webp\" class=\"attachment-large size-large wp-image-742\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LEAVE-ME-NOT.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LEAVE-ME-NOT-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">LEAVE ME NOT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/leave-me-not\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-737\" data-post-id=\"737\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/is-goodness-right\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/IS-GOODNESS-RIGHT-2.webp\" class=\"attachment-large size-large wp-image-739\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/IS-GOODNESS-RIGHT-2.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/IS-GOODNESS-RIGHT-2-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">IS GOODNESS RIGHT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/is-goodness-right\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-732\" data-post-id=\"732\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/error\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ERROR.webp\" class=\"attachment-large size-large wp-image-733\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ERROR.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ERROR-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ERROR!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/error\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-724\" data-post-id=\"724\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/chamber-of-light\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHAMBER-OF-LIGHT-1.webp\" class=\"attachment-large size-large wp-image-726\" alt=\"CHAMBER OF LIGHT\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHAMBER-OF-LIGHT-1.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/CHAMBER-OF-LIGHT-1-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">CHAMBER OF LIGHT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/chamber-of-light\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-720\" data-post-id=\"720\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/bad-blood\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/BAD-BLOOD.webp\" class=\"attachment-large size-large wp-image-721\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/BAD-BLOOD.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/BAD-BLOOD-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BAD BLOOD<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/bad-blood\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-717\" data-post-id=\"717\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/all-live\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ALL-LIVE.webp\" class=\"attachment-large size-large wp-image-718\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ALL-LIVE.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/ALL-LIVE-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ALL-LIVE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/all-live\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-709\" data-post-id=\"709\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/a-messy-day\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-MESSY-DAY.webp\" class=\"attachment-large size-large wp-image-716\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-MESSY-DAY.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/A-MESSY-DAY-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A MESSY DAY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/a-messy-day\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-575\" data-post-id=\"575\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/lovers-on-friday-night\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"552\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LOVERS-ON-FRIDAY-NIGHT.webp\" class=\"attachment-large size-large wp-image-576\" alt=\"LOVERS ON FRIDAY NIGHT\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LOVERS-ON-FRIDAY-NIGHT.webp 368w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/LOVERS-ON-FRIDAY-NIGHT-200x300.webp 200w\" sizes=\"(max-width: 368px) 100vw, 368px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">LOVERS ON FRIDAY NIGHT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/lovers-on-friday-night\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ed141ed elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"ed141ed\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-986967d\" data-id=\"986967d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5b5df70 elementor-widget__width-inherit elementor-widget elementor-widget-image\" data-id=\"5b5df70\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"511\" height=\"488\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura_de_Tela_2025-07-15_as_11.55.34-removebg-preview.png\" class=\"attachment-large size-large wp-image-5323\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura_de_Tela_2025-07-15_as_11.55.34-removebg-preview.png 511w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura_de_Tela_2025-07-15_as_11.55.34-removebg-preview-300x286.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura_de_Tela_2025-07-15_as_11.55.34-removebg-preview-13x12.png 13w\" sizes=\"(max-width: 511px) 100vw, 511px\" \/>\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-06f0ad8 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"06f0ad8\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Sobre o Festival<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7321ce0 elementor-widget elementor-widget-text-editor\" data-id=\"7321ce0\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"translation-block\"><p><b>Festival de Cinema Coreano \u2013 KOFF<\/b><span style=\"font-weight: 400\"> traz ao Brasil os filmes sul-coreanos mais aclamados, al\u00e9m de produ\u00e7\u00f5es independentes, exibindo longas e curtas-metragens em diversas cidades brasileiras. As exibi\u00e7\u00f5es ocorrem em espa\u00e7os p\u00fablicos e salas de cinema sob a curadoria do cineasta, produtor e professor da ECA\/USP, Prof. Dr. Rubens Rewald.<\/span><\/p><\/p><p class=\"translation-block\"><p><span style=\"font-weight: 400\">O programa do festival inclui uma <\/span><b>Mostra N\u00e3o Competitiva<\/b><span style=\"font-weight: 400\"> com 20 filmes sul-coreanos, e uma <\/span><b>Mostra Competitiva<\/b><span style=\"font-weight: 400\"> com inscri\u00e7\u00f5es abertas para filmes da Coreia do Sul e do Brasil, em duas categorias.<\/span><\/p><\/p><p class=\"translation-block\"><p><span style=\"font-weight: 400\">O KOFF tamb\u00e9m apresenta <\/span><b>Debates Internacionais<\/b><span style=\"font-weight: 400\"> com cineastas e produtores coreanos e brasileiros em formato h\u00edbrido, <\/span><b>Oficinas de Produ\u00e7\u00e3o de V\u00eddeo<\/b><span style=\"font-weight: 400\"> em escolas p\u00fablicas, e uma <\/span><b>Noite de Homenagens e Cerim\u00f4nia de Premia\u00e7\u00e3o<\/b><span style=\"font-weight: 400\">.<\/span><\/p><\/p>\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0158587\" data-id=\"0158587\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-dc9333f elementor-widget elementor-widget-image\" data-id=\"dc9333f\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"574\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-1024x735.png\" class=\"attachment-large size-large wp-image-5322\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-1024x735.png 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-300x215.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-768x551.png 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-1536x1102.png 1536w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-2048x1469.png 2048w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-11.46.37-18x12.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2d79b73 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2d79b73\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-49e2128\" data-id=\"49e2128\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecc5f11 elementor-widget elementor-widget-heading\" data-id=\"ecc5f11\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/koffko.com.br\/pt\/programming\/\">Programa\u00e7\u00e3o<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e6b41bf elementor-widget elementor-widget-heading\" data-id=\"e6b41bf\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Piracicaba \u2013 15 a 18 de agosto<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-69927f1 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"69927f1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-75a5617 e-con-full e-flex e-con e-child\" data-id=\"75a5617\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3e49a24 elementor-widget elementor-widget-image\" data-id=\"3e49a24\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-1024x1024.webp\" class=\"attachment-large size-large wp-image-1978\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/4.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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-b97d7fe e-con-full e-flex e-con e-child\" data-id=\"b97d7fe\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c66df9 elementor-widget elementor-widget-image\" data-id=\"4c66df9\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-1024x1024.webp\" class=\"attachment-large size-large wp-image-1977\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/3.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d8bd886 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"d8bd886\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-845962c e-con-full e-flex e-con e-child\" data-id=\"845962c\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6049095 elementor-widget elementor-widget-image\" data-id=\"6049095\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-1024x1024.webp\" class=\"attachment-large size-large wp-image-1976\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/2.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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-baf2071 e-con-full e-flex e-con e-child\" data-id=\"baf2071\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2fc54c7 elementor-widget elementor-widget-image\" data-id=\"2fc54c7\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-1024x1024.webp\" class=\"attachment-large size-large wp-image-1975\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/1.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-01ebc98 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"01ebc98\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cd35448\" data-id=\"cd35448\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8e1dca8 elementor-widget elementor-widget-heading\" data-id=\"8e1dca8\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/koffko.com.br\/pt\/programming\/\">Programa\u00e7\u00e3o<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-07e3608 elementor-widget elementor-widget-heading\" data-id=\"07e3608\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">S\u00e3o Paulo \u2013 03 a 09 de outubro<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-27723a3 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"27723a3\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-69f24d4 e-con-full e-flex e-con e-child\" data-id=\"69f24d4\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2922621 elementor-widget elementor-widget-image\" data-id=\"2922621\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-1024x1024.webp\" class=\"attachment-large size-large wp-image-1983\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp2.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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-277dd66 e-con-full e-flex e-con e-child\" data-id=\"277dd66\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9c7b811 elementor-widget elementor-widget-image\" data-id=\"9c7b811\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-1024x1024.webp\" class=\"attachment-large size-large wp-image-1984\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp3.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b520e5a elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"b520e5a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4d4ce8a e-con-full e-flex e-con e-child\" data-id=\"4d4ce8a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8a60ed0 elementor-widget elementor-widget-image\" data-id=\"8a60ed0\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-1024x1024.webp\" class=\"attachment-large size-large wp-image-1985\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp4.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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-03ecbe5 e-con-full e-flex e-con e-child\" data-id=\"03ecbe5\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-01506c2 elementor-widget elementor-widget-image\" data-id=\"01506c2\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-1024x1024.webp\" class=\"attachment-large size-large wp-image-1982\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp1.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5d9378a elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"5d9378a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-561bd04 e-con-full e-flex e-con e-child\" data-id=\"561bd04\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19fc04e elementor-widget elementor-widget-image\" data-id=\"19fc04e\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-1024x1024.webp\" class=\"attachment-large size-large wp-image-1987\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp6.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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-fe522ec e-con-full e-flex e-con e-child\" data-id=\"fe522ec\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c07bbf4 elementor-widget elementor-widget-image\" data-id=\"c07bbf4\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-1024x1024.webp\" class=\"attachment-large size-large wp-image-1986\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp5.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e3eb31c elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"e3eb31c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a5fe274 e-con-full e-flex e-con e-child\" data-id=\"a5fe274\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-181f3eb elementor-widget elementor-widget-image\" data-id=\"181f3eb\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-1024x1024.webp\" class=\"attachment-large size-large wp-image-1988\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-1024x1024.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-300x300.webp 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-150x150.webp 150w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-768x768.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7-12x12.webp 12w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/01\/sp7.webp 1080w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4aa5c55 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"4aa5c55\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e0c0eb7\" data-id=\"e0c0eb7\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7b8e945 elementor-widget elementor-widget-image\" data-id=\"7b8e945\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"143\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/logo-korean-film-festival-koff-brazil.png\" class=\"attachment-large size-large wp-image-14\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/logo-korean-film-festival-koff-brazil.png 400w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/logo-korean-film-festival-koff-brazil-300x107.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\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<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-0171348 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"0171348\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5312e27\" data-id=\"5312e27\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-121b909 elementor-widget elementor-widget-image\" data-id=\"121b909\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES-683x1024.webp\" class=\"attachment-large size-large wp-image-124\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES-683x1024.webp 683w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES-200x300.webp 200w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES-768x1152.webp 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES-1024x1536.webp 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/PAST-LIVES.webp 1200w\" sizes=\"(max-width: 683px) 100vw, 683px\" \/>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8f4490d\" data-id=\"8f4490d\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1cb8032 elementor-widget elementor-widget-heading\" data-id=\"1cb8032\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Se\u00e7\u00e3o Competitiva<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fe871bd elementor-widget elementor-widget-text-editor\" data-id=\"fe871bd\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Categorias:<\/p>\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-f9a021b elementor-widget elementor-widget-text-editor\" data-id=\"f9a021b\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Longas-metragens e curtas-metragens produzidos na Coreia do Sul sobre qualquer tema;<\/p>\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-ea0deec elementor-widget elementor-widget-text-editor\" data-id=\"ea0deec\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Longas e curtas-metragens produzidos no Brasil sobre a Coreia do Sul ou a cultura coreana;<\/p>\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-ff9c38b elementor-widget elementor-widget-text-editor\" data-id=\"ff9c38b\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Longas e curtas-metragens produzidos no Brasil por brasileiros descendentes de coreanos sobre qualquer tema.<\/p>\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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-18408ae elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"18408ae\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bce55c0\" data-id=\"bce55c0\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b839843 elementor-widget elementor-widget-heading\" data-id=\"b839843\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/koffko.com.br\/pt\/news\/\">Imprensa<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4e62dfa elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-card-shadow-yes elementor-posts__hover-gradient load-more-align-center elementor-widget elementor-widget-posts\" data-id=\"4e62dfa\" data-element_type=\"widget\" data-settings=\"{&quot;pagination_type&quot;:&quot;load_more_on_click&quot;,&quot;load_more_spinner&quot;:{&quot;value&quot;:&quot;&quot;,&quot;library&quot;:&quot;&quot;},&quot;cards_columns&quot;:&quot;3&quot;,&quot;cards_columns_tablet&quot;:&quot;2&quot;,&quot;cards_columns_mobile&quot;:&quot;1&quot;,&quot;cards_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;cards_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;cards_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"posts.cards\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid\" role=\"list\">\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-6264 post type-post status-publish format-standard has-post-thumbnail hentry category-noticias category-noticias-2\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/koffko.com.br\/pt\/cinema-coreano-tem-melhor-ano-no-brasil-com-recorde-de-lancamentos\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"820\" height=\"870\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2026\/01\/FOLHA-NOTICIA.jpeg\" class=\"attachment-full size-full wp-image-6268\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2026\/01\/FOLHA-NOTICIA.jpeg 820w, https:\/\/koffko.com.br\/wp-content\/uploads\/2026\/01\/FOLHA-NOTICIA-283x300.jpeg 283w, https:\/\/koffko.com.br\/wp-content\/uploads\/2026\/01\/FOLHA-NOTICIA-768x815.jpeg 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2026\/01\/FOLHA-NOTICIA-11x12.jpeg 11w\" sizes=\"(max-width: 820px) 100vw, 820px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__badge\">Not\u00edcias<\/div>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h3 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/koffko.com.br\/pt\/cinema-coreano-tem-melhor-ano-no-brasil-com-recorde-de-lancamentos\/\" >\n\t\t\t\tCinema coreano tem melhor ano no  Brasil, com recorde de lan\u00e7amentos\t\t\t<\/a>\n\t\t<\/h3>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/koffko.com.br\/pt\/cinema-coreano-tem-melhor-ano-no-brasil-com-recorde-de-lancamentos\/\" aria-label=\"Leia mais sobre Cinema coreano tem melhor ano no  Brasil, com recorde de lan\u00e7amentos\" tabindex=\"-1\" >\n\t\t\tLeia Mais\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-6093 post type-post status-publish format-standard has-post-thumbnail hentry category-noticias\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/koffko.com.br\/pt\/festival-de-cinema-coreano-exibira-cerca-de-100-filmes-em-7-cidades-do-pais\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"1164\" height=\"953\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536.png\" class=\"attachment-full size-full wp-image-6094\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536.png 1164w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536-300x246.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536-1024x838.png 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536-768x629.png 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104536-15x12.png 15w\" sizes=\"(max-width: 1164px) 100vw, 1164px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__badge\">Not\u00edcias<\/div>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h3 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/koffko.com.br\/pt\/festival-de-cinema-coreano-exibira-cerca-de-100-filmes-em-7-cidades-do-pais\/\" >\n\t\t\t\tFestival de Cinema Coreano exibir\u00e1 cerca de 100 filmes em 7 cidades do pa\u00eds\t\t\t<\/a>\n\t\t<\/h3>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/koffko.com.br\/pt\/festival-de-cinema-coreano-exibira-cerca-de-100-filmes-em-7-cidades-do-pais\/\" aria-label=\"Leia mais sobre Festival de Cinema Coreano exibir\u00e1 cerca de 100 filmes em 7 cidades do pa\u00eds\" tabindex=\"-1\" >\n\t\t\tLeia Mais\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-6090 post type-post status-publish format-standard has-post-thumbnail hentry category-noticias\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/koffko.com.br\/pt\/koff-2025-chega-a-sao-paulo-trazendo-filmes-com-hyun-bin-kang-ha-neul-e-mais\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"1903\" height=\"925\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119.png\" class=\"attachment-full size-full wp-image-6091\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119.png 1903w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119-300x146.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119-1024x498.png 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119-768x373.png 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119-1536x747.png 1536w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/Captura-de-tela-2025-09-24-104119-18x9.png 18w\" sizes=\"(max-width: 1903px) 100vw, 1903px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__badge\">Not\u00edcias<\/div>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h3 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/koffko.com.br\/pt\/koff-2025-chega-a-sao-paulo-trazendo-filmes-com-hyun-bin-kang-ha-neul-e-mais\/\" >\n\t\t\t\tKOFF 2025 chega a S\u00e3o Paulo trazendo filmes com Hyun Bin, Kang Ha-neul e mais\t\t\t<\/a>\n\t\t<\/h3>\n\t\t\n\t\t<a class=\"elementor-post__read-more\" href=\"https:\/\/koffko.com.br\/pt\/koff-2025-chega-a-sao-paulo-trazendo-filmes-com-hyun-bin-kang-ha-neul-e-mais\/\" aria-label=\"Leia mais sobre KOFF 2025 chega a S\u00e3o Paulo trazendo filmes com Hyun Bin, Kang Ha-neul e mais\" tabindex=\"-1\" >\n\t\t\tLeia Mais\t\t<\/a>\n\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t<div class=\"e-load-more-anchor\" data-page=\"1\" data-max-page=\"46\" data-next-page=\"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/pages\/26\/page\/2\/\"><\/div>\n\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t<a class=\"elementor-button elementor-size-sm\" role=\"button\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Load More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t<div class=\"e-load-more-message\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-4e1f780 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"4e1f780\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f749500\" data-id=\"f749500\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-edf8cca elementor-widget elementor-widget-heading\" data-id=\"edf8cca\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/koffko.com.br\/pt\/koff-2023\/\">Arquivo 2023<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36d8402 elementor-widget elementor-widget-jet-listing-grid\" data-id=\"36d8402\" data-element_type=\"widget\" data-settings=\"{&quot;columns&quot;:&quot;3&quot;,&quot;columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"jet-listing-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing-grid jet-listing\"><div class=\"jet-listing-grid__slider\" data-slider_options=\"{&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:false,&quot;pauseOnHover&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:false,&quot;slidesToScroll&quot;:1,&quot;prevArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon prev-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Previous\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;nextArrow&quot;:&quot;\\u003Cdiv class=\\u0027jet-listing-grid__slider-icon next-arrow \\u0027 role=\\u0027button\\u0027 aria-label=\\u0027Next\\u0027\\u003E\\u003Csvg width=\\u0027180\\u0027 height=\\u0027180\\u0027 viewBox=\\u00270 0 180 180\\u0027 fill=\\u0027none\\u0027 xmlns=\\u0027http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\u0027\\u003E\\u003Cpath d=\\u0027M119 47.3166C119 48.185 118.668 48.9532 118.003 49.6212L78.8385 89L118.003 128.379C118.668 129.047 119 129.815 119 130.683C119 131.552 118.668 132.32 118.003 132.988L113.021 137.998C112.356 138.666 111.592 139 110.729 139C109.865 139 109.101 138.666 108.436 137.998L61.9966 91.3046C61.3322 90.6366 61 89.8684 61 89C61 88.1316 61.3322 87.3634 61.9966 86.6954L108.436 40.002C109.101 39.334 109.865 39 110.729 39C111.592 39 112.356 39.334 113.021 40.002L118.003 45.012C118.668 45.68 119 46.4482 119 47.3166Z\\u0027 fill=\\u0027black\\u0027\\\/\\u003E\\u003C\\\/svg\\u003E\\u003C\\\/div\\u003E&quot;,&quot;rtl&quot;:false,&quot;itemsCount&quot;:3,&quot;fade&quot;:false,&quot;slidesToShow&quot;:{&quot;desktop&quot;:3,&quot;tablet&quot;:3,&quot;mobile&quot;:1}}\" dir=\"ltr\"><div class=\"jet-listing-grid__items grid-col-desk-3 grid-col-tablet-3 grid-col-mobile-1 jet-listing-grid--535\" data-queried-id=\"26|WP_Post\" data-nav=\"{&quot;enabled&quot;:false,&quot;type&quot;:null,&quot;more_el&quot;:null,&quot;query&quot;:[],&quot;widget_settings&quot;:{&quot;lisitng_id&quot;:535,&quot;posts_num&quot;:100,&quot;columns&quot;:3,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:1,&quot;column_min_width&quot;:240,&quot;column_min_width_tablet&quot;:240,&quot;column_min_width_mobile&quot;:240,&quot;inline_columns_css&quot;:false,&quot;is_archive_template&quot;:&quot;&quot;,&quot;post_status&quot;:[&quot;publish&quot;],&quot;use_random_posts_num&quot;:&quot;&quot;,&quot;max_posts_num&quot;:9,&quot;not_found_message&quot;:&quot;No data was found&quot;,&quot;is_masonry&quot;:false,&quot;equal_columns_height&quot;:&quot;&quot;,&quot;use_load_more&quot;:&quot;&quot;,&quot;load_more_id&quot;:&quot;&quot;,&quot;load_more_type&quot;:&quot;click&quot;,&quot;load_more_offset&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;use_custom_post_types&quot;:&quot;&quot;,&quot;custom_post_types&quot;:[],&quot;hide_widget_if&quot;:&quot;&quot;,&quot;carousel_enabled&quot;:&quot;yes&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;arrows&quot;:&quot;true&quot;,&quot;arrow_icon&quot;:&quot;fa fa-angle-left&quot;,&quot;dots&quot;:&quot;&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;pause_on_hover&quot;:&quot;true&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;true&quot;,&quot;center_mode&quot;:&quot;&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500,&quot;inject_alternative_items&quot;:&quot;&quot;,&quot;injection_items&quot;:[],&quot;scroll_slider_enabled&quot;:&quot;&quot;,&quot;scroll_slider_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;custom_query&quot;:false,&quot;custom_query_id&quot;:&quot;&quot;,&quot;_element_id&quot;:&quot;&quot;,&quot;collapse_first_last_gap&quot;:false,&quot;list_tag_selection&quot;:&quot;&quot;,&quot;list_items_wrapper_tag&quot;:&quot;div&quot;,&quot;list_item_tag&quot;:&quot;div&quot;,&quot;empty_items_wrapper_tag&quot;:&quot;div&quot;}}\" data-page=\"1\" data-pages=\"1\" data-listing-source=\"posts\" data-listing-id=\"535\" data-query-id=\"\"><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1221\" data-post-id=\"1221\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/the-nap\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"373\" height=\"528\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-nap-1.jpg\" class=\"attachment-large size-large wp-image-1347\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-nap-1.jpg 373w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-nap-1-212x300.jpg 212w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/the-nap-1-8x12.jpg 8w\" sizes=\"(max-width: 373px) 100vw, 373px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THE NAP<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/the-nap\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1217\" data-post-id=\"1217\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/against-the-tides\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"724\" height=\"1024\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-724x1024.jpg\" class=\"attachment-large size-large wp-image-1218\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-724x1024.jpg 724w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-212x300.jpg 212w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-768x1086.jpg 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-1086x1536.jpg 1086w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES-8x12.jpg 8w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/AGAINST-THE-TIDES.jpg 1448w\" sizes=\"(max-width: 724px) 100vw, 724px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">AGAINST THE TIDES<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/against-the-tides\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><div class=\"jet-listing-grid__item jet-listing-dynamic-post-1209\" data-post-id=\"1209\"  ><div class=\"jet-engine-listing-overlay-wrap\" data-url=\"https:\/\/koffko.com.br\/pt\/filmes\/mint-condition\/\">\t\t<div data-elementor-type=\"jet-listing-items\" data-elementor-id=\"535\" class=\"elementor elementor-535\" data-elementor-post-type=\"jet-engine\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc42388 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"cc42388\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ec187c9\" data-id=\"ec187c9\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecd3191 elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"ecd3191\" data-element_type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"724\" height=\"1024\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-724x1024.jpg\" class=\"attachment-large size-large wp-image-1210\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-724x1024.jpg 724w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-212x300.jpg 212w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-768x1086.jpg 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-1086x1536.jpg 1086w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1-8x12.jpg 8w, https:\/\/koffko.com.br\/wp-content\/uploads\/2024\/10\/MINT-CONDITION1.jpg 1448w\" sizes=\"(max-width: 724px) 100vw, 724px\" \/>\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-759933d elementor-widget elementor-widget-jet-listing-dynamic-field\" data-id=\"759933d\" data-element_type=\"widget\" data-widget_type=\"jet-listing-dynamic-field.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"jet-listing jet-listing-dynamic-field display-inline\"><div class=\"jet-listing-dynamic-field__inline-wrap\"><div class=\"jet-listing-dynamic-field__content\">Short Film<\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d5da33 elementor-widget elementor-widget-heading\" data-id=\"0d5da33\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MINT CONDITION<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t<a href=\"https:\/\/koffko.com.br\/pt\/filmes\/mint-condition\/\" class=\"jet-engine-listing-overlay-link\"><\/a><\/div><\/div><\/div><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-11674c8 elementor-section-full_width elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-height-default\" data-id=\"11674c8\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-387b50b\" data-id=\"387b50b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-99b435e elementor-widget elementor-widget-image\" data-id=\"99b435e\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1844\" height=\"352\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1.png\" class=\"attachment-full size-full wp-image-5360\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1.png 1844w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1-300x57.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1-1024x195.png 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1-768x147.png 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1-1536x293.png 1536w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/logos-1-18x3.png 18w\" sizes=\"(max-width: 1844px) 100vw, 1844px\" \/>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cdd8a7b elementor-section-full_width elementor-hidden-desktop elementor-section-height-default elementor-section-height-default\" data-id=\"cdd8a7b\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bc02e73\" data-id=\"bc02e73\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b0a4898 elementor-widget elementor-widget-image\" data-id=\"b0a4898\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"952\" height=\"578\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-13.02.24.png\" class=\"attachment-full size-full wp-image-5371\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-13.02.24.png 952w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-13.02.24-300x182.png 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-13.02.24-768x466.png 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/07\/Captura-de-Tela-2025-07-15-as-13.02.24-18x12.png 18w\" sizes=\"(max-width: 952px) 100vw, 952px\" \/>\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\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-b4cdd88 e-grid e-con-boxed e-con e-parent\" data-id=\"b4cdd88\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4667284 elementor-widget elementor-widget-image\" data-id=\"4667284\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1201\" height=\"201\" src=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13.jpg\" class=\"attachment-2048x2048 size-2048x2048 wp-image-5838\" alt=\"\" srcset=\"https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13.jpg 1201w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13-300x50.jpg 300w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13-1024x171.jpg 1024w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13-768x129.jpg 768w, https:\/\/koffko.com.br\/wp-content\/uploads\/2025\/09\/regua-logos-13-18x3.jpg 18w\" sizes=\"(max-width: 1201px) 100vw, 1201px\" \/>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Short Films Short Film Short Film Short Film Short Film Short Film Short Film Short Film Short Film Short Film Short Film Short Film Short<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-26","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/pages\/26","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/comments?post=26"}],"version-history":[{"count":535,"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/pages\/26\/revisions"}],"predecessor-version":[{"id":6287,"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/pages\/26\/revisions\/6287"}],"wp:attachment":[{"href":"https:\/\/koffko.com.br\/pt\/wp-json\/wp\/v2\/media?parent=26"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}