El Hijo del Santo: legado, luchas icónicas y última batalla
/* Filtro para el look plateado y contrastado */ filter: grayscale(100%) contrast(1.3) brightness(1.1); }
/* CAPA 1: Canvas (Rayones y manchas) */ #noir-canvas-slow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.6; }
/* CAPA 2: Grano de Película (Noise) - VELOCIDAD BAJADA */ .film-grain-slow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="https://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="1"/%3E%3C/svg%3E'); opacity: 0.12; /* Antes 0.2s, ahora 0.8s (Mucho más lento) */ animation: grain-slide 0.8s steps(4) infinite; mix-blend-mode: multiply; }
/* CAPA 3: Viñeta */ .film-vignette-slow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0) 50%, rgba(80,80,80,0.5) 100%); z-index: 2; }
/* CAPA 4: Luz de Proyector - VELOCIDAD BAJADA */ .projector-light-slow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.3); /* Antes 0.15s, ahora 3s (Respiración lenta) */ animation: flicker-slow 3s infinite alternate ease-in-out; z-index: 3; mix-blend-mode: overlay; }
/* ANIMACIONES LENTAS */ @keyframes grain-slide { 0% { transform: translate(0,0); } 100% { transform: translate(-5%, -5%); } }
@keyframes flicker-slow { 0% { opacity: 0.1; } 25% { opacity: 0.15; } 50% { opacity: 0.05; } /* Baja casi a apagado */ 75% { opacity: 0.15; } 100% { opacity: 0.2; } }
(function() { const canvas = document.getElementById('noir-canvas-slow'); const ctx = canvas.getContext('2d');
let width, height; let frameCount = 0; // Contador para ralentizar la lógica
function resize() { width = window.innerWidth; height = window.innerHeight; canvas.width = width; canvas.height = height; }
// RAYONES (SCRATCHES) LENTOS class SlowScratch { constructor() { this.init(); }
init() { this.x = Math.random() * width; this.life = 0; // Duran el triple (entre 15 y 40 frames) this.maxLife = Math.random() * 25 + 15; this.width = Math.random() * 2 + 1; this.color = `rgba(60, 60, 60, ${Math.random() * 0.4 + 0.1})`; }
update() { this.life++; // Vibración lateral muy lenta if (this.life % 4 === 0) { // Solo se mueven cada 4 frames this.x += (Math.random() - 0.5) * 2; } }
draw() { ctx.beginPath(); ctx.fillStyle = this.color; ctx.fillRect(this.x, 0, this.width, height); ctx.closePath(); } }
// PELUSAS (DUST) class SlowDust { constructor() { this.init(); }
init() { this.x = Math.random() * width; this.y = Math.random() * height; this.size = Math.random() * 3 + 1; this.life = 0; this.maxLife = Math.floor(Math.random() * 10 + 5); // Duran varios frames }
update() { this.life++; }
draw() { ctx.beginPath(); // Menos opacidad para que sean sutiles ctx.fillStyle = `rgba(50, 50, 50, ${0.4 - (this.life/this.maxLife)*0.4})`; ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2); ctx.fill(); } }
const scratches = []; const dusts = [];
// Variables de Jitter (Temblor de pantalla) let jitterX = 0; let jitterY = 0;
function animate() { // Limpieza total ctx.clearRect(0, 0, width, height);
frameCount++;
// 1. LOGICA DE VIBRACIÓN (JITTER) - MUY LENTA // Solo cambiamos la posición de vibración cada 10 frames if (frameCount % 10 === 0) { jitterX = (Math.random() - 0.5) * 2; // Movimiento pequeño (2px) jitterY = (Math.random() - 0.5) * 2; }
ctx.save(); ctx.translate(jitterX, jitterY);
// 2. CREACIÓN DE ELEMENTOS (Menos frecuente) // Crear rayón ocasionalmente (baja probabilidad) if (Math.random() 0.02) { scratches.push(new SlowScratch()); }
// Crear pelusa ocasionalmente if (Math.random() 0.05) { dusts.push(new SlowDust()); }
// 3. ACTUALIZAR Y DIBUJAR RAYONES for (let i = scratches.length - 1; i >= 0; i--) { let s = scratches[i]; s.update(); s.draw(); if (s.life > s.maxLife) scratches.splice(i, 1); }
// 4. ACTUALIZAR Y DIBUJAR PELUSAS for (let i = dusts.length - 1; i >= 0; i--) { let d = dusts[i]; d.update(); d.draw(); if (d.life > d.maxLife) dusts.splice(i, 1); }
ctx.restore();
requestAnimationFrame(animate); }
window.addEventListener('resize', resize); resize(); animate();})();
Ganó más de 50 máscaras, recorrió más de 25 países y llenó arenas donde los aficionados corearon su nombre como si fuera una oración; preservó la mística de su padre y construyó su propia leyenda que, al igual que su predecesor, trascendió los cuadriláteros, convirtiéndose en parte de la mitología popular de nuestro país
CRÉDITOS
Fuente: AFICIÓN, CMLL, ESPN | Información: KATHIA MARTÍNEZ y FERNANDO MORENO | Coordinación:ABRAHAM FLORES| Programación:JUAN NAVA |Infografía:ARTURO BLACK FONSECA
DERECHOS RESERVADOS© MILENIO DIARIO 2025
Heredó la máscara y el mito de El Santo, un ídolo nacional, enfrentando la presión de estar a su altura; sin embargo, construyó su propia trayectoria, ganándose el respeto y el cariño del público.
DEBUT
Fue el 18 de octubre de 1982 en la Arena de Toreo de Cuatro Caminos; con Ringo Mendoza como su compañero, enfrentó a Sangre Chicana y Coloso Colosetti.
ENFRENTAMIENTOSICÓNICOS
Sus luchas de máscara vs. cabellera contra El Negro Casas; los duelos sangrientos contra Espanto Jr. y Kato Kung Lee, además de sus rivalidades contra Blue Demon Jr., Silver King y Fuerza Guerrera, lo consolidaron como ícono del pancracio.
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700=swap');
/* 1. CONTENEDOR PRINCIPAL */ #santo-clean-wrapper { font-family: 'Source Serif Pro', serif; position: relative; width: 100%; max-width: 700px; height: 520px; margin: 0 auto; background: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; user-select: none; /* Evita que se seleccione el texto al arrastrar */ }
/* 2. AREA DE SCROLL */ #santo-scroll-area { width: 100%; height: 100%; overflow-x: auto; overflow-y: hidden; display: flex; align-items: center; /* Quitamos scroll-behavior smooth para que el Drag sea inmediato */ scroll-behavior: auto; /* Scroll Snap suave */ scroll-snap-type: x mandatory; scrollbar-width: none; /* Firefox */ padding: 0 50px; box-sizing: border-box; cursor: grab; /* Manita abierta */ }
/* Clase para cuando se está arrastrando */ #santo-scroll-area.active { cursor: grabbing; /* Manita cerrada */ scroll-snap-type: none; /* Desactivar snap mientras arrastras para fluidez */ }
#santo-scroll-area::-webkit-scrollbar { display: none; }
/* 3. TRACK */ .santo-track-inner { display: flex; position: relative; align-items: flex-start; padding: 40px 0; }
/* LÍNEA CONECTORA */ .santo-connector-line { position: absolute; top: 215px; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #e0e0e0, #c0c0c0, #a0a0a0, #e0e0e0); z-index: 0; border-radius: 2px; pointer-events: none; }
/* 4. TARJETA INDIVIDUAL */ .santo-clean-card { position: relative; width: 280px; margin-right: 60px; flex-shrink: 0; z-index: 1; scroll-snap-align: center; display: flex; flex-direction: column; align-items: center; }
/* IMAGEN CON ZOOM */ .santo-img-box { width: 100%; height: 180px; background: #f4f4f4; border: 1px solid #dcdcdc; overflow: hidden; margin-bottom: 25px; cursor: zoom-in; border-radius: 4px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
/* Evitar que la imagen interfiera con el arrastre del mouse */ .santo-img-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease; pointer-events: none; /* Clave para que el click pase al contenedor si arrastras */ }
.santo-img-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); border-color: #a0a0a0; }
.santo-img-box:hover img { filter: grayscale(0%); }
/* Icono lupa */ .santo-img-box::after { content: '+'; position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.8); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #333; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.santo-img-box:hover::after { opacity: 1; }
/* PUNTO */ .santo-clean-dot { width: 22px; height: 22px; background: radial-gradient(circle, #ffffff 30%, #c0c0c0 100%); border: 2px solid #a0a0a0; border-radius: 50%; margin-bottom: 20px; position: relative; z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,0.2); pointer-events: none; }
/* TEXTOS */ .santo-clean-info { text-align: center; padding: 0 5px; pointer-events: none; /* Texto no seleccionable al arrastrar */ }
.santo-clean-year { font-size: 26px; font-weight: 700; background: -webkit-linear-gradient(#888, #b0b0b0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; margin-bottom: 8px; display: block; }
.santo-clean-title { font-size: 18px; color: #222; font-weight: 600; margin: 0 0 8px 0; line-height: 1.3; }
.santo-clean-desc { font-size: 14px; color: #666; line-height: 1.5; margin: 0; }
/* LIGHTBOX */ #santo-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 99999; /* Z-index muy alto */ display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(5px); }
#santo-lightbox.active { opacity: 1; pointer-events: all; }
#santo-lightbox img { max-width: 90%; max-height: 90%; box-shadow: 0 0 50px rgba(255,255,255,0.1); border: 4px solid #fff; border-radius: 4px; transform: scale(0.9); transition: transform 0.3s ease; }
#santo-lightbox.active img { transform: scale(1); }
#santo-close-btn { position: absolute; top: 30px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; font-family: sans-serif; font-weight: 100; z-index: 100000; }
.scroll-hint { position: absolute; bottom: 10px; right: 20px; font-size: 12px; color: #bbb; pointer-events: none; opacity: 0.7; }
1984
Primer Campeonato
Ganó su primer mundial derrotando al Negro Casas en el Toreo de Cuatro Caminos.
1986
Kato Kung Lee
Primera gran hazaña: desenmascaró a Kato Kung Lee en Tijuana.
1987
Silver King
Lucha que consolidó su fama y la de su rival (Ramsés en Nacho Libre).
1988
El Cuchillo
Triunfo destacado en el famoso Toreo de Cuatro Caminos.
1988
Espanto Jr.
Luchas sangrientas en Monterrey donde finalmente le quitó la máscara.
1994
Gringos Locos
Junto a Octagón, raparon a Eddie Guerrero y Love Machine en LA.
1996
Grand Prix
Venció a The Great Sasuke en el torneo internacional del CMLL.
1997
Cabellera del Negro
Culminación de una rivalidad legendaria con el Negro Casas.
1999
Scorpio Jr.
Destapó a Scorpio Jr. en un momento cumbre de su carrera.
2025
Fuerza Guerrera
El duelo de máscara contra máscara que nunca se concretó.
Arrastra ← →
×
document.addEventListener("DOMContentLoaded", function() { const slider = document.getElementById('santo-scroll-area'); const lightbox = document.getElementById('santo-lightbox'); const lightboxImg = document.getElementById('santo-lightbox-img'); const closeBtn = document.getElementById('santo-close-btn');
// --- LOGICA DE ARRASTRE (DRAG) MEJORADA --- let isDown = false; let startX; let scrollLeft; let isDragging = false; // Diferenciar click de drag
slider.addEventListener('mousedown', (e) => { isDown = true; isDragging = false; slider.classList.add('active'); // Cambia cursor startX = e.pageX - slider.offsetLeft; scrollLeft = slider.scrollLeft; });
slider.addEventListener('mouseleave', () => { isDown = false; slider.classList.remove('active'); });
slider.addEventListener('mouseup', () => { isDown = false; slider.classList.remove('active'); // Al soltar, reactivar scroll snap si lo deseas, o dejarlo así. });
slider.addEventListener('mousemove', (e) => { if (!isDown) return; e.preventDefault(); isDragging = true; const x = e.pageX - slider.offsetLeft; const walk = (x - startX) * 1.5; // Velocidad del arrastre slider.scrollLeft = scrollLeft - walk; });
// --- LOGICA DE RUEDA DEL MOUSE (SOLO SI NO ARRASTRAS) --- slider.addEventListener("wheel", (evt) => { if(!isDown){ evt.preventDefault(); slider.scrollLeft += evt.deltaY; } });
// --- LOGICA ZOOM (Evita abrir si se estaba arrastrando) --- const triggers = document.querySelectorAll('.zoom-trigger');
// Usamos los padres (santo-img-box) para detectar el click const imgBoxes = document.querySelectorAll('.santo-img-box');
imgBoxes.forEach(box => { box.addEventListener('click', (e) => { // Si se movió el mouse (dragging), no abrir imagen if (isDragging) return;
// Buscar la imagen dentro del box const img = box.querySelector('img'); if (img) { lightboxImg.src = img.getAttribute('data-src'); lightbox.classList.add('active'); } }); });
// CERRAR LIGHTBOX closeBtn.addEventListener('click', () => { lightbox.classList.remove('active'); });
lightbox.addEventListener('click', (e) => { if(e.target !== lightboxImg) { lightbox.classList.remove('active'); } }); });
EL LEGADO
Tiene múltiples campeonatos nacionales e internacionales, además es el primer luchador en el mundo que tiene un cinturón avalado por 164 países, tras derrotar al luchador japonés Kamuy en Filipinas.
ÍCONO DELSÉPTIMO ARTE
El cine mexicano vio en el ring una fuente de historias del bien contra el mal desde los años 40, y El Hijo del Santo continuó con esa tradición con una significativa carrera, apareciendo con éxito en varias películas.
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700=swap');
/* CONTENEDOR PRINCIPAL */ #santo-movie-widget { font-family: 'Source Serif Pro', serif; position: relative; width: 100%; max-width: 700px; /* CAMBIO: Aumentado de 500px a 700px */ height: 500px; margin: 0 auto; background-color: #ffffff; overflow: hidden; border: 1px solid #e0e0e0; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-radius: 4px; }
/* PISTA DEL SLIDER */ .santo-slider-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
/* DIAPOSITIVA INDIVIDUAL */ .santo-slide { min-width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; opacity: 0.4; transform: scale(0.9); transition: all 0.5s ease; }
.santo-slide.active { opacity: 1; transform: scale(1); }
/* AREA DEL POSTER */ .santo-poster-frame { width: 220px; height: 330px; position: relative; background: #f0f0f0; box-shadow: 0 5px 15px rgba(0,0,0,0.2); border: 4px solid #fff; outline: 1px solid #c0c0c0; margin-bottom: 20px; overflow: hidden; }
.santo-poster-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
/* TEXTOS */ .santo-movie-info { text-align: center; z-index: 2; }
.santo-movie-year { font-size: 20px; font-weight: 700; letter-spacing: 1px; margin-bottom: 5px; background: linear-gradient(180deg, #999, #555);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; display: inline-block; }
.santo-movie-title { font-size: 18px; color: #333; line-height: 1.2; margin: 0; max-width: 90%; margin: 0 auto; }
/* BOTONES DE NAVEGACION */ .santo-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid #c0c0c0; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; color: #555; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.santo-nav-btn:hover { background: #f4f4f4; border-color: #888; color: #000; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.prev-btn { left: 15px; } .next-btn { right: 15px; }
.santo-nav-btn svg { width: 14px; height: 14px; fill: currentColor; }
/* Responsive Mobile */ @media (max-width: 500px) { #santo-movie-widget { height: 450px; } .santo-poster-frame { width: 180px; height: 270px; } .santo-movie-title { font-size: 16px; } }
1981
Chanoc y El Hijo del Santo contra los vampiros asesinos
1983
Frontera sin ley
1991
El poder de Omnicron
1992
La fuerza de un ídolo
1993
Santo: la leyenda del enmascarado de plata
2001
Infraterrestre
2018
El hombre detrás de la máscara
document.addEventListener("DOMContentLoaded", function() { const track = document.getElementById('santoTrack'); const slides = document.querySelectorAll('.santo-slide'); const nextBtn = document.getElementById('nextBtn'); const prevBtn = document.getElementById('prevBtn');
let currentIndex = 0; const totalSlides = slides.length;
function updateSlider() { // Mover el track track.style.transform = `translateX(-${currentIndex * 100}%)`;
// Actualizar clases active (para opacidad/escala) slides.forEach((slide, index) => { if (index === currentIndex) { slide.classList.add('active'); } else { slide.classList.remove('active'); } }); }
function goToSlide(index) { currentIndex = index; if (currentIndex 0) currentIndex = totalSlides - 1; if (currentIndex >= totalSlides) currentIndex = 0; updateSlider(); }
// Event Listeners Botones nextBtn.addEventListener('click', () => { goToSlide(currentIndex + 1); });
prevBtn.addEventListener('click', () => { goToSlide(currentIndex - 1); }); });
Santo y Mantequilla Nápoles En La Venganza De La Llorona, película donde hace su primera aparición en el cine junto a su padre, El Santo
ÚLTIMA BATALLA
El Hijo del Santo sostendrá su último combate este 13 de diciembre y con ello cerrar su etapa como luchador profesional.
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/twentytwentyfive\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } );
( function() { var skipLinkTarget = document.querySelector( 'main' ), sibling, skipLinkTargetID, skipLink;
// Early exit if a skip-link target can't be located. if ( ! skipLinkTarget ) { return; }
/* * Get the site wrapper. * The skip-link will be injected in the beginning of it. */ sibling = document.querySelector( '.wp-site-blocks' );
// Early exit if the root element was not found. if ( ! sibling ) { return; }
// Get the skip-link target's ID, and generate one if it doesn't exist. skipLinkTargetID = skipLinkTarget.id; if ( ! skipLinkTargetID ) { skipLinkTargetID = 'wp--skip-link--target'; skipLinkTarget.id = skipLinkTargetID; }
// Create the skip link. skipLink = document.createElement( 'a' ); skipLink.classList.add( 'skip-link', 'screen-reader-text' ); skipLink.id = 'wp-skip-link'; skipLink.href = '#' + skipLinkTargetID; skipLink.innerText = 'Saltar al contenido';
// Inject the skip link. sibling.parentElement.insertBefore( skipLink, sibling ); }() );
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Compartir en Facebook","shareOnTwitter":"Compartir en Twitter","pinIt":"Fijarlo","download":"Descargar","downloadImage":"Descargar imagen","fullscreen":"Pantalla completa","zoom":"Zoom","share":"Compartir","playVideo":"Reproducir video","previous":"Previo","next":"Siguiente","close":"Cerrar","a11yCarouselPrevSlideMessage":"Diapositiva anterior","a11yCarouselNextSlideMessage":"Diapositiva siguiente","a11yCarouselFirstSlideMessage":"Esta es la primera diapositiva","a11yCarouselLastSlideMessage":"Esta es la \u00faltima diapositiva","a11yCarouselPaginationBulletMessage":"Ir a la diapositiva"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"M\u00f3vil en Retrato","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"M\u00f3vil horizontal","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tableta vertical","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tableta horizontal","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Pantalla grande","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.32.5","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"nested-elements":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/3.83.189.8\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/3.83.189.8\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/3.83.189.8\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"cb38553db7"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":6331,"title":"SANTO%20%E2%80%93%20Especiales%20Milenio","excerpt":"","featuredImage":false}};
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/3.83.189.8\/wp-admin\/admin-ajax.php","nonce":"c9d21cb447","urls":{"assets":"https:\/\/3.83.189.8\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/3.83.189.8\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"es_MX","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/3.83.189.8\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};