{"id":15,"date":"2026-01-15T15:15:37","date_gmt":"2026-01-15T15:15:37","guid":{"rendered":"https:\/\/tequilagalindo.com\/?page_id=15"},"modified":"2026-04-23T09:49:48","modified_gmt":"2026-04-23T15:49:48","slug":"sobre-galindo","status":"publish","type":"page","link":"http:\/\/tequilagalindo.com\/en\/sobre-galindo\/","title":{"rendered":"About Galindo"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"15\" class=\"elementor elementor-15\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-045134d animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"045134d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6428bb0 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"6428bb0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ada5b8 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7ada5b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">HISTORY<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-05297bb elementor-widget elementor-widget-html\" data-id=\"05297bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/gsap\/3.12.2\/gsap.min.js\"><\/script>\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/gsap\/3.12.2\/ScrollTrigger.min.js\"><\/script>\n\n<style>\n    \/* Estilos de la l\u00ednea *\/\n    #galindo-timeline-svg {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        pointer-events: none;\n        z-index: 0; \n        overflow: visible;\n    }\n\n    .timeline-path {\n        fill: none;\n        stroke: #2F2F2E; \/* Nuevo Color Solicitado *\/\n        stroke-width: 3px; \/* Nuevo Grosor *\/\n        stroke-linecap: square;\n    }\n<\/style>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n    gsap.registerPlugin(ScrollTrigger);\n\n    \/\/ CONFIGURACI\u00d3N NUEVA\n    const targetIDs = [\"date1855\", \"date1915\", \"date2014\", \"date2020\"];\n    const startOffsetX = 8; \/\/ Mantenemos el ajuste de +8px que definimos antes\n    \n    \/\/ Setup del SVG\n    const body = document.body;\n    const svgNS = \"http:\/\/www.w3.org\/2000\/svg\";\n    \n    let existingSvg = document.getElementById(\"galindo-timeline-svg\");\n    if(existingSvg) existingSvg.remove();\n\n    const svg = document.createElementNS(svgNS, \"svg\");\n    svg.id = \"galindo-timeline-svg\";\n    body.appendChild(svg);\n    \n    let pathElement = document.createElementNS(svgNS, \"path\");\n    pathElement.setAttribute(\"class\", \"timeline-path\");\n    \/\/ Aplicamos estilos directamente para asegurar prioridad\n    pathElement.setAttribute(\"stroke\", \"#2F2F2E\"); \n    pathElement.setAttribute(\"stroke-width\", \"3\");\n    svg.appendChild(pathElement);\n\n    let timelineTween; \n\n    \/\/ Helper para encontrar el nodo de texto profundo (\u00fatil si el ID est\u00e1 en el contenedor padre)\n    function findTextNode(element) {\n        if (element.nodeType === Node.TEXT_NODE && element.textContent.trim().length > 0) {\n            return element;\n        }\n        for (let child of element.childNodes) {\n            const found = findTextNode(child);\n            if (found) return found;\n        }\n        return null;\n    }\n\n    \/\/ Calculadora de Centro Real\n    function getTrueElementPosition(element, isStart) {\n        \/\/ Intentamos encontrar el texto real dentro del ID para mayor precisi\u00f3n\n        \/\/ (Por si el ID fue puesto en la columna o widget y no en el H2 directo)\n        const textNode = findTextNode(element);\n        \n        let rect;\n        if (textNode) {\n            const range = document.createRange();\n            range.selectNode(textNode);\n            rect = range.getBoundingClientRect();\n        } else {\n            \/\/ Fallback al elemento completo si no hallamos texto\n            rect = element.getBoundingClientRect();\n        }\n\n        const scrollX = window.scrollX;\n        const scrollY = window.scrollY;\n\n        return {\n            x: rect.left + (rect.width \/ 2) + scrollX,\n            y: isStart ? (rect.bottom + scrollY) : (rect.top + (rect.height \/ 2) + scrollY)\n        };\n    }\n\n    function getTargetElements() {\n        const elements = [];\n        targetIDs.forEach(id => {\n            const el = document.getElementById(id);\n            if (el) elements.push(el);\n            else console.warn(`Timeline: Elemento con ID \"${id}\" no encontrado.`);\n        });\n        return elements;\n    }\n\n    function updateLayout() {\n        const elements = getTargetElements();\n        if (elements.length < 2) return;\n\n        const totalHeight = Math.max(\n            document.body.scrollHeight, document.documentElement.scrollHeight\n        );\n        svg.style.height = totalHeight + \"px\";\n\n        \/\/ CALCULO DE PUNTOS\n        let points = elements.map((el, index) => {\n            const isStart = (index === 0);\n            let pos = getTrueElementPosition(el, isStart);\n            \n            \/\/ Ajuste manual solo para el inicio\n            if (isStart) {\n                pos.x += startOffsetX; \n            }\n            \n            return pos;\n        });\n\n        \/\/ Trazado de l\u00ednea (Down -> Across -> Down)\n        let d = `M ${points[0].x} ${points[0].y}`; \n\n        for (let i = 0; i < points.length - 1; i++) {\n            const current = points[i];\n            const next = points[i + 1];\n            \n            const midY = current.y + (next.y - current.y) \/ 2;\n    \n            d += ` L ${current.x} ${midY}`; \n            d += ` L ${next.x} ${midY}`;    \n            d += ` L ${next.x} ${next.y}`;  \n        }\n        pathElement.setAttribute(\"d\", d);\n\n        \/\/ Animaci\u00f3n GSAP\n        if (timelineTween) timelineTween.kill();\n        const pathLength = pathElement.getTotalLength();\n        gsap.set(pathElement, { strokeDasharray: pathLength, strokeDashoffset: pathLength });\n\n        timelineTween = gsap.to(pathElement, {\n            strokeDashoffset: 0,\n            ease: \"none\",\n            scrollTrigger: {\n                trigger: elements[0],      \n                start: \"top 60%\",          \n                endTrigger: elements[elements.length - 1], \n                end: \"top 60%\",            \n                scrub: 1,\n            }\n        });\n    }\n\n    \/\/ Inicializaci\u00f3n y Listeners\n    setTimeout(() => {\n        updateLayout();\n        window.addEventListener('resize', updateLayout);\n        \/\/ Refresh extra por si Elementor carga contenido tarde\n        ScrollTrigger.refresh();\n    }, 1500);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7268d83 e-con-full e-flex e-con e-child\" data-id=\"7268d83\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5f772b6 e-con-full e-flex e-con e-child\" data-id=\"5f772b6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9929ff9 elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"9929ff9\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"date1855\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:600}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">1855<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9600f45 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"9600f45\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:1000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-168c179 elementor-widget elementor-widget-heading\" data-id=\"168c179\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">In the \"San Antonio\" ranch located in the Municipality of Tepatitl\u00e1n de Morelos, Jalisco, Don Justo Galindo was born, the foundational pillar of the renowned Galindo dynasty in Los Altos de Jalisco.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69ca550 elementor-widget elementor-widget-heading\" data-id=\"69ca550\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">In his youth, Don Justo moved to the \"La Esperanza\" Hacienda, where he began his foray into the cultivation of the prestigious \"Agave Azul Tequilana Weber,\" sowing the seeds of what would become his legacy. Over time, his dedication bore fruit, and he fathered two sons, Manuel and Delfino, who continued his legacy with fervor, contributing to the momentum of agave cultivation.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f87b64a e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"f87b64a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;motion_fx_mouseTrack_effect&quot;:&quot;yes&quot;,&quot;motion_fx_mouseTrack_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.200000000000000011102230246251565404236316680908203125,&quot;sizes&quot;:[]},&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1400,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:65}},&quot;motion_fx_opacity_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7603a42 elementor-widget elementor-widget-image\" data-id=\"7603a42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"586\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_-1024x750.png\" class=\"attachment-large size-large wp-image-320\" alt=\"\" srcset=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_-1024x750.png 1024w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_-300x220.png 300w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_-768x563.png 768w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_-1536x1126.png 1536w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-6@3x-80_1_.png 1572w\" 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-83a463d e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"83a463d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:400}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d1f3a1b e-con-full e-flex e-con e-child\" data-id=\"d1f3a1b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-180f5e7 elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"180f5e7\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"date1915\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">1915\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cc6996b elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"cc6996b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:800}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">In the year 1915, in collaboration with his uncle Don Cirilo Franco, they erected their distillery at the \"Garabatos\" Hacienda, located in the Municipality of Atotonilco El Alto, Jalisco, marking a transcendental milestone in the history of the Galindo-Franco family and the tequila industry.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e5f3b3f elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e5f3b3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:800}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">This event signified the orientation of the Galindo family toward agave cultivation and artisanal tequila production. Jes\u00fas Galindo Franco, heir to this century-old tradition, diligently continued the family legacy, initiating Tequila Galindo S.A. de C.V., founded by the Galindo family.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8d5c319 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"8d5c319\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:400}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-abf815f e-con-full e-flex e-con e-child\" data-id=\"abf815f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-276b062 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"276b062\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:20,&quot;end&quot;:60}},&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_direction&quot;:&quot;negative&quot;,&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:65}},&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;motion_fx_mouseTrack_effect&quot;:&quot;yes&quot;,&quot;motion_fx_mouseTrack_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.1000000000000000055511151231257827021181583404541015625,&quot;sizes&quot;:[]},&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_delay&quot;:1200,&quot;motion_fx_opacity_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14868fc elementor-widget elementor-widget-image\" data-id=\"14868fc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-38@3x-80_1_.png\" class=\"attachment-large size-large wp-image-448\" alt=\"\" srcset=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-38@3x-80_1_.png 814w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-38@3x-80_1_-300x300.png 300w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-38@3x-80_1_-150x150.png 150w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-38@3x-80_1_-768x768.png 768w\" 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<div class=\"elementor-element elementor-element-5aa92b9 e-con-full e-flex e-con e-child\" data-id=\"5aa92b9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a933165 elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a933165\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"date2014\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">2014<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9d1554b e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"9d1554b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:800}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-097b45c elementor-widget elementor-widget-heading\" data-id=\"097b45c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The company was acquired by Mr. Jorge Casillas Castellanos, a distinguished businessman originally from Capilla de Guadalupe, Jalisco, a visionary and passionate individual within the tequila industry. During his management, the company experienced notable growth at both national and international levels, generating quality employment and fostering healthy competition. This leadership led to the emergence of a new culture surrounding the consumption of this emblematic spirit, which represents an essential part of Mexican culture.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-474fea5 elementor-widget elementor-widget-heading\" data-id=\"474fea5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Mr. Jorge always maintained a clear and determined vision of elevating tequila's global presence, promoting it as an internationally renowned beverage for everyone to enjoy, always taking pride in being Mexican.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-72fdf4d e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"72fdf4d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:400}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3b13a5e e-con-full e-flex e-con e-child\" data-id=\"3b13a5e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1c39dd3 elementor-widget__width-auto elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1c39dd3\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"date2020\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">2020\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e9f7dd2 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e9f7dd2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:800}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Regrettably, Mr. Jorge passed away, leaving his legacy and vision in the hands of his family. Currently, Tequila Galindo S.A. de C.V. is led by his wife, Mrs. Martha Estela Navarro Jim\u00e9nez, who, together with her three children, has dedicated herself with great effort to perpetuating her husband's vision and goals. Mrs. Martha has worked tirelessly to keep alive the tradition of more than 150 years represented by Casa Galindo, not only as a brand but as a family, an experience, and a tequila tradition.<\/h2>\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-f9bda65 e-flex e-con-boxed e-con e-parent\" data-id=\"f9bda65\" data-element_type=\"container\" data-e-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-d23a684 elementor-widget elementor-widget-video\" data-id=\"d23a684\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/tequilagalindo.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/Captura-de-pantalla-2026-03-02-a-las-10.24.38-a.m.png&quot;,&quot;id&quot;:1106,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/03\/GALINDO-MAQUILA-sub-ingles.mov\" controls=\"\" preload=\"metadata\" controlslist=\"nodownload\" poster=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/03\/Captura-de-pantalla-2026-03-02-a-las-10.24.38-a.m.png\"><\/video>\n\t\t\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/03\/Captura-de-pantalla-2026-03-02-a-las-10.24.38-a.m.png);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Play Video\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-play-circle\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm115.7 272l-176 101c-15.8 8.8-35.7-2.5-35.7-21V152c0-18.4 19.8-29.8 35.7-21l176 107c16.4 9.2 16.4 32.9 0 42z\"><\/path><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d9a4483 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"d9a4483\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-44b2e78 e-con-full e-flex e-con e-child\" data-id=\"44b2e78\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-26dc96a elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"26dc96a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">MEET OUR\n<br>\n<b>NEW IMAGE<\/b><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-156cfda elementor-invisible elementor-widget elementor-widget-button\" data-id=\"156cfda\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:600}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"http:\/\/tequilagalindo.com\/en\/tequilas\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-right\" viewbox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">VIEW TEQUILAS<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-956422b elementor-invisible elementor-widget elementor-widget-image\" data-id=\"956422b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:1000}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"1014\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-808x1024.jpg\" class=\"attachment-large size-large wp-image-450\" alt=\"\" srcset=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-808x1024.jpg 808w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-237x300.jpg 237w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-768x973.jpg 768w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-1212x1536.jpg 1212w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-1616x2048.jpg 1616w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-40@3x-80_1_-scaled.jpg 2020w\" 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<div class=\"elementor-element elementor-element-b74d3ec e-con-full e-flex e-con e-child\" data-id=\"b74d3ec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5352a4d elementor-invisible elementor-widget elementor-widget-image\" data-id=\"5352a4d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_delay&quot;:1200}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"666\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-1024x852.jpg\" class=\"attachment-large size-large wp-image-451\" alt=\"\" srcset=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-1024x852.jpg 1024w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-300x250.jpg 300w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-768x639.jpg 768w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-1536x1278.jpg 1536w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-41@3x-80_1_-2048x1704.jpg 2048w\" 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 class=\"elementor-element elementor-element-64831bb elementor-invisible elementor-widget elementor-widget-image\" data-id=\"64831bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_delay&quot;:1300}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"368\" src=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-1024x471.jpg\" class=\"attachment-large size-large wp-image-452\" alt=\"\" srcset=\"https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-1024x471.jpg 1024w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-300x138.jpg 300w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-768x353.jpg 768w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-1536x706.jpg 1536w, https:\/\/tequilagalindo.com\/wp-content\/uploads\/2026\/01\/galindo_Recurso-42@3x-80_1_-2048x941.jpg 2048w\" 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\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>HISTORIA 1855 En el rancho &#8220;San Antonio&#8221; ubicado en el Municipio de Tepatitl\u00e1n de Morelos, Jalisco, nace Don Justo Galindo, pilar fundacional de la renombrada dinast\u00eda Galindo en los Altos de Jalisco. En su juventud, Don Justo se traslad\u00f3 a la Hacienda &#8220;La Esperanza&#8221;, donde dio inicio a su incursi\u00f3n en el cultivo del prestigioso [&hellip;]<\/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-15","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/pages\/15","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/comments?post=15"}],"version-history":[{"count":139,"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/pages\/15\/revisions"}],"predecessor-version":[{"id":2359,"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/pages\/15\/revisions\/2359"}],"wp:attachment":[{"href":"http:\/\/tequilagalindo.com\/en\/wp-json\/wp\/v2\/media?parent=15"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}