Compare commits

..

No commits in common. "main" and "hebrewTranslation" have entirely different histories.

310 changed files with 764 additions and 50253 deletions

3
.gitignore vendored
View File

@ -25,6 +25,3 @@ pnpm-debug.log*
/generated/prisma /generated/prisma
prisma/*.db prisma/*.db
prisma/dev.db prisma/dev.db
# opencode - agentes y scripts locales (no subir a producción)
opencode/

View File

@ -7,7 +7,6 @@ import icon from "astro-icon";
import node from "@astrojs/node"; import node from "@astrojs/node";
import vue from "@astrojs/vue"; import vue from "@astrojs/vue";
import react from "@astrojs/react";
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
@ -17,10 +16,10 @@ export default defineConfig({
site: "https://centrodelreinodepazyjusticia.com/", site: "https://centrodelreinodepazyjusticia.com/",
//base: '/mockup/', //base: '/mockup/',
integrations: [markdoc(), icon(), vue(), react()], integrations: [markdoc(), icon(), vue()],
i18n: { i18n: {
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw"], locales: ["es", "en", "fr", "he", "uk", "pt-br"],
defaultLocale: "es", defaultLocale: "es",
}, },

19946
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "tinacms dev -c \"astro dev\"", "dev": "astro dev",
"build": "astro build", "build": "astro build",
"preview": "astro preview", "preview": "astro preview",
"astro": "astro" "astro": "astro"
@ -11,7 +11,6 @@
"dependencies": { "dependencies": {
"@astrojs/markdoc": "^0.15.10", "@astrojs/markdoc": "^0.15.10",
"@astrojs/node": "^9.5.3", "@astrojs/node": "^9.5.3",
"@astrojs/react": "^5.0.3",
"@astrojs/vue": "^5.1.4", "@astrojs/vue": "^5.1.4",
"@coreui/icons": "^3.0.1", "@coreui/icons": "^3.0.1",
"@dotenvx/dotenvx": "^1.52.0", "@dotenvx/dotenvx": "^1.52.0",
@ -31,13 +30,9 @@
"dayjs": "^1.11.19", "dayjs": "^1.11.19",
"googleapis": "^171.4.0", "googleapis": "^171.4.0",
"prisma": "^6.19.2", "prisma": "^6.19.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"swiper": "^12.1.0", "swiper": "^12.1.0",
"tailwindcss": "^4.1.18", "tailwindcss": "^4.1.18",
"vue": "^3.5.28", "vue": "^3.5.28"
"@tinacms/cli": "^2.2.2",
"tinacms": "^2.2.2"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/typography": "^0.5.19", "@tailwindcss/typography": "^0.5.19",

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +0,0 @@
allowBuilds:
'@prisma/client': true
'@prisma/engines': true
better-sqlite3: true
core-js: true
esbuild: true
prisma: true
protobufjs: true
sharp: true

View File

@ -1,2 +0,0 @@
index.html
assets/

View File

@ -1,17 +1,15 @@
--- ---
import { ClientRouter } from "astro:transitions"; import { ClientRouter } from "astro:transitions";
import { GoogleAnalytics } from "astro-google-analytics"; import { GoogleAnalytics } from 'astro-google-analytics';
const { const {
title = "Centro del Reino de Paz y Justicia", title = "Centro del Reino de Paz y Justicia",
description = "", description = "",
image = null, image = null,
url = null, url = null,
date = null,
} = Astro.props; } = Astro.props;
const imageUrl = image ? new URL(image, Astro.site).toString() : null; const imageUrl = image ? new URL(image, Astro.site).toString() : null;
const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
--- ---
<head> <head>
@ -32,28 +30,10 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<meta property="og:type" content="article" /> <meta property="og:type" content="article" />
<meta property="og:title" content={title} /> <meta property="og:title" content={title} />
<meta property="og:description" content={description} /> <meta property="og:description" content={description} />
<link rel="canonical" href={canonicalURL} />
<meta name="telegram:channel" content="@CentroRPJ" />
{imageUrl && <meta property="og:image" content={imageUrl} />} {imageUrl && <meta property="og:image" content={imageUrl} />}
<meta property="og:image:width" content="1200" /> <meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630" /> <meta property="og:image:height" content="630">
{
date && (
<meta
property="article:published_time"
content={
date instanceof Date
? `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(
2,
"0"
)}-${String(date.getDate()).padStart(2, "0")}`
: date
}
/>
)
}
<!-- Twitter --> <!-- Twitter -->
@ -62,5 +42,6 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<meta name="twitter:description" content={description} /> <meta name="twitter:description" content={description} />
{imageUrl && <meta name="twitter:image" content={imageUrl} />} {imageUrl && <meta name="twitter:image" content={imageUrl} />}
{url && <meta name="twitter:url" content={url} />} {url && <meta name="twitter:url" content={url} />}
</head> </head>
<ClientRouter /> <ClientRouter />

View File

@ -2,58 +2,9 @@
import Button from "./ui/Button.astro"; import Button from "./ui/Button.astro";
import { Icon } from "astro-icon/components"; import { Icon } from "astro-icon/components";
import { getCollection } from "astro:content"; import { createTranslator } from "../i18n/index.ts";
import { createTranslator, routeTranslations } from "../i18n/index.ts";
const allNews = await getCollection("news");
const tl = createTranslator(Astro.currentLocale); const tl = createTranslator(Astro.currentLocale);
const currentLocale = Astro.currentLocale; const currentLocale = Astro.currentLocale;
const currentPath = Astro.url.pathname;
function translatePath(newLocale: string) {
const segments = currentPath.split('/').filter(Boolean);
if (segments.length === 0) return `/${newLocale}`;
const remainingSegments = segments.slice(1);
const newsRouteNames = Object.values(routeTranslations.news);
const translatedSegments = remainingSegments.map(segment => {
for (const key in routeTranslations) {
const translations = routeTranslations[key as keyof typeof routeTranslations];
if (Object.values(translations).includes(segment)) {
return translations[newLocale as keyof typeof translations] || segment;
}
}
return segment;
});
// Lógica para noticias
if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
const isDetail = segments.length >= 3;
if (isDetail) {
const currentId = segments[segments.length - 1];
const baseId = currentId.split('/').pop();
const exists = allNews.some(post =>
post.id.endsWith(baseId!) && post.data.locale === newLocale
);
if (!exists) {
// Redirigir al home de noticias si no existe la traducción
return `/${newLocale}/${translatedSegments[0]}`;
}
// Reconstruir ID con el nuevo locale
const newId = `${newLocale}/${baseId}`;
return `/${newLocale}/${translatedSegments[0]}/${newId}`;
}
}
return `/${[newLocale, ...translatedSegments].join('/')}`;
}
const { locale } = Astro.params; const { locale } = Astro.params;
@ -70,11 +21,9 @@ const { locale } = Astro.params;
class="flex justify-evenly gap-10 items-center uppercase text-md text-white" class="flex justify-evenly gap-10 items-center uppercase text-md text-white"
> >
<div class="hidden md:flex gap-8 font-primary font-bold"> <div class="hidden md:flex gap-8 font-primary font-bold">
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}#somos`}>{tl("nav.about")}</a> <a class="hover:text-colorPrimary transition" href=`/${currentLocale}#somos`>{tl("nav.about")}</a>
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}#programs`}>{tl("nav.programs")}</a> <a class="hover:text-colorPrimary transition" href=`/${currentLocale}#programs`>{tl("nav.programs")}</a>
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}#news`}>{tl("nav.news")}</a> <a class="hover:text-colorPrimary transition" href=`/${currentLocale}#news`>{tl("nav.news")}</a>
<!-- <a class="hover:text-colorPrimary transition" href={`/${currentLocale}/archive`}>{tl("nav.archive")}</a>
<a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
</div> </div>
<div class="drawer lg:hidden"> <div class="drawer lg:hidden">
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" /> <input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
@ -94,24 +43,19 @@ const { locale } = Astro.params;
</div> </div>
<ul class="font-primary font-bold flex flex-col gap-1 text-lg p-0"> <div class="font-primary font-bold flex flex-col gap-1 text-lg p-0">
<li><a class="hover:text-colorPrimary transition" href="#somos">{tl("nav.about")}</a></li> <li><a><a class="hover:text-colorPrimary transition" href="#somos">{tl("nav.about")}</a></a></li>
<li><a class="hover:text-colorPrimary transition" href="#programs">{tl("nav.programs")}</a></li> <li><a><a class="hover:text-colorPrimary transition" href="#programs">{tl("nav.programs")}</a></a></li>
<li><a class="hover:text-colorPrimary transition" href="#news">{tl("nav.news")}</a></li> <li><a><a class="hover:text-colorPrimary transition" href="#news">{tl("nav.news")}</a></a></li>
</ul> </div>
<div class="w-50"> <div class="w-50">
<Button class="px-8 py-2 uppercase text-lg mt-8" title={tl("nav.contact")} url="#contact" variant="primary" /> <Button class="px-8 py-2 uppercase text-lg mt-8" title={tl("nav.contact")} url="#contact" variant="primary" />
</div> </div>
<div class="dropdown mt-10"> <div class="dropdown mt-10">
<div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer"><Icon name="ph:translate" class="text-2xl" /></div> <div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer"><Icon name="ph:translate" class="text-2xl" /></div>
<ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"> <ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm">
<li><a href={translatePath("es")}><Icon name="icon_flag_es" /> Español</a></li> <li><a href="/es">🇪🇸 Español</a></li>
<li><a href={translatePath("en")}><Icon name="icon_flag_uk" /> English</a></li> <li><a href="/en">🇬🇧 English</a></li>
<li><a href={translatePath("he")}><Icon name="flagpack--il" /> עברית</a></li>
<li><a href={translatePath("pt")}><Icon name="flagpack--br" /> Português</a></li>
<li><a href={translatePath("fr")}><Icon name="flagpack--fr" /> Français</a></li>
<li><a href={translatePath("ru")}><Icon name="flagpack--ru" /> Русский</a></li>
<li><a href={translatePath("rw")}><Icon name="flagpack--rw" /> Kinyarwanda</a></li>
</ul> </ul>
</div> </div>
</ul> </ul>
@ -123,13 +67,9 @@ const { locale } = Astro.params;
<div class="dropdown dropdown-end lg:block hidden"> <div class="dropdown dropdown-end lg:block hidden">
<div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer"><Icon name="ph:translate" class="text-2xl" /></div> <div tabindex="0" role="button" class="btn-ghost m-1 cursor-pointer"><Icon name="ph:translate" class="text-2xl" /></div>
<ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm"> <ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm">
<li><a href={translatePath("es")}><Icon name="icon_flag_es" /> Español</a></li> <li><a href="/es"><Icon name="icon_flag_es" /> Español</a></li>
<li><a href={translatePath("en")}><Icon name="icon_flag_uk" /> English</a></li> <li><a href="/en"><Icon name="icon_flag_uk" /> English</a></li>
<li><a href={translatePath("he")}><Icon name="flagpack--il" /> עברית</a></li> <li><a href="/he"><Icon name="icon_flag_uk" /> עברית</a></li>
<li><a href={translatePath("pt")}><Icon name="flagpack--br" /> Português</a></li>
<li><a href={translatePath("fr")}><Icon name="flagpack--fr" /> Français</a></li>
<li><a href={translatePath("ru")}><Icon name="flagpack--ru" /> Русский</a></li>
<li><a href={translatePath("rw")}><Icon name="flagpack--rw" /> Kinyarwanda</a></li>
</ul> </ul>
</div> </div>
</nav> </nav>

View File

@ -15,27 +15,27 @@
<ul class="flex flex-col gap-4 bg-white/90 backdrop-blur-md py-4 px-4 rounded-r-2xl shadow-xl border border-gray-200"> <ul class="flex flex-col gap-4 bg-white/90 backdrop-blur-md py-4 px-4 rounded-r-2xl shadow-xl border border-gray-200">
<li class="border-b pb-3"> <li class="border-b pb-3">
<a :href="twitterUrl" target="_blank"> <a :href="twitterUrl" target="_blank">
<Icon icon="ph:x-logo-thin" class="text-2xl text-black" /> <Icon icon="ph:x-logo-thin" class="text-2xl" />
</a> </a>
</li> </li>
<li class="border-b pb-3"> <li class="border-b pb-3">
<a :href="facebookUrl" target="_blank"> <a :href="facebookUrl" target="_blank">
<Icon icon="ph:facebook-logo-thin" class="text-2xl text-black" /> <Icon icon="ph:facebook-logo-thin" class="text-2xl" />
</a> </a>
</li> </li>
<li class="border-b pb-3"> <li class="border-b pb-3">
<a :href="whatsappUrl" target="_blank"> <a :href="whatsappUrl" target="_blank">
<Icon icon="ph:whatsapp-logo-thin" class="text-2xl text-black" /> <Icon icon="ph:whatsapp-logo-thin" class="text-2xl" />
</a> </a>
</li> </li>
<li class="border-b pb-3"> <li class="border-b pb-3">
<a :href="linkedinUrl" target="_blank"> <a :href="linkedinUrl" target="_blank">
<Icon icon="ph:linkedin-logo-thin" class="text-2xl text-black" /> <Icon icon="ph:linkedin-logo-thin" class="text-2xl" />
</a> </a>
</li> </li>
<li> <li>
<button @click="copyLink" class="cursor-pointer"> <button @click="copyLink" class="cursor-pointer">
<Icon :icon="copied ? 'ph:check-thin' : 'ph:link-thin'" class="text-2xl text-black" /> <Icon :icon="copied ? 'ph:check-thin' : 'ph:link-thin'" class="text-2xl" />
</button> </button>
</li> </li>
</ul> </ul>

View File

@ -5,7 +5,6 @@ import "dayjs/locale/es";
import dayjs from "dayjs"; import dayjs from "dayjs";
import utc from "dayjs/plugin/utc"; import utc from "dayjs/plugin/utc";
const regionNames = new Intl.DisplayNames(['es'], { type: 'region' }); const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
import { getLocalizedRoute } from "../../i18n";
const locale = Astro.currentLocale; const locale = Astro.currentLocale;
dayjs.extend(utc); dayjs.extend(utc);
@ -25,7 +24,7 @@ locationArray.filter(Boolean).join(', ');
{locationArray.filter(Boolean).join(', ')}<br /> {locationArray.filter(Boolean).join(', ')}<br />
({nicedate}): ({nicedate}):
</p> </p>
<h3 class="text-2xl font-bold mb-8"><a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>{data.data.title}</a></h3> <h3 class="text-2xl font-bold mb-8"><a href={`/${locale}/news/${data.id}`}>{data.data.title}</a></h3>
<div> <div>
<Image <Image

View File

@ -1,114 +1,30 @@
--- ---
import { Image } from "astro:assets"; import { Image } from "astro:assets"
import { Icon } from "astro-icon/components"; import { Icon } from "astro-icon/components";
import "dayjs/locale/es"; import "dayjs/locale/es";
import dayjs from "dayjs"; import dayjs from "dayjs";
import utc from "dayjs/plugin/utc"; import utc from "dayjs/plugin/utc";
const regionNames = new Intl.DisplayNames(["es"], { type: "region" }); const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
const locale = Astro.currentLocale; const locale = Astro.currentLocale;
import { createTranslator, getLocalizedRoute } from "@/i18n";
const tl = createTranslator(Astro.currentLocale);
dayjs.extend(utc); dayjs.extend(utc);
dayjs.locale(locale); dayjs.locale(locale);
const { data, content } = Astro.props; const { data } = Astro.props;
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY"); const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
const countryName = data?.data?.country const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
? regionNames.of(data.data.country)
: "";
const locationArray = [data.data.city, data.data.state, countryName]; const locationArray = [data.data.city,countryName]
const location = locationArray.filter(Boolean).join(", "); locationArray.filter(Boolean).join(', ');
const newsUrl = `/${locale}/${getLocalizedRoute("news", locale)}/${data.id}`;
const rawContent = content?.body || "";
const plainText = rawContent
.replace(/^#.*$/gm, "")
.replace(/^###.*$/gm, "")
.replace(/\*\*([^*]+)\*\*/g, "$1")
.replace(/\*([^*]+)\*/g, "$1")
.replace(/_([^_]+)_/g, "$1")
.replace(/\[([^\]]+)\]\([^)]+\)/g, "$1")
.replace(/^>.*$/gm, "")
.replace(/`[^`]+`/g, "")
.replace(/^[-*]\s+/gm, "")
.trim();
const words = plainText
.split(/\s+/)
.filter((w) => w.length > 0)
.slice(0, 40);
const excerpt = words.join(" ") + (words.length === 40 ? "..." : "");
--- ---
<a href={newsUrl} class="block group"> <div>
<article <h3 class="text-2xl font-bold mb-1 font-secondary text-tertiary"><a href={`/${locale}/news/${data.id}`}>{data.data.title}</a></h3>
class="flex flex-col md:flex-row gap-6 md:gap-8 p-4 md:p-6 border-b border-tertiary/20 hover:bg-tertiary/5 transition-colors"
>
<div
class="md:w-1/3 flex-shrink-0 overflow-hidden justify-center items-center flex"
>
<Image
src={data.data.thumbnail_square || data.data.thumbnail}
alt={data.data.title}
width={480}
class="w-full h-auto object-contain transform group-hover:scale-105 transition-transform duration-300"
/>
</div>
<div class="md:w-2/3 flex flex-col">
<div class="flex items-center gap-2 mb-2">
<span class="font-normal font-primary text-sm text-tertiary/70"
>{nicedate}
</span>
{
location && (
<>
<span class="text-tertiary/40">|</span>
<span class="font-normal font-primary text-sm text-tertiary/70">
{location}
</span>
</>
)
}
</div>
<h3
class="text-xl md:text-2xl font-bold font-secondary text-tertiary group-hover:text-tertiary/80 transition-colors mb-2"
>
{data.data.title}
</h3>
<p
class="font-primary text-base text-tertiary/80 mb-4 line-clamp-3"
>
{excerpt}
</p>
{ {
data.data.tags && data.data.tags.length > 0 && ( data.data.city && <span class="font-normal font-primary text-lg text-tertiary/70">
<div class="flex flex-nowrap md:flex-wrap gap-2 overflow-x-auto md:overflow-visible pb-2 md:pb-0 mb-4"> {locationArray.filter(Boolean).join(', ')} | </span>
{data.data.tags.map((tag: string) => (
<span class="badge rounded-none bg-[#EBE6D2] border-none text-[#003421] whitespace-nowrap">
{tag}
</span>
))}
</div>
)
} }
<span class="font-normal font-primary text-lg text-tertiary/70">{nicedate}</span>
<div class="mt-auto"> </div>
<span
class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline"
>
{tl("news.seemore")}
<Icon
name="ph:arrow-right"
class="transform group-hover:translate-x-1 transition-transform"
/>
</span>
</div>
</div>
</article>
</a>

View File

@ -4,8 +4,6 @@ import "swiper/css";
import "swiper/css/navigation"; import "swiper/css/navigation";
import "swiper/css/pagination"; import "swiper/css/pagination";
import { Icon } from "astro-icon/components"; import { Icon } from "astro-icon/components";
const isHebrew = Astro.currentLocale === "he";
const { images, class: className } = Astro.props; const { images, class: className } = Astro.props;
--- ---
@ -27,11 +25,6 @@ const { images, class: className } = Astro.props;
src={image.image} src={image.image}
alt={image.text} alt={image.text}
/> />
{image.text_alt && (
<div class="text-sm text-white px-4 py-2 italic bg-black/50 absolute bottom-2 right-2 rounded">
{image.text_alt}
</div>
)}
</div> </div>
</div> </div>
)) ))
@ -43,28 +36,10 @@ const { images, class: className } = Astro.props;
<!-- If we need navigation buttons --> <!-- If we need navigation buttons -->
<div class="swiper-button-prev"> <div class="swiper-button-prev">
{
isHebrew && (
<Icon name="ph:arrow-circle-right-thin" class="text-white" />
)
}
{
!isHebrew && (
<Icon name="ph:arrow-circle-left-thin" class="text-white" /> <Icon name="ph:arrow-circle-left-thin" class="text-white" />
)
}
</div> </div>
<div class="swiper-button-next"> <div class="swiper-button-next">
{
isHebrew && (
<Icon name="ph:arrow-circle-left-thin" class="text-white" />
)
}
{
!isHebrew && (
<Icon name="ph:arrow-circle-right-thin" class="text-white" /> <Icon name="ph:arrow-circle-right-thin" class="text-white" />
)
}
</div> </div>
</div> </div>
</div> </div>

View File

@ -4,64 +4,37 @@ import { Image } from "astro:assets";
import jbp from "../../assets/DRJBP-1.webp"; import jbp from "../../assets/DRJBP-1.webp";
import FormContact from "./FormContact.vue"; import FormContact from "./FormContact.vue";
import { createTranslator, t } from "../../i18n"; import { createTranslator, t } from '../../i18n';
const tl = createTranslator(Astro.currentLocale); const tl = createTranslator(Astro.currentLocale);
const isHebrew = Astro.currentLocale === "he";
--- ---
<div id="contact" class="bg-[#22523F]"> <div id="contact" class="bg-[#22523F]">
<div class="container mx-auto py-20 relative text-[#EBE5D0]"> <div class="container mx-auto py-20 relative text-[#EBE5D0]">
<div class="absolute bottom-0 right-0 w-80 hidden lg:block"> <div class="absolute bottom-0 right-0 w-80 hidden lg:block">
<Image src={jbp} alt="Centro del Reino de Paz y Justicia" /> <Image src={jbp} alt="Centro del Reino de Paz y Justicia" />
</div> </div>
<h4 <h4 class="text-lg text-center font-bold uppercase" set:html={tl("footer.title")}></h4>
class="text-lg text-center font-bold uppercase" <h2 class="text-2xl lg:text-5xl text-center font-bold font-secondary my-8" set:html={tl("footer.subtitle")}>
set:html={tl("footer.title")} </h2>
/>
<h2
class="text-2xl lg:text-5xl text-center font-bold font-secondary my-8"
set:html={tl("footer.subtitle")}
/>
<div class="px-12 lg:px-4 lg:w-2/5 mx-auto"> <div class="px-12 lg:px-4 lg:w-2/5 mx-auto">
<p class="text-lg font-light mb-10" set:html={tl("footer.text")} />
<p <p class="text-lg font-light mb-10" set:html={tl("footer.text")}></p>
class="text-lg font-light mb-10 break-words"
set:html={tl("footer.text2")} <p class="text-lg font-light mb-10 break-words" set:html={tl("footer.text2")}></p>
/>
<FormContact client:load locale ={Astro.currentLocale}/>
<FormContact client:load locale={Astro.currentLocale} />
</div> </div>
<div <div class="flex lg:justify-between mt-10 lg:mt-0 align-center justify-center">
class="flex lg:justify-between mt-10 lg:mt-0 align-center justify-center"
>
{
!isHebrew && (
<p class="px-4 order-1 text-sm font-normal text-white lg:self-end text-center lg:text-left"> <p class="px-4 order-1 text-sm font-normal text-white lg:self-end text-center lg:text-left">
{tl("footer.reserved")} {tl("footer.reserved")}
</p> </p>
) <img class="w-24 lg:order-1 z-10 pl-6 object-contain" src="/img/logo-metalico.webp" alt="Logo Metalico">
}
<div class="flex items-center gap-3 lg:order-1 z-10 pl-6">
<img
class="w-24 object-contain"
src="/img/logo-metalico.webp"
alt="Logo Metalico"
/>
{
isHebrew && (
<p class="text-sm font-normal text-white text-center lg:text-left">
{tl("footer.reserved")}
</p>
)
}
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -9,7 +9,8 @@ const newsItems = await getCollection("news", (post)=>{
const currentLocale = Astro.currentLocale; const currentLocale = Astro.currentLocale;
return post.data.locale == currentLocale return post.data.locale == currentLocale
}); });
import { createTranslator, getLocalizedRoute } from '../../i18n';
import { createTranslator, t } from '../../i18n';
const tl = createTranslator(Astro.currentLocale); const tl = createTranslator(Astro.currentLocale);
--- ---
<div id="news" class="bg-[#22523F] py-12 lg:py-20"> <div id="news" class="bg-[#22523F] py-12 lg:py-20">
@ -18,7 +19,7 @@ const tl = createTranslator(Astro.currentLocale);
<h4 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary">{tl("news.title")}</h4> <h4 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary">{tl("news.title")}</h4>
<h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl("news.text")}</h2> <h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl("news.text")}</h2>
<p class="text-white text-xl text-center">{tl("news.text2")}</p> <p class="text-white text-xl text-center">{tl("news.text2")}</p>
<Button class="px-6 py-3 uppercase mt-4" url={`/${currentLocale}/${getLocalizedRoute('news', currentLocale)}`} variant="primary" title={tl("news.buttonLable")} /> <Button class="px-6 py-3 uppercase mt-4" url=`/${currentLocale}/news` variant="primary" title={tl("news.buttonLable")} />
</div> </div>

View File

@ -6,7 +6,7 @@ const { title } = Astro.props;
<div class="md:py-16 p-4 bg-white"> <div class="md:py-16 p-4 bg-white">
<div class="container mx-auto"> <div class="container mx-auto">
<div class="flex justify-between px-4"> <div class="flex justify-between px-4">
<h2 id="article-title" class="text-tertiary font-secondary text-xl sm:text-2xl md:text-3xl lg:text-5xl font-bold">{title}</h2> <h2 class="text-tertiary font-secondary text-xl sm:text-2xl md:text-3xl lg:text-5xl font-bold">{title}</h2>
<img class="md:w-20 md:h-20 w-10 h-10" src="/img/lion.svg" alt="Leon"> <img class="md:w-20 md:h-20 w-10 h-10" src="/img/lion.svg" alt="Leon">
</div> </div>
</div> </div>

View File

@ -15,13 +15,10 @@ const news = defineCollection({
state: z.string().optional(), state: z.string().optional(),
country: z.string().optional(), country: z.string().optional(),
thumbnail: image().optional().describe("Main news thumbnail image"), thumbnail: image().optional().describe("Main news thumbnail image"),
thumbnail_square: image().optional().describe("Main news thumbnail square image"),
youtube: z.string().optional(), youtube: z.string().optional(),
tags: z.array(z.string()).optional().describe("News tags"),
gallery: z.array(z.object({ gallery: z.array(z.object({
image: image().optional(), image: image().optional(),
text: z.string().optional(), text: z.string().optional()
text_alt: z.string().optional(),
})).optional().nullable() })).optional().nullable()
}), }),
}); });

View File

@ -1,7 +0,0 @@
---
locale: es
title: test
---
# test

View File

@ -6,7 +6,6 @@ date: 2025-09-05
place: The basement place: The basement
city: Jacareí city: Jacareí
country: BR country: BR
tags: [Brasil]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361 thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361
gallery: [ gallery: [
{ {
@ -15,10 +14,6 @@ gallery: [
] ]
--- ---
# A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos
*Jacareí, Brasil 5 de septiembre de 2025*
The city of Jacareí, in the state of São Paulo, Brazil, woke up with a different atmosphere, as if its streets—dressed in history, trees and palm trees—knew that someone special was coming to wander them, not as a tourist, but as a future adopted son. The city of Jacareí, in the state of São Paulo, Brazil, woke up with a different atmosphere, as if its streets—dressed in history, trees and palm trees—knew that someone special was coming to wander them, not as a tourist, but as a future adopted son.
At around 1:15 p.m. on Friday the 29th of August, Dr. José Benjamín Pérez Matos, accompanied by his wife and an entourage, made his first stop at the imposing City Hall building (Prefeitura Municipal), the beating heart of local executive power. At around 1:15 p.m. on Friday the 29th of August, Dr. José Benjamín Pérez Matos, accompanied by his wife and an entourage, made his first stop at the imposing City Hall building (Prefeitura Municipal), the beating heart of local executive power.
@ -37,7 +32,7 @@ The meeting ended with a serene and profound prayer by Dr. José Benjamín, who
**Jacareí Gains a Son and an Ambassador** **Jacareí Gains a Son and an Ambassador**
A few meters away, the second act awaited. The Câmara Municipal of Jacareí, seat of the legislative branch, welcomed Dr. José Benjamín Pérez Matos at 1:30 p.m. in the Vereador Djalma DAvila Leal auditorium. Councilwoman Maria Amélia was waiting for him there, who at that moment was giving statements to the local news program TV Câmara: A few meters away, the second act awaited. The Câmara Municipal of Jacareí, seat of the legislative branch, welcomed Dr. Pérez Matos at 1:30 p.m. in the Vereador Djalma DAvila Leal auditorium. Councilwoman Maria Amélia was waiting for him there, who at that moment was giving statements to the local news program TV Câmara:
“Since he was coming to Brazil, we immediately placed this proposal up for vote at home. All the governors approved it, and today we are here to make this symbolic presentation, because on his next visit to Brazil we intend to make this official presentation.” “Since he was coming to Brazil, we immediately placed this proposal up for vote at home. All the governors approved it, and today we are here to make this symbolic presentation, because on his next visit to Brazil we intend to make this official presentation.”
@ -57,4 +52,4 @@ In the end, before the local press, Dr. José Benjamín summed up his feelings w
“Being a citizen of a city where you were not born is a joy, because there is one more place where you can become familiar with the culture and everything related to that city. I feel very honored to be a Jacareiense.” “Being a citizen of a city where you were not born is a joy, because there is one more place where you can become familiar with the culture and everything related to that city. I feel very honored to be a Jacareiense.”
Thus concluded the visit to a city that opened its doors to a visitor who became a son. Since the age of 22, Dr. José Benjamín Pérez Matos has traveled throughout Brazil accompanying the Word of God. And today he adds Jacareí as a place he can call “home.” Thus concluded the visit to a city that opened its doors to a visitor who became a son. Since the age of 22, Dr. Pérez Matos has traveled throughout Brazil accompanying the Word of God. And today he adds Jacareí as a place he can call “home.”

View File

@ -2,10 +2,9 @@
locale: en locale: en
title: 'Awarding of decoration: Order of Democracy Simón Bolívar' title: 'Awarding of decoration: Order of Democracy Simón Bolívar'
date: 2025-05-08 date: 2025-05-08
slug: 2025-05-08-award-of-decoration-order-of-democracy-simon-bolivar slug: awarding-of-decoration-order-of-democracy-simon-bolivar
city: Bogotá city: Bogotá
country: CO country: CO
tags: ['Colombia', 'Decoration']
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/JBP-CONDECORACION-25.webp?updatedAt=1770780239998 thumbnail: https://ik.imagekit.io/crpy/tr:w-900/JBP-CONDECORACION-25.webp?updatedAt=1770780239998
gallery: [ gallery: [
{ {
@ -26,14 +25,14 @@ gallery: [
] ]
--- ---
# Awarding of decoration: Order of Democracy Simón Bolívar
**Thursday, May 8, 2025 **Thursday, May 8, 2025
Bogotá, Colombia** Bogotá, Colombia**
(Second activity) (Second activity)
Dr. José Benjamín Pérez Matos **Awarding of decoration: Order of Democracy Simón Bolívar**
Dr. Jose Benjamin Perez Matos
[The Order of Democracy Simón Bolívar, in the rank of Officer's Cross, is an official Colombian distinction awarded by the House of Representatives to citizens who have distinguished themselves in service to their country. It is a civil honor that recognizes the efforts, loyalty, and virtues of individuals or institutions that have contributed to democracy. The order was created in 1980 and has been awarded to a variety of figures and entities from the educational, scientific, military, civil, and political spheres, among others.] [The Order of Democracy Simón Bolívar, in the rank of Officer's Cross, is an official Colombian distinction awarded by the House of Representatives to citizens who have distinguished themselves in service to their country. It is a civil honor that recognizes the efforts, loyalty, and virtues of individuals or institutions that have contributed to democracy. The order was created in 1980 and has been awarded to a variety of figures and entities from the educational, scientific, military, civil, and political spheres, among others.]

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Diplomatic Alert in Latin America: Warning of Consequences Following the Severing of Ties with Israel'
date: 2023-11-01
slug: 2023-11-01-diplomatic-alert-in-latin-america-warning-of-consequences-following-the-severing-of-ties-with-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, Puerto Rico, Bolivia, Chile, Colombia]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Diplomatic Alert in Latin America: Warning of Consequences Following the Severing of Ties with Israel
***From Puerto Rico, Dr. José Benjamín Pérez Matos analyzed the regional geopolitical landscape and warned of the impact that countries adopting adverse positions toward Israel could face.***
*Cayey, Puerto Rico November 1, 2023*
In an international context marked by the heightened geopolitical tension following the events of October 7, Dr. José Benjamín Pérez Matos, president of The Great Tent Cathedral, issued a firm warning regarding the diplomatic decisions that some countries of Latin America are adopting regarding the State of Israel.
During his remarks, the Puerto Rican leader focused on what he described as a distortion of the international narrative, in which —according to his analysis— an attempt is being made to invert the roles of the conflict. In this regard, he denounced the construction of a narrative that presents Israel as the aggressor, obscuring the true origin of the hostilities.
In parallel to that, Dr. José Benjamín Pérez Matos analyzed with concern the diplomatic shift beginning to arise from across the region, particularly in light of recent decisions such as Bolivias severing of ties with Israel. In that regard, he firmly expressed: **“I saw that Bolivia, I think it was another country that would be cutting ties with Israel, Im not sure if they already did it. Theyve gotten themselves into serious trouble!”**
Once the measure was confirmed, he deepened his analysis with a direct warning: **Bolivia cuts ties with Israel.’” In other words, were already seeing how all of that is happening. Imagine! In other words, there has to be a reason for them to receive what they have to receive.”**
Dr. José Benjamín Pérez Matos assertion did not stop at a specific analysis, but extended to a broader reading of the regions strategic positioning. Within this framework, he maintained that foreign policy decisions regarding Israel are neither neutral nor isolated, but can carry profound consequences for the countries involved. In his words: **“We want Latin America to not suffer and to not face such disastrous consequences; but a country that goes against Israel, it says that he who blesses you will be blessed, and he who curses you will be cursed.’”**
The analysis also included other countries in the region, particularly Chile and Colombia, in relation to their recent diplomatic decisions. On this matter, Dr. José Benjamín Pérez Matos referred to the moves made by both governments in recalling their ambassadors to Israel for consultations, interpreting these actions as part of a broader regional trend that, in his view, responds to wider external pressures.
From his perspective, this type of position reflects an international alignment that could carry significant consequences for the states that adopt them. In this regard, he warned of the risk that a series of cascading diplomatic decisions could give rise to a scenario of greater regional instability.
His closing message made clear a central concern: the impact that these decisions could have not only on the diplomatic level, but also on the political and strategic future of Latin America.

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Escalation Between Iran and Israel: Warnings of a Possible Change of Era in the Global Landscape'
date: 2024-04-13
slug: 2024-04-13-escalation-between-iran-and-israel-warnings-of-a-possible-change-of-era-in-the-global-landscape
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-42-30.jpg'
tags: [Israel, Irán]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-42-30.jpg',
},
]
---
# Escalation Between Iran and Israel: Warnings of a Possible Change of Era in the Global Landscape
*Cayey, Puerto Rico April 13, 2024*
The international landscape took a sharp turn in recent hours following the attack launched by Iran against Israel, a military escalation that sparked concern at a global level. In response, Dr. José Benjamín Pérez Matos addressed the situation from The Great Tent Cathedral, offering an interpretation of events through both a geopolitical and prophetic lens.
During his address, Dr. José Benjamín Pérez Matos described the immediacy and seriousness of the attack, referencing to the information that was being reported in real time:
**“Today, Saturday, April 13 of this year 2024, we have been watching the news —those who have been watching the news— of that attack that has been launched by Iran, where they have sent drones, different air strikes, which, according to the news, would be arriving within an hour, an hour and a half or two hours.”**
In his statement, he also highlighted the historic role of the Middle East as the epicenter of international tensions, underscoring the recurring nature of conflict in the region:
**“And aware that the Hebrew people have always been in these wars… because you see, the spark is always there in the Middle East. And we know that from one moment to another that Third World War will be unleashed.”**
Likewise, Dr. José Benjamín Pérez Matos presented that these events make up a broader transformational process, tied to a stage of transition of both historical and spiritual nature:
**“And there is a promise for Israel, where the Throne of David will be restored; for which there are a series of events that will be taking place in this change of kingdom, from the kingdom of the gentiles to the Kingdom of the Prince Messiah.”**
As the drones filled the sky and the tension grew by the minute, the international community observed with deep concern over the possibility of an escalation into a larger conflict. In that context, Dr. José Benjamín Pérez Matos concluded with a call to awareness and reflection on the events unfolding in real time, urging those present to keep a close eye on the situation in the Middle East and to keep prayer for the State of Israel.
Recent events reaffirm the volatile nature of the international landscape and the strategic centrality of the Middle East, in a space where every move can have global implications.

View File

@ -1,56 +0,0 @@
---
locale: en
title: 'Israels Miracle After 76 Years: Sovereignty, Conflict, and the Projection of a Global Promise'
date: 2024-05-14
slug: 2024-05-14-israels-miracle-after-76-years-sovereignty-conflict-and-the-projection-of-a-global-promise
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Israels Miracle After 76 Years: Sovereignty, Conflict, and the Projection of a Global Promise
*Cayey, Puerto Rico May 14, 2024*
May 14 marks one of the most defining dates of the 20th century in geopolitical terms. Seventy-six years after the creation of the State of Israel, Dr. José Benjamín Pérez Matos offers a reading that goes beyond the traditional frameworks of international analysis, positioning the Hebrew nation not only as a central actor in the global system, but as the axis of a process of historical and transcendent scope.
From Cayey, the leader revisited the books developed by Dr. William Soto Santiago to interpret the very existence of Israel as an exceptional phenomenon. In his analysis, the continuity of the Israeli state—born in the wake of the Holocausts devastation—is not solely the result of political or military dynamics, but of a deeper logic that combines history, identity, and strategic vision.
## From International Resolution to State Consolidation
The starting point for this proposal is found in United Nations Resolution 181, passed in 1947, which paved the way for the creation of the State of Israel in 1948. Far from viewing it as an isolated event, Dr. José Benjamín Pérez Matos places it as the beginning of a sustained process of national reconstruction with global impact.
In that regard, he stated: **“Israels survival cannot be analyzed solely in political terms; we are witnessing the greatest miracle of the modern era, both politically and spiritually,”** emphasizing that the establishment of the State was not a circumstantial event, but rather the expression of a greater process.
The analysis acknowledges the historical upheavals of the Jewish people—including the loss of their territory in ancient times—but highlights that their return to the land in the 20th century represents a turning point that redefines their role in the contemporary international system.
## Israel at the Center of the International System
For Dr. José Benjamín Pérez Matos, Israels current positioning is no coincidence. Its political, technological, and military influence, combined with its constant presence on the global agenda, make it an unavoidable actor in any analysis of regional and global stability.
Beyond the ongoing tensions in the Middle East, his argument suggests that Israel functions as a strategic node where geopolitical interests, ideological disputes, and power dynamics on a global scale.
In this context, the city of Jerusalem takes on unique significance, not only as a political and religious center, but also as a constant point of reference for the international community.
## Strategic Expectations and Future Projections
One of the most significant aspects of this argument is the idea that Israel is currently undergoing a period of “strategic expectation,” in which, despite ongoing conflicts, a greater change is taking shape.
On this point, Dr. José Benjamín Pérez Matos affirmed: **“Israel is at a moment of strategic expectation. Everything points to a decisive sign that will mark the beginning of a new stage in its history,”** introducing the notion of a process that is still unfinished, but underway.
This interpretation takes the Israeli situation beyond the current situation, placing it within a dynamic of transformation that, according to his vision, will have global repercussions.
## A Key Player in an Uncertain Scenario
In an international context characterized by volatile alliances, prolonged conflicts, and reconfigurations of power, Dr. José Benjamín Pérez Matos takes a clear stance: Israel cannot be regarded solely as a State in conflict, but rather as a structural player in the international order.
In his closing remarks, he synthesized this vision: **“Israel is not merely a geopolitical actor; it is the axis of a Program that is about to fully manifest itself before the world,”** consolidating a reading that combines political analysis with long-term projection.
Seventy-six years after its founding, the State of Israel continues to occupy a central place on the global agenda, not only because of its conflicts, but also because of its ability to influence—directly or indirectly—the shape of the international scene.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'The “Biggest Mistake” in the Middle East: Dr. José Benjamín Pérez Matos Warns of the Impact of International Pressure Against Israel'
date: 2024-10-08
slug: 2024-10-08-the-biggest-mistake-in-the-middle-east-dr-jose-benjamin-perez-matos-warns-of-the-impact-of-international-pressure-against-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_15-19-30.jpg'
tags: [Israel, Puerto Rico, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_15-19-30.jpg',
},
]
---
# The “Biggest Mistake” in the Middle East: Dr. José Benjamín Pérez Matos Warns of the Impact of International Pressure Against Israel
*Cayey, Puerto Rico October 8, 2024*
_From Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the military and geopolitical situation following the escalation of attacks against the State of Israel._
Against the backdrop of escalating conflict in the Middle East, Dr. José Benjamín Pérez Matos presented an analysis of the security situation facing the State of Israel, focusing on the multiple active fronts and the strategic implications for the nations involved.
During his remarks, the president of the Kingdom of Peace and Justice Center described the regional environment as a situation of simultaneous pressure on Israel, highlighting the involvement of various state and non-state parties. In that regard, he noted: **“And we also see Israel under attack on all fronts: from the south, the north, in Lebanon, from the… now that country Iran,”** alluding to the complexity of the regional threat landscape.
Dr. José Benjamín Pérez Matos also emphasized the territorial and strategic asymmetry between Israel and some of its adversaries, arguing that this disparity shapes the course of the conflict. On that point, he stated: **“Just imagine, if you look, Israel is a tiny little strip of land. They are bullies! Humanly speaking, a country as big as Iran is attacking a tiny strip of land, practically driving them out, cornering them to the sea; and they launch, how many bombs? Two hundred-something bombs… and they dont realize theyre provoking the God of Israel.”**
The Puerto Rican leaders statement included a warning to governments and figures who take a stance against Israel, noting that such decisions could have major consequences. In his words: **“Messing with Israel is the biggest mistake a nation can make at this time, as a nation. And messing with the heavenly Israel... is the biggest mistake a person at this time —minister, group, individual people—, its the biggest mistake they are making!”**
He further emphasized that the continuation of military actions against Israel could lead to extremely serious outcomes. In this regard, he said: **“They can keep doing what they are doing; like the nations: bombing, hurting Israel. What is in store for them is terrible!”**
At the conclusion of his remarks, he included a message of support for the Israeli people, in which he reaffirmed his stance on the conflict and the international situation. In that regard, he stated: **“We pray for Israel; may God keep and watch over them,”** emphasizing the importance of protection amid rising tensions.
Dr. José Benjamín Pérez Matoss remarks serve as a warning about the impact of political and military decisions on the international landscape, emphasizing that the stance taken by States toward Israel is a determining factor in the conflicts evolution.

View File

@ -1,32 +0,0 @@
---
locale: en
title: 'In Jerusalem: Visit to Yesod HaTorah Yeshiva and a Message about the Future of Israel as a Global Center'
date: 2024-12-17
slug: 2024-12-17-in-jerusalem-visit-to-yesod-hatorah-yeshiva-and-a-message-about-the-future-of-israel-as-a-global-center
place: ''
country: 'IL'
city: Jerusalem
tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# In Jerusalem: Visit to Yesod HaTorah Yeshiva and a Message about the Future of Israel as a Global Center
*Jerusalem, Israel December 17, 2024*
During a recent visit to Israel, Dr. José Benjamín Pérez Matos visited Yesod HaTorah Yeshiva, in Jerusalem, where he was welcomed in a setting of scholarly tradition dedicated to the teaching of the Torah and the Talmud. The meeting, held in a relevant academic-religious environment, was underscored by a message centered on the value of spiritual knowledge and its global reach.
Upon speaking, Dr. José Benjamín Pérez Matos emphasized the importance of an education grounded in sacred texts to build a society with a solid foundation, conveying a vision about the future of Israel in the global landscape:
“Its a blessing and an honor to be here in the yeshivah of my friend Moshe, and to see the different classrooms where the Torah and Talmud are studied. Continue holding onto the Torah, to the Word of God. And may the Eternal One continue giving you plenty of wisdom and understanding. And may you soon see the establishment of that long awaited Kingdom: the Kingdom of peace, of happiness and prosperity, that Israel longs for. Which is very near.
And Israel will be the capital of the entire world. And you are part of that Kingdom; it will be established soon.”
The visit unfolded amid growing interest in the role of religious institutions in shaping visions for the future, particularly in terms of the relationship between tradition, leadership, and global transformation.
In this regard, the message from Jerusalem strengthens a perspective that connects Torah study to a horizon of geopolitical and spiritual change, placing Israel at the heart of the construction of an international landscape geared toward peace, stability, and prosperity.

View File

@ -1,32 +0,0 @@
---
locale: en
title: 'Faith Diplomacy and Geopolitical Power: The Latin AmericaIsrael Axis at the Center of the New International Landscape'
date: 2024-12-17
slug: 2024-12-17-faith-diplomacy-and-geopolitical-power-the-latin-americaisrael-axis-at-the-center-of-the-new-international-landscape
place: ''
country: 'IL'
city: 'Jerusalem'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Faith Diplomacy and Geopolitical Power: The Latin AmericaIsrael Axis at the Center of the New International Landscape
*Jerusalem, Israel December 17, 2024*
The recent tour of the Middle East, along with statements issued from Puerto Rico and Mexico by Dr. José Benjamín Pérez Matos, have brought light to the consolidation of a political-religious actor with growing international projection. His speech, which weaves together faith, strategy, and geopolitical positioning, seeks to directly influence the conflict in Gaza and the legitimacy of the State of Israel within the international system.
One of the most notable aspects of this approach has been the messages shift in tone: from a framework centered exclusively on prayer to a stance that demands decisive action in the international political stage. In this regard, the need for an “uprising against terrorism” in Gaza has been proposed, accompanied by criticism of the lack of resolve among multilateral organizations and governments that have scaled back on their support for Israel. The stance is clear: the formation of a Palestinian state is not considered viable under the current conditions, but only within a framework subordinate to the laws and conditions of the Israeli State.
At the same time, a novel strategic line emerges centered on the use of resources as a negotiation tool. In particular, the water crisis in Iran is presented as an opportunity for diplomacy grounded on concrete solutions. From this perspective, Israel is not only positioned as a military power, but also as a provider of key technology for regional survival, shaping a logic of “peace for resources” that redefines traditional mechanisms of negotiation.
Another central point of the analysis lies in the recognition achieved within the highest religious and political spheres of Jerusalem. Meetings with Israeli Government officials and with Chief Rabbi Kalman Ber transcend beyond the symbolic or ecclesiastical realm, projecting themselves as signals of mutual legitimacy. The establishment of a “brotherhood” relationship with the Ashkenazi Chief Rabbi suggests the formation of a bloc of influence with aspirations to play a role in potential global reordering.
In this context, Latin America and the Caribbean emerge as a rising actor within this framework. According to these statements, a regional front is taking shape that serves as a counterweight to countries maintaining critical positions against Israel. This bloc not only offers political and moral support, but also projects itself as a strategic ally in the defense of Israeli sovereignty, expanding the geopolitical reach of the region.
His analysis concluded with a clear message: this is a strategy that departs from traditional diplomacy frameworks, leaning towards an approach of structural strength. The viability of the two-State solution in the current context is in question, and the emergence of a new international hierarchy is proposed, in which Israel would occupy a central role, integrating political and religious dimensions within a single axis of power.

View File

@ -1,34 +0,0 @@
---
locale: en
title: 'Return From Israel With Historic Results: A Mission Marked by Symbolism and Diplomatic Achievements'
date: 2024-12-19
slug: 2024-12-19-faith-diplomacy-and-geopolitical-power-the-latin-americaisrael-axis-at-the-center-of-the-new-international-landscape
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg'
tags: [Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_18-21-03.jpg',
},
]
---
# Return From Israel With Historic Results: A Mission Marked by Symbolism and Diplomatic Achievements
*Cayey, Puerto Rico December 19, 2024*
After an intense international tour that included Africa and the Middle East, Dr. José Benjamín Pérez Matos returned to Puerto Rico highlighting the historic significance of the results achieved during his recent visit to Israel. The trip, shaped by the context of conflict in the region, was marked both by logistical challenges and by a series of events that, as expressed, acquired significant symbolic and diplomatic value.
One of the most relevant aspects of the mission was changing the entry route into Israel. Due to the cancellation of commercial flights to Tel Aviv, the delegation had to reorganize its itinerary, traveling first to Dubai, United Arab Emirates, and then entering Israeli territory from the east. This change, initially technical, was interpreted as an event of profound significance:
The socalled “entry from the east” was associated by Dr. José Benjamín Pérez Matos with a symbolic reference linked to the “rising of the sun,” adding an additional dimension to the experience that went beyond the purely operational.
Despite the short duration of the visit, the work agenda included highlevel meetings that, according to reports, generated a positive assessment from local interlocutors. In various spheres—both religious and political—the intensity and effectiveness of the meetings held within a short period were highlighted.
In that regard, Dr. José Benjamín Pérez Matos himself emphasized the significance of the results obtained:
**“In just a few days, we accomplished things that even those in Israel themselves said were impossible to achieve in such a short time.”**
The missions assessment reflects an approach aimed at maximizing opportunities in complex contexts, strengthening ties in scenarios of high international sensitivity. The return to Puerto Rico thus marks the closing of a stage that, as noted, could have relevant implications for future institutional and diplomatic developments.

View File

@ -1,34 +0,0 @@
---
locale: en
title: 'Jerusalem in the Spotlight in 2025: Warnings About a Pivotal Year for Global Change'
date: 2025-01-04
slug: 2025-01-04-jerusalem-in-the-spotlight-in-2025-warnings-about-a-pivotal-year-for-global-change
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto'
tags: [Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto',
},
]
---
# Jerusalem in the Spotlight in 2025: Warnings About a Pivotal Year for Global Change
*Cayey, Puerto Rico January 4, 2025*
In an international setting marked by uncertainty and the shifting of global balances, recent statements by Dr. José Benjamín Pérez Matos, once again position Jerusalem as a key point in the unfolding of world events. According to his vision, the year 2025 is shaping up to be a decisive period in which transformation processes of global scope will accelerate.
The approach is not limited to a conventional geopolitical interpretation; rather, it combines a spiritual dimension with an analysis of the international reality, positioning the Holy City not only as a historical reference point, but also as a driving force behind ongoing structural change.
One of the key points of the message lies in the relationship with Israel. In this regard, Dr. José Benjamín Pérez Matos spoke of a direct and lasting connection with the Jewish people, highlighting the emotional and spiritual bond that unites his community with the fate of the Israeli nation, which he **“loves and carries in his heart.”**
This brief yet meaningful statement encapsulates a vision that transcends the symbolic realm and extends into the future. Within this framework, Israels role appears linked to the possibility of establishing itself as the center of a global order oriented toward peace and justice.
The message also introduces a specific temporal dimension. The repeated reference to the year 2025 as a turning point suggests an expectation of high-impact events that will shape the direction of ongoing processes. Accordingly, Dr. José Benjamín Pérez Matos noted that this is a period in which multiple developments will begin to materialize, consolidating a phase of decisive outcomes.
The mention of events carried out both in Puerto Rico and in Jerusalem reinforces the idea that this process is already underway, inviting those who follow this message to maintain a posture of attentiveness, preparedness, and expectation.
In a global context where political tensions, social transformations, and structural challenges converge, the centrality of Jerusalem emerges in this analysis as a key element for understanding the potential configuration of the international landscape in the coming years.

View File

@ -1,34 +0,0 @@
---
locale: en
title: 'From Mexico: Dr. José Benjamín Pérez Matos Reaffirms His Global Commitment to Israel and its Projection in 2025'
date: 2025-01-13
slug: 2025-01-13-from-mexico-dr-jose-benjamin-perez-matos-reaffirms-his-global-commitment-to-israel-and-its-projection-in-2025
place: ''
country: 'MX'
city: 'Mexico City'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-41.jpg'
tags: [Mexico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-41.jpg',
},
]
---
# From Mexico: Dr. José Benjamín Pérez Matos Reaffirms His Global Commitment to Israel and its Projection in 2025
*Mexico City, Mexico January 13, 2025*
With a large-scale event at Mexico Citys Plaza de Toros fast approaching, Dr. José Benjamín Pérez Matos toured the facilities to oversee the preparations alongside the coordinating team.
In light of the event, which has generated international interest, he delivered an inclusive message focused on the relationship between Latin America and Israel, highlighting a period of greater visibility and strengthening of the ties between the two regions.
During his remarks, Dr. José Benjamín Pérez Matos emphasized that the connection with the Hebrew people will not only be maintained, but will deepen over time, taking on an increasingly prominent role on the international scene:
**“We love Israel and stand with Israel in everything; and that connection with the Hebrew people will become increasingly evident.”**
The message also included a direct reference to Latin Americas role in this process, proposing a regional identity aligned with support for Israel and outlining a strategy with global reach. In this regard, Dr. José Benjamín Pérez Matos defined his personal stance and upcoming course of action:
**“All of the Latin American people love Israel. And wherever I go, I will speak about Israel as well; because that is where God will rule the entire world from; and I will be an ambassador and I am an ambassador for the people of Israel throughout the world.”**
The statements outline a clear agenda for 2025, in which Israel plays a central role in both Dr. José Benjamín Pérez Matoss lecture as well as his international efforts. The emphasis on spreading this message globally reinforces a strategy aimed at building support and positioning the relationship between Latin America and Israel as a key pillar on the global stage.

View File

@ -1,47 +0,0 @@
---
locale: en
title: 'Liberation in Israel: A Day of Faith, Gratitude, and a Call for Freedom'
date: 2025-01-19
slug: 2025-01-19-liberation-in-israel-a-day-of-faith-gratitude-and-a-call-for-freedom
place: ''
country: 'US'
state: 'Illinois'
city: 'Chicago'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-37.jpg'
tags: [Estados Unidos, Venezuela]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-37.jpg',
},
]
---
# Liberation in Israel: A Day of Faith, Gratitude, and a Call for Freedom
*Chicago, Illinois, United States January 19, 2025*
A day marked by hope, the release of the first three female hostages in Israel made an impact across the geopolitical sphere, awakening a deep emotional and spiritual response in communities that have closely followed the development of the conflict.
The confirmation that the first women released were in the hands of the Red Cross was received with relief and gratitude. In this context, Dr. José Benjamín Pérez Matos expressed the sentiment of those who have accompanied these events through prayer and constant monitoring:
**“We feel the joy of the families, and we feel it as if they were our own families.”**
Beyond the diplomatic and operational aspects, the message emphasized the spiritual dimension of the process. As he expressed, their release was a response to a long-standing plea:
**“The God of Israel, who is also our God, has answered our prayers in favor of the hostages. The agreed upon phase of their release begins today, and we thank the Eternal One for hearing our cry.”**
Dr. Pérez Matos reaffirmed his commitment to ongoing support for the people of Israel, highlighting the emotional bond with the impacted families and the hope that the rest of the hostages return under similar condition:
**“We feel the joy of the families, and we also rejoice that these women are free and alive. We hope that the others [who are still held hostage] are also alive.”**
Later that day, he recalled previous statements that reflect the enduring call for the hostages release. In this regard, Dr. Pérez Matos recalled his words addressed to a Knesset member: **“May they be released!”**
The message was not limited to the Middle East. In a shift towards Latin America, Dr. Pérez Matos connected his appeal to the situation in Venezuela, incorporating a regional dimension into the statement:
**“Pray for Venezuela as well, for that people whom we love and wish to see liberated as well. We declare freedom for Venezuela!”**
Finally, he emphasized the need for a firm response from the international community:
**“May God work and governments move; may it not be just a facade, but real action: may they move in favor of Venezuela, and may the Venezuelan people be set free!”**
The day concluded with a vision of unity that integrates faith, solidarity, and action, linking in a single horizon the peace in Israel and the appreciation for freedom in other regions of the world. His message reaffirmed a continuous line of support, where the spiritual dimension and the analysis of international events converge into a single narrative.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'International Call to Action: Dr. José Benjamín Pérez Matos Calls for Decisive Responses to the Crises in Israel and Venezuela'
date: 2025-02-16
slug: 2025-02-16-international-call-to-action-dr-jose-benjamin-perez-matos-calls-for-decisive-responses-to-the-crises-in-israel-and-venezuela
place: ''
country: 'PR'
city: Cayey
tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-31.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-31.jpg',
},
]
---
# International Call to Action: Dr. José Benjamín Pérez Matos Calls for Decisive Responses to the Crises in Israel and Venezuela
*Cayey, Puerto Rico February 16, 2025*
In a statement that links the situation in the Middle East with the humanitarian crisis in Latin America, Dr. José Benjamín Pérez Matos issued a message combining geopolitical analysis with a direct call for action from the international community. His remarks focus both on recent developments in Israel and on the ongoing situation in Venezuela.
One of the central themes of the message was a critique of the inaction of international organizations and governments in response to the conditions in which the Israeli hostages were found, drawing a comparison that underscores the severity of the situation:
**“It is hard to believe that, at this point, the world is still experiencing this. And look how they came out: they appeared as though they had come out of Auschwitz, all emaciated… This should not be happening.”**
In relation to Venezuela, Dr. José Benjamín Pérez Matos referred to the limitations faced by direct assistance initiatives, pointing to the administrative and legal obstacles that hinder on-the-ground intervention:
**“It is not that I did not want to go; it is that, due to the laws in place there, visa procedures have not yet been opened, which makes it difficult. But God will open the doors at the time He has to open them.”**
Finally, the message projected a vision of global transformation, highlighting the need for a new order that ensures stability and justice among nations. Within this framework, Dr. José Benjamín Pérez Matos outlined a perspective on future governance based on the alignment of countries with a higher authority model:
**“Those who wish to enter the glorious Millennial Kingdom will have to align themselves with that government.”**
The statement concludes with a central idea: the effective freedom of peoples does not depend on formal declarations, but on firm decisions and sustained action. In this sense, the message positions faith, leadership, and political determination as key elements for addressing current challenges and moving toward a scenario of greater global stability.

View File

@ -1,44 +0,0 @@
---
locale: en
title: 'Condemnation of Violence and International Warning: Dr. José Benjamín Pérez Matos Speaks Out After the Release of Hostages Bodies in Israel'
date: 2025-02-21
slug: 2025-02-21-condemnation-of-violence-and-international-warning-dr-jose-benjamin-perez-matos-speaks-out-after-the-release-of-hostages-bodies-in-israel
place: ''
country: 'PR'
city: Cayey
tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Condemnation of Violence and International Warning: Dr. José Benjamín Pérez Matos Speaks Out After the Release of Hostages Bodies in Israel
*Cayey, Puerto Rico February 21, 2025*
In a statement characterized by solemnity and conviction, Dr. José Benjamín Pérez Matos expressed his solidarity with the people of Israel following the handing over of four bodies of hostages, among them were two Argentinian children, in an incident which caused international outrage.
The message focused on the pain of the affected families, highlighting the human aspect of the conflict and the impact of these events on those who have been closely following the situation:
**“Now notice what has been happening these days; which we join the family in their pain… instead of releasing living people, look, now they have released four dead among those who are there, among the hostages; and two of them were children.”**
Dr. José Benjamín Pérez Matos also spoke about the specific distress of the childrens father, pointing out the emotional strain caused by the uncertainty and the lack of information regarding the fate of his children.
He also stressed the profoundly symbolic and painful nature of this moment, highlighting a news report provided by the media that he read out loud:
***“This is the first time that bodies are returned and it marks a terribly emotional and somber moment for Israel (and for all of us who love Israel).”***
The statement also included a direct warning regarding the responsibility of those involved internationally for the events that took place. In an unequivocal tone, Dr. José Benjamín Pérez Matos stated:
**“They will pay a heavy price! What that terrorist group… And every person and every government that has waged war against Israel, the firstborn son of God as a nation: they will pay a very heavy price!”**
In his analysis, he also drew parallels between the current situation and historical instances of moral depravity, referring to practices that have been denounced in the context of the conflict:
**“That group is like a group from the time of Sodom… There is a news item where it says that: *In Gaza they take their children to see how dead Jews are paraded and desecrated.’”***
The message presents an approach that combines the humanitarian aspect with a broader international landscape, in which recent events are considered part of a highly complex political, social, and spiritual process.
His statement closes by reiterating a position of support for Israel and issuing a warning about the global implications of current events, in a context where tensions continue to escalate and generate repercussions beyond the region.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'Israel and the Second Phase of Liberation: Conditions, Dignity, and Warnings in a HighTension Scenario '
date: 2025-02-23
slug: 2025-02-23-israel-and-the-second-phase-of-liberation-conditions-dignity-and-warnings-in-a-high-tension-scenario
place: ''
country: 'PR'
city: Cayey
tags: [Israel, Puerto Rico]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-26.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-26.jpg',
},
]
---
# Israel and the Second Phase of Liberation: Conditions, Dignity, and Warnings in a HighTension Scenario
*Cayey, Puerto Rico February 23, 2025*
In a recent statement issued from Cayey, Dr. José Benjamín Pérez Matos addressed the development of negotiations surrounding the liberation of hostages in Israel, within a context marked by diplomatic complexity and growing tension in the region. The analysis focused on the conditions set by the Israeli government for moving to a second phase of the process.
During his remarks, Dr. José Benjamín Pérez Matos referred to the evolution of events and the expectations regarding the total release of hostages:
**“We were seeing on the news that they are about to go into the second phase of the hostage release; and we were also listening to Prime Minister Benjamin Netanyahu, who told them that the conditions for that release would need to be established now. They said that for this second phase they would release them all; that is what we want: for them to release them all.”**
The message also highlighted Israels firm stance regarding the conditions of the exchange, particularly concerning the treatment of hostages during their release. Therefore, emphasis was placed on the demand to avoid practices considered offensive or dehumanizing:
**“The Prime Minister said: We are not going to release those who are in prison (meaning, its an exchange) until you do what we are asking of you; and that is that when you release them, you dont make a spectacle like you did when you released the previous ones; given that they staged a performance there, where they even took children there in Gaza, their children, to watch.”**
Likewise, the statement incorporated a regional dimension, highlighting the support from Latin America toward the State of Israel and emphasizing an interpretation based on spiritual principles:
**“All the Latin American people are united with Israel, and condemn all these acts. Now, there is a Scripture that says that he who blesses Israel will be blessed, but he who curses Israel will be cursed.”**
The analysis presented integrates political, diplomatic, and symbolic elements at a time when decisions made on the ground have implications that transcend the immediate. The evolution of this second phase of liberation thus emerges as a critical point within a broader process that continues to be closely observed by the international community.

View File

@ -1,52 +0,0 @@
---
locale: en
title: 'India and Pakistan on the Brink of Major Escalation: Global Alert Over a Conflict Reshaping the Geopolitical Balance'
date: 2025-05-07
slug: 2025-05-07-india-and-pakistan-on-the-brink-of-major-escalation-global-alert-over-a-conflict-reshaping-the-geopolitical-balance
city: 'Bogotá'
state: 'Distrito Capital'
country: 'CO'
tags: ['Colombia', 'India', 'Pakistán']
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-08_21-54-54.jpg
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_21-54-54.jpg',
},
]
---
## India and Pakistan on the Brink of Major Escalation: Global Alert Over a Conflict Reshaping the Geopolitical Balance
*Bogotá, Colombia 7 de mayo de 2025*
***From Bogotá, an assessment warns of an international scenario of upheaval marked by military tensions, institutional fragility, and signs of a systemic crisis.***
In an increasingly volatile international context, a recent address from the Colombian capital raised alarms over the trajectory of the global system, describing a situation of **generalized upheaval** encompassing both the political and natural spheres. At the center of the analysis was the sudden escalation of the conflict between India and Pakistan, considered today one of the most sensitive points of international instability.
The warning is not limited to an isolated episode, but rather presents a broader assessment: the world would be entering a phase of **structural reconfiguration**, in which multiple variables —military, institutional, and environmental— converge simultaneously.
## The Awakening of Two Powers
Although the tension between India and Pakistan is a historical phenomenon, the analysis underscores that the current escalation presents qualitatively distinct characteristics. This is not merely a reiteration of past conflicts, but rather a **leap in intensity and international projection.**
Both countries possess significant military capabilities, which render any direct confrontation a high-risk element for global stability. In this regard, it was emphasized that the confrontation between these two powers cannot be interpreted in isolation, but rather as part of a larger process impacting the architecture of global geopolitics.
In the words of the speaker: **“They are two powers any way you look at it. Everything is moving, and afterward you will see why,”** a statement suggesting underlying dynamics not yet fully visible, but decisive in the unfolding of events.
## Simultaneous Crisis: Governments and Nature Under Pressure
The assessment presented in Bogotá is not confined to the military sphere. On the contrary, it introduces a comprehensive perspective that links the military escalation to a broader context of **institutional fragility and environmental imbalances.**
It was stated that current governments face growing difficulties in maintaining stability and governability, while the natural world exhibits increasingly frequent and intense disruptions. This dual pressure —political and environmental— configures a high-uncertainty scenario, in which traditional structures appear to be losing their capacity to respond.
The approach suggests that these crises are not independent of one another, but rather manifestations of a single process of global transformation.
## A World in Accelerated Transition
The statement concluded with a call for careful observation of ongoing events. The acceleration of armed conflicts, combined with institutional deterioration and environmental tensions, would be indicative of a **systemic transition in progress**, whose outcome remains uncertain.
Far from offering conclusive answers, the message aims to highlight the necessity of interpreting these phenomena as part of a more complex global dynamic, in which each development —particularly in strategic regions such as South Asia— may have worldwide effects.
Within this framework, the escalation between India and Pakistan consolidates as a critical point that could foreshadow deeper transformations in the international order.
In short, the world is not only facing localized conflicts, but a possible **reconfiguration of the global balance**, in which the interaction between powers, weakened institutions, and structural tensions will shape the course of the coming years.

View File

@ -1,35 +0,0 @@
---
locale: en
title: 'Hostage Crisis and International Approach: Dr. José Benjamín Pérez Matos Questions Global Response and Reaffirms Israels Role'
date: 2025-05-25
slug: 2025-05-25-hostage-crisis-and-international-approach-dr-jose-benjamin-perez-matos-questions-global-response-and-reaffirms-israels-role
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-17.jpg'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-17.jpg',
},
]
---
# Hostage Crisis and International Approach: Dr. José Benjamín Pérez Matos Questions Global Response and Reaffirms Israels Role
_From Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the humanitarian situation in the Middle East and criticized the international communitys approach._
*Cayey, Puerto Rico May 25, 2025*
In an analysis focused on the hostage crisis and the development of the conflict in the Middle East, Dr. José Benjamín Pérez Matos addressed the situation the people of Israel are facing, placing emphasis on the humanitarian dimension and the way the conflict has been handled internationally.
During his remarks, the president of the Kingdom of Peace and Justice Center questioned the way part of the international community interprets events, pointing to a disconnection between the publics narrative and the reality faced by victims. In this regard, he stated: **“I speak like this so as not to cry; because in reality what the Hebrew people are going through is terrible! And what the news here is saying about them is like: Oh, they should stop attacking over there! But they should release the hostages! Why dont they say to Iran: Talk to those people and tell them to release them?’”**
Dr. José Benjamín Pérez Matos also called on international powers to direct their actions toward those who, in his view, have direct influence over the conflict. Along those lines, he stated: **“Talk to Iran, talk to all those powers; let them go there and tell Hamas to release the hostages! Ah, but instead its Israel is doing… they are abusers. But the lives of those people who are there, the torture they are enduring! You cant even imagine!”**
In his address, the Puerto Rican leader also discussed the severity of the conditions faced by those in captivity, pointing to the existence of extreme practices that, according to his description, aggravate the nature of the conflict. In that context, he declared: **“The Hebrew people have to defend themselves; and they want to put an end to all that from the root,”** emphasizing the need for a response to these situations.
Likewise, Dr. José Benjamín Pérez Matos reaffirmed his commitment to raising awareness on this issue in various international spaces, particularly in Latin America. In doing so, he stated: **“I told them that I would stand hand in hand with them, and that wherever I go in Latin America I will be talking about all this that happened… so that they know and understand that without Israel there is no peace, as a nation; because that is where the Throne of David will be established.”**
The conclusion of his remarks included a reference to the consequences that, in his view, may arise from the stance nations take regarding this conflict. In that framework, he stated: **“Whoever messes with Israel knows that: Whoever blesses you will be blessed, but whoever curses you will be cursed. And all those people are already cursed,”** highlighting the centrality of the issue in international politics.
The analysis presented by Dr. José Benjamín Pérez Matos highlights the complexity of the conflict and the need to consider both its humanitarian dimension and the impact of global approaches on the evolution of the international landscape.

View File

@ -1,53 +0,0 @@
---
locale: en
title: 'Diplomatic Offensive: Dr. José Benjamín Pérez Matos Promotes a Latin American Coalition to Relocate Embassies to Jerusalem'
date: 2025-06-08
slug: 2025-06-08-diplomatic-offensive-dr-jose-benjamin-perez-matos-promotes-a-latin-american-coalition-to-relocate-embassies-to-jerusalem
place: ''
country: 'MX'
city: 'Monterrey'
state: 'Nuevo León'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-13.jpg'
tags: [México, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-13.jpg',
},
]
---
# Diplomatic Offensive: Dr. José Benjamín Pérez Matos Promotes a Latin American Coalition to Relocate Embassies to Jerusalem
*Monterrey, Nuevo León, Mexico June 8, 2025*
In a statement with clear geopolitical implications, Dr. José Benjamín Pérez Matos urged the governments of Latin America and the Caribbean to redefine their foreign policy toward Israel, proposing the **immediate relocation of their embassies to Jerusalem** and the formal recognition of the city as a political center of global significance.
Speaking from Monterrey, the leader outlined a strategy aimed at breaking with the traditional neutrality of several countries in the region, introducing an approach of direct alignment with Israel as a pillar of stability and international projection.
## A Redefinition of Regional Foreign Policy
Dr. José Benjamín Pérez Matoss stance goes beyond a symbolic declaration, proposing instead a structural reconfiguration of Latin American foreign policy. According to his analysis, the position that countries in the region take regarding Jerusalem will have direct consequences for their future development.
In that regard, he stated: **“We are going to pull Latin America toward having all the embassies of the Latin American and Caribbean peoples in Jerusalem — and may that be soon!”** establishing a concrete call to both Governments and civil societies to drive this change.
His message aims to generate internal pressure in each country, seeking to ensure that the decision does not come solely from foreign ministries, but also from citizen demand.
## Building an Aligned Regional Bloc
One of the central pillars of his proposal is the formation of a **cohesive Latin American coalition** capable of acting as a bloc on the international scene. Under this approach, the relocation of embassies would not be an isolated decision by each country, but rather part of a coordinated strategy with collective impact.
Dr. José Benjamín Pérez Matos argues that, in a transforming global context, nations that anticipate structural changes will be the ones to secure strategic advantages in both political and economic terms.
## Jerusalem as a Future Center of Power
In his remarks, the leader suggested that the international landscape is evolving toward a new axis of power, in which Jerusalem would play a central role. From this perspective, maintaining diplomatic representations in other cities would mean falling behind in the face of an ongoing transformation.
In that context, he emphasized that countries with a strategic vision must position themselves in advance in the place that, in his view, will concentrate the global governance in the future.
## Projection and Influence Agenda
The organization led by Dr. José Benjamín Pérez Matos announced that this statement will not be an isolated event, but the beginning of a sustained **agenda of political influence**. The goal will be to bring this proposal to various regional and international forums, seeking to build consensus and expedite decisions at governmental levels.
Thus, the approach takes shape as an initiative of regional scope aimed at directly influencing the diplomatic architecture of Latin America, at a time when strategic definitions carry decisive weight in the global positioning of nations.
Dr. José Benjamín Pérez Matos message is therefore framed within a logic of **reconfiguring international alignment**, with Jerusalem emerging as the focal point of a new stage in international relations.

View File

@ -1,37 +0,0 @@
---
locale: en
title: 'Preemptive Defense and Nuclear Tension: Dr. José Benjamín Pérez Matos Backs Israeli Action Against Iran'
date: 2025-06-13
slug: 2025-06-13-preemptive-defense-and-nuclear-tension-dr-jose-benjamin-perez-matos-backs-israeli-action-against-iran
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel, Irán]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Preemptive Defense and Nuclear Tension: Dr. José Benjamín Pérez Matos Backs Israeli Action Against Iran
*Cayey, Puerto Rico June 13, 2025*
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center weighed in on the situation following the launch of military operations against Iranian targets and questioned the international response.***
Amid heightened international tensions following the launch of Operation “Rising Lion” against military facilities in Iran, Dr. José Benjamín Pérez Matos offered an analysis centered on Israels right to take preventive action against threats that compromise its security and existence.
In his remarks, the president of the Kingdom of Peace and Justice Center expressed concern over how parts of global public opinion interpret the conflict, especially among younger generations. In that regard, he stated: **“The younger generation doesnt know the history; and the first thing they say is that Israel is to blame, instead of understanding why and everything that has happened.”**
In line with his position, he reiterated his view on where nations should stand with regard to Israel, stating: **“Because God is with the people of Israel, they are His firstborn… Whoever blesses you will be blessed, and whoever curses you will be cursed. That is still in effect today.”**
When addressing the strikes on sites linked to Irans nuclear program, Dr. José Benjamín Pérez Matos argued that the operation was a response to prior warnings and an ongoing risk. In light of this situation, he stated: **“They have been repeatedly told to stop manufacturing all that material to produce an atomic bomb there in Iran; they have been told not to do it; and they remain determined to do it anyway... So what is Israel supposed to do? Well, it has to defend itself first!”**
He then reinforced his argument with a straightforward analogy: **“If someone tells you that person is going to hurt you, what are you going to do? Youre not going to wait for the harm to happen to then complain. And thats what Israel has done now: it has defended itself.”**
His analysis also included a critique aimed at the international communitys response to earlier attacks against Israel. In this regard, he noted: **“I bet they wont say they sent 300 drones recently! And thank God because of that defense they didnt do damage. But what would have happened if those 300 had fallen? Do you know how many people would have died?!”** questioning the lack of coverage of these events in the global debate.
Likewise, he warned that the conflict shows no signs of letting up soon, stating: **“Theyve already been intercepted; but the attacks will continue,”** anticipating the continuation of tensions in the region.
Dr. José Benjamín Pérez Matoss overall assessment positions Israels action within a framework of preemptive defense against strategic threats, while challenging prevailing international interpretations of the conflicts development.

View File

@ -1,54 +0,0 @@
---
locale: en
title: 'From Puerto Rico: Dr. José Benjamín Pérez Matos Intensifies Global Call for Support to Israel Amidst Crisis'
date: 2025-06-14
slug: 2025-06-14-from-puerto-rico-dr-jose-benjamin-perez-matos-intensifies-global-call-for-support-to-israel-amidst-crisis
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# From Puerto Rico: Dr. José Benjamín Pérez Matos Intensifies his Global Call for Support for Israel Amid the Crisis
*Cayey, Puerto Rico June 14, 2025*
In an international landscape marked by growing tensions and geopolitical realignments, Dr. José Benjamín Pérez Matos issued a new statement aimed at strengthening support for the State of Israel, which he described as a central player in an ongoing process of global transformation.
During his intervention on Saturday, June 14, 2025, the leader warned that the Hebrew nation is going through **“very difficult times,”** framing the current situation within a broader dynamic that, in his view, points to a structural shift of global proportions.
## A Crisis with Global Projection
Dr. José Benjamín Pérez Matos directly linked the instability in the Middle East to a broader process, which he defined as part of an unfolding **“Divine Program.”** Within this framework, he interpreted current conflicts not as isolated episodes, but as preliminary stages leading up to a global transformation.
From his perspective, these tensions represent the prelude to a new era in which Israel will play a central role in the organization of international power.
## Jerusalem as the Nucleus of the Future World Order
The message reaffirms the strategic position Dr. José Benjamín Pérez Matos had laid out just days earlier in Mexico, where he pushed for the relocation of Latin American embassies to Jerusalem. On this occasion, he once again highlighted the citys significance as the central axis of the future global landscape.
In this regard, he affirmed: **“All of planet Earth will be ruled from Jerusalem; therefore, all these struggles and all these battles have a purpose within the Divine Program,”** consolidating a vision that ties together conflict, destiny, and political projection.
The statement reinforces his position in favor of a more active international recognition of Jerusalem, not merely as the capital of Israel, but as the central reference point for future governance.
## Call to Action: Spiritual and Political Support
Dr. José Benjamín Pérez Matos urged the international community not to remain indifferent to the situation of the Israeli people, proposing a response that combines **political, diplomatic, and spiritual support.**
In his remarks, he noted that current events must be interpreted as part of a historic turning point, anticipating a period of greater instability that will redefine the global balance.
He also maintained that, within this dynamic, Israel will consolidate its condition as a nation in a context of a broadening crisis, which reinforces—according to his vision—the need to actively accompany its process.
## Consolidation of a Strategic Narrative
With this new statement, Dr. José Benjamín Pérez Matos continues to build a narrative that integrates **geopolitical analysis, international positioning, and long-term vision**, with a focus on Israels role on the global stage.
His message aims to influence both public opinion and policy makers in Latin America, promoting a more defined alignment in favor of the State of Israel and its recognition as a central actor in shaping the future international order.
In a world of uncertainty and transformation, his assertion stands as an invitation to make strategic decisions today, in the face of a scenario that, in his assessment, is already in full swing.

View File

@ -1,56 +0,0 @@
---
locale: en
title: 'Unwavering Support for Israel: Dr. José Benjamín Pérez Matos Questions the Global Lack of Awareness Regarding the Conflict'
date: 2025-06-15
slug: 2025-06-15-unwavering-support-for-israel-el-dr-jose-benjamin-perez-matos-cuestiona-el-desconocimiento-global-sobre-el-conflicto
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-37.jpg'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-37.jpg',
},
]
---
# Unwavering Support for Israel: Dr. José Benjamín Pérez Matos Questions the Global Lack of Awareness Regarding the Conflict
*Cayey, Puerto Rico June 15, 2025*
In a public speech focused on the situation in the Middle East, Dr. José Benjamín Pérez Matos reaffirmed his **“one hundred percent”** support for the State of Israel, while directly criticizing segments of the international community for having an incomplete understanding of the conflict.
During his message on Sunday, June 15, 2025, the leader noted that much of the criticism directed at Israel stems —in his view— from a lack of historical knowledge and an absence of a broader understanding of the origins and evolution of the Hebrew nation.
## Criticism of International Public Opinion
Dr. José Benjamín Pérez Matos referred specifically to new generations and certain opinion outlets which, in his analysis, address the conflict without considering its background and underlying causes.
Along those lines, he maintained that many of these sectors **“dont know the history or the promises”** that support Israels existence and sovereignty, highlighting a gap between global perceptions and what he considers to be the conflicts structural reality.
His presentation introduces a recurring topic in his remarks: the need to reinterpret the Middle East situation from a perspective that combines history, politics, and long-term projections.
## Israel as a Global Stability Factor
Beyond the immediate defense of the Israeli state, Dr. José Benjamín Pérez Matos argued that support for Israel goes beyond the regional level and is directly linked to the international systems stability.
In that context, he stated: **“We are an understanding people and we know what God has for Israel,”** noting that the countrys territorial development and consolidation not only serve national interests but would also have implications for global stability.
This approach positions Israel as an actor whose evolution impacts beyond its borders, reinforcing its centrality in the international agenda.
## Permanent Monitoring and Direct Action
The leader also noted that he closely follows developments in the region, emphasizing the need for active monitoring of the conflicts evolution.
In his own words: **“If Im not here, Ill be there… wherever I am, I will be fulfilling the prophecies,”** making it clear that his actions are not limited to public statements, but include a permanent willingness to intervene in various situations.
This stance reinforces the idea of a dynamic strategy, in which a physical presence and direct action are integral to its operational focus.
## A Sustained Course of Action
The message is part of a series of recent statements in which Dr. José Benjamín Pérez Matos has been advocating for a more defined alignment of Latin America with Israel, including the relocation of embassies to Jerusalem and the abandonment of neutral positions.
With this new declaration, he consolidates a narrative that combines **political support, strategic analysis, and international exposure** in a context where foreign policy decisions are becoming increasingly significant.
In a global landscape marked by persistent tensions, his stance aims to influence both public opinion and decision-makers, arguing that ones position on Israel will be a determining factor in shaping the future international order.

View File

@ -1,62 +0,0 @@
---
locale: en
title: 'Diplomatic Reconfiguration: Dr. José Benjamín Pérez Matos Calls On Latin America to Abandon Neutrality Toward Israel'
date: 2025-06-17
slug: 2025-06-17-diplomatic-reconfiguration-dr-jose-benjamin-perez-matos-calls-on-latin-america-to-abandon-neutrality-toward-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Diplomatic Reconfiguration: Dr. José Benjamín Pérez Matos Calls On Latin America to Abandon Neutrality Toward Israel
*Cayey, Puerto Rico June 17, 2025*
In a new statement with significant geopolitical impact, Dr. José Benjamín Pérez Matos addressed Latin America directly, calling on governments in the region to **urgently review their foreign policies** and redefine their positions toward the State of Israel in the current international landscape.
Issued on Tuesday, June 17, 2025, the message delivers a clear warning: nations that maintain neutral or opposing stances toward the Jerusalem-Israel axis will face —according to his view— political costs and risks of instability in a transforming global context.
## The Principle of Reciprocity as a Strategic Axis
One of the main concepts in Dr. José Benjamín Pérez Matos proposal is the idea of a **“law of reciprocity”** applied to international politics. Under this approach, the decisions states make regarding Israel will not be neutral, but will generate direct consequences for their own development.
He also argued that any diplomatic action adverse to Israel will have a negative reciprocal effect, while alignment with the Hebrew nation would function as a factor of stability and prosperity for countries in the region.
This approach redefines support for Israel not as an ideological option, but as a **strategic decision of survival and international positioning.**
## Jerusalem as the Axis of a New Global Order
Dr. José Benjamín Pérez Matos framed the current situation in the Middle East within a broader process of global power reconfiguration. In his view, present tensions are not an end in themselves, but a prelude to a structural transformation in international governance.
In that context, he stated: **"Everything will turn out for the good; Israel will not be abandoned,"** projecting a scenario in which Jerusalem will be consolidated as a global administrative center.
This vision reinforces his repeated call to relocate Latin American embassies to the city, anticipating that international diplomacy will tend to converge there.
## Criticism of Historical and Political Lack of Knowledge
The leader also directed criticism toward political and social sectors which, according to his analysis, operate with a limited understanding of the conflict in the Middle East.
He argued that this **“historical lack of knowledge”** not only distorts the reading of reality but also jeopardizes the strategic decisions of states, indirectly affecting global well-being.
In this sense, his discourse aims to establish an alternative narrative that combines history, politics, and long-term projection as a basis for decision-making.
## Toward an Aligned Regional Bloc
Dr. José Benjamín Pérez Matos reaffirmed his intention to promote the formation of an “informed” Latin American bloc capable of acting in a coordinated manner on the international stage in favor of Israel.
This proposal includes concrete measures, such as relocating embassies to Jerusalem and abandoning neutral positions, with the objective of consolidating a regional front aligned with what he considers the central axis of the new global order.
He also made clear that his organization will maintain active monitoring and an international presence aimed at influencing decision-making processes and ensuring that this agenda advances in different countries across the region.
## A Pressure Strategy with Regional Projection
With this statement, Dr. José Benjamín Pérez Matos consolidates a strategy that combines **political pressure, narrative-building, and international projection**, aimed at redefining Latin Americas role on the global stage.
In a context of accelerated change, his message seeks to establish the idea that the stance toward Israel is not secondary, but rather a determining factor in the future stability and development of nations.

View File

@ -1,54 +0,0 @@
---
locale: en
title: 'Sovereignty and Geopolitical Unity: Dr. José Benjamín Pérez Matos Supports Israel and Envisions a Path to Victory'
date: 2025-06-17
slug: 2025-06-17-sovereignty-and-geopolitical-unity-dr-jose-benjamin-perez-matos-supports-israel-and-envisions-a-path-to-victory
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Diplomatic Reconfiguration: Dr. José Benjamín Pérez Matos Calls On Latin America to Abandon Neutrality Toward Israel
*Cayey, Puerto Rico June 17, 2025*
In a new statement amid the escalating tensions in the Middle East, Dr. José Benjamín Pérez Matos issued a statement addressed to Israels political and religious leadership, reaffirming his **support for the territorial integrity of the State of Israel** and outlining a path toward national consolidation on the international arena.
Speaking from Cayey, the leader articulated a message combining historical foundations, political positioning, and strategic outlook, asserting that regional stability and global balance largely depend on the full recognition of Israeli sovereignty.
## Historical Foundations and Territorial Legitimacy
Dr. José Benjamín Pérez Matos based his remarks on what he considers historical and legal pillars supporting Israels position in the international system. In his view, respect for borders and for historical commitments to the territory constitutes a central element in ensuring both economic prosperity and political stability in the region.
His position falls within a line of argument that seeks to reinforce the legitimacy of the Israeli State not only from international law, but also from the standpoint of historical continuity.
## A Call for Institutional Resolve
During his remarks, the leader emphasized the need to maintain a firm stance amid external pressures. He highlighted the resilience of the Israeli people and urged their authorities to maintain an active defense policy of safeguarding their strategic interests.
In that context, he stated: **“To all the people of Israel, political and religious leaders, and all the people: May the God of Abraham, Isaac and Jacob, bless you and keep you (…); and may the blessing be perpetuated upon Israel and its inhabitants,”** directly linking the countrys stability to the protection of its resources and the sovereign management of its territory.
He also alluded to the historical strength of the Israeli people through symbolic references, highlighting their capacity for resilience and their ability to look beyond current challenges.
## Israel as a Factor of Global Balance
The message also addressed the impact of Israels situation on the international landscape. According to Dr. José Benjamín Pérez Matos, Israels consolidation as a strong and stable State not only benefits the region but also has direct implications for global balance.
In this sense, his remarks seek to position Israel as an indispensable actor within the world order, whose stability influences global power dynamics.
## Regional Outlook and Alignment
The statement reinforces a line of action sustained by Dr. Pérez Matos in his recent remarks: promoting a clearer alignment of Latin America with the JerusalemIsrael axis.
For analysts, this approach forms part of an influence strategy aimed at shaping the foreign policy of countries in the region, encouraging concrete decisions such as the relocation of embassies and active diplomatic support.
With this new statement, Dr. José Benjamín Pérez Matos consolidates his position as an active voice in the international debate on the Middle East, combining **territorial defense, the construction of a geopolitical perspective, and a long-term outlook.**
In a context of heightened global volatility, his message emphasizes a central point: Israels sovereignty is not merely a regional issue, but a key element in shaping the future international balance.

View File

@ -1,58 +0,0 @@
---
locale: en
title: '“Decree of Defense”: Dr. José Benjamín Pérez Matos Endorses Israels Right to Respond Militarily to External Threats'
date: 2025-06-18
slug: 2025-06-18-decree-of-defense-dr-jose-benjamin-perez-matos-endorses-israels-right-to-respond-militarily-to-external-threats
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# “Decree of Defense”: Dr. José Benjamín Pérez Matos Endorses Israels Right to Respond Militarily to External Threats
*Cayey, Puerto Rico June 18, 2025*
In a statement with strong geopolitical impact, Dr. José Benjamín Pérez Matos issued a declaration on June 18, 2025, in which he reaffirms his absolute support for Israels right to self-defense, validating both its military actions and its neutralization strategy against external threats.
The message introduces a conceptual framework that combines historical reference, strategic interpretation, and political positioning, within a context marked by escalating tensions in the Middle East.
## A Historical Precedent as a Foundation for Action
Dr. José Benjamín Pérez Matos built his declaration around a reference to the 23rd of Sivan, a date linked to key decisions in the ancient Persian Empire, which —as he outlined— established precedents regarding the defense of the Jewish people against threats of extermination.
In this regard, he explained that, faced with decrees of destruction, the response was the enactment of a royal decree authorizing total defense against hostile forces. This precedent, according to his interpretation, should not be viewed as an isolated event from the past, but rather as a principle that remains valid today.
From this perspective, Israeli military action fits within a logic of historical continuity and strategic legitimacy.
## Explicit Support for Military Response Capability
Dr. José Benjamín Pérez Matos addressed a direct message to the Israel Defense Forces, reinforcing the idea that their actions carry both operational and symbolic legitimacy.
Given the circumstances, he stated: **“Be of good courage, be strong! For on a day like today, that royal decree was issued,”** drawing a parallel between the historical context and the current situation.
His stance suggests that the defense of Israeli territory is not only a tactical necessity, but a structural obligation faced with persistent threats.
## Geopolitical Warning and Regional Analysis
The message also included a warning directed at regional powers, particularly the Iranian regime, which Dr. José Benjamín Pérez Matos linked to a history of confrontation.
According to his analysis, the current geopolitical scenario replicates dynamics of antagonism that have already been recorded in history, which reinforces—in his vision—the need for a firm stance on Israels part.
By affirming that the “decree of defense” is irreversible, the leader reaffirms a scenario in which the Israeli nation maintains a strategic advantage over hostile coalitions.
## Personal Commitment and Complete Alignment
In his closing remarks, Dr. José Benjamín Pérez Matos reaffirmed his direct commitment to the Israeli cause, positioning himself as an active player on the international stage.
In his words: **“The Eternal God is with you, and I am with you!”** conveying a stance of complete alignment on both the political and symbolic levels.
His declaration consolidated a line of thought that he has been developing in his recent interventions: **unrestricted defense of Israel, legitimization of its capacity to respond, and building a “zero tolerance” narrative before with external threats.**
In a highly volatile global context, this type of statement reinforces Dr. José Benjamín Pérez Matoss position as an active voice in mobilizing international support for Israel, with an impact on both public opinion and strategic debates regarding regional security and stability.

View File

@ -1,32 +0,0 @@
---
locale: en
title: 'Call for De-escalation In the Middle East: Dr. José Benjamín Pérez Matos Advocates Preventing Further Escalation of the Conflict'
date: 2025-06-23
slug: 2025-06-23-call-for-de-escalation-in-the-middle-east-dr-jose-benjamin-perez-matos-advocates-preventing-further-escalation-of-the-conflict
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Call for De-escalation In the Middle East: Dr. José Benjamín Pérez Matos Advocates Preventing Further Escalation of the Conflict
_Cayey, Puerto Rico June 23, 2025_
_**From Puerto Rico, the leader of the Kingdom of Peace and Justice Center, expressed concern about the situation in Israel and highlighted the need for regional stability.**_
Amid a climate of high volatility in the Middle East, Dr. José Benjamín Pérez issued a message focused on the need to avoid an escalation of the conflict and to move towards a more stable scenario following the recent clashes involving the State of Israel.
In his statement, the president of the Kingdom of Peace and Justice Center reaffirmed his stance of support for Israel, focusing his message on the protection of the civilian population. In this regard, he said: **“And lets continue praying for the people of Israel: May God bless them, take care of them, and keep them,”** highlighting the importance of ensuring security in a context of tension.
Dr. José Benjamín Pérez Matos also referred to the recent events in the region, pointing out the need to prevent the conflict from escalating into more serious situations. In this context, He stated: **“May there be peace these days, in which they have had this struggle, this battle, this war; and with all this confrontation that there was, which we hope doesnt transcend to worse things, rather that they reach a moment…”** making clear his expectation of de-escalation.
This message comes at a time when the international community is closely monitoring the progress of military operations and their potential consequences. In this regard, Dr. Pérez Matos underscores the importance of achieving a balance between defensive actions and the need to preserve regional stability.
The conclusion of his intervention reinforces a vision oriented toward containing the conflict, emphasizing that the priority should focus on preventing the spread of violence and moving toward a more predictable international environment.

View File

@ -1,53 +0,0 @@
---
locale: en
title: 'Summit In Jerusalem: Dr. José Benjamín Pérez Matos Consolidates Ties with Mayor Moshe Lion at the End of His Tour'
date: 2025-07-03
slug: 2025-07-03-summit-in-jerusalem-dr-jose-benjamin-perez-matos-consolidates-ties-with-mayor-moshe-lion-at-the-end-of-his-tour
place: ''
country: 'IL'
city: 'Jerusalem'
order: 1
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo-2025-08-07-12-43-36.jpg'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo-2025-08-07-12-43-36.jpg',
},
]
---
# Summit In Jerusalem: Dr. José Benjamín Pérez Matos Consolidates Ties with Mayor Moshe Lion at the End of His Tour
*Jerusalem, Israel July 3, 2025*
In the final stretch of his mission in Israel, Dr. José Benjamín Pérez Matos took center stage in a high-level meeting with the Mayor of Jerusalem, Moshe Lion, in a gathering that reinforces his international outlook and consolidates direct channels to one of the most significant municipal administrations on the global stage.
The meeting took place on Monday, July 7, at the Municipal Government headquarters, in the emblematic City Hall building, amid strict security measures and a highly sensitive political climate. The meeting was part of an agenda that, following changes brought about by the conflict, evolved into high-level diplomatic instances of greater strategic impact.
## Private Meeting and Analysis of the Urban Reality
The conversation between Dr. José Benjamín Pérez Matos and Mayor Lion took place in a private setting, with limited audiovisual recording due to the security protocols in place. During the meeting, both parties addressed the current situation in Jerusalem, as well as their development prospects, in an environment marked by social, religious, and geopolitical complexity.
After the meeting in the mayors office concluded, the mayor personally invited the delegation to tour the buildings balcony, offering a direct view of the citys urban growth. In that context, he detailed the structural challenges facing Jerusalem, noting its demographic diversity and its dynamic expansion.
“It is one of the most complicated cities in the world, with a million inhabitants divided among secular, ultra-Orthodox, and Muslim and Christian communities,” the mayor explained, while pointing out both the urban growth in the western section and the strategic importance of the Mount of Olives to the East.
## A Political and Symbolic Gesture of Recognition
To conclude the meeting, Mayor Moshe Lion honored Dr. José Benjamín Pérez Matos with the official pin of the Jerusalem Mayors Office, an institutional gesture symbolizing recognition, closeness, and openness to future collaborations.
After receiving the honor, the visiting leader expressed his appreciation for the gesture and the ties formed, highlighting the speed with which the meeting was arranged amid a complex context. The meeting, in that sense, was not merely a formal occasion but also a point of consolidation for relationships.
## An Agenda Reshaped by the Conflict
Dr. José Benjamín Pérez Matos interpreted this meeting as part of a dynamic that transcended the original planning of his trip. The original agenda, focused on larger-scale activities, was replaced by a series of high-level institutional meetings that emerged as his presence in the country generated interest across sectors.
On this matter, he stated: **“The Kingdom is a physical kingdom; therefore, it begins in the sphere in which we find ourselves and is established gradually,”** presenting a vision of progressive development that combines territorial action, institutional relationships, and international outlook.
He also noted that certain aspects of the process cannot always be made public due to security measures, though he noted that the reception at City Hall is a clear indication of his agendas progress.
## Outlook and Continuity of the Strategy
The day concluded with the perspective of expanding this type of meeting during future visits, including meetings with ambassadors and other key stakeholders of the political and diplomatic system. In that regard, Jerusalem is positioned as a central axis within Dr. José Benjamín Pérez Matoss international strategy.
The tours outcome highlights a shift in focus: from a mission initially aimed at making a symbolic presence to an **agenda of direct engagement with centers of power and decision-making**, in a context where every contact takes on a strategic dimension.

View File

@ -1,49 +0,0 @@
---
locale: en
title: 'Dr. José Benjamín Pérez Matos Arrives In Israel to Support the Population in the Aftermath of the Conflict'
date: 2025-07-03
slug: 2025-07-03-dr-jose-benjamin-perez-matos-arrives-in-israel-to-support-the-population-in-the-aftermath-of-the-conflict
place: ''
country: 'IL'
city: 'Tel Aviv'
order: 3
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Dr. José Benjamín Pérez Matos Arrives In Israel to Support the Population in the Aftermath of the Conflict
*Tel Aviv, Israel July 3, 2025*
In a context marked by the recent aftermath of the war, Dr. José Benjamín Pérez Matos arrived in Israel this Thursday, July 3, leading an international delegation with a clear objective: **to accompany, support, and express active solidarity with the Israeli people** in the areas most affected by the conflict.
The trip, which involved complex logistics from California due to operational restrictions in the airspace, was ultimately completed with his arrival in Tel Aviv at 13:43, marking the beginning of an intense agenda focused on direct engagement with the lands reality.
## Direct Presence in War-affected Areas
Following their arrival, the delegation traveled to the Ramat area, where Dr. José Benjamín Pérez Matos was able to observe firsthand the effects of missile strikes on civilian infrastructure. Damaged buildings, sectors still covered in debris, and areas undergoing reconstruction paint a picture that reflects both the scale of the attack and the response capacity of the local population.
During the visit, the leader particularly highlighted **the resilience of the Israeli people**, emphasizing that even amid devastation, clear signs of recovery and social reorganization are already visible.
In that regard, he stated: **“We are here to stand with the people, with the citizens and leaders in this moment of difficulty,”** reaffirming that his presence carries both a human and strategic meaning: to convey support, reassurance, and a signal of international solidarity.
## A Brief Trip with a Broader Significance
Although the original itinerary included activities in the Galilee region, airspace restrictions forced those plans to be rescheduled for later in the year. Nevertheless, far from diminishing its purpose, the trip took on a more focused and significant meaning.
Dr. José Benjamín Pérez Matos himself described this mission as an act of **“fellowship in critical times,”** framed within a broader understanding of the international context. In that sense, he stated: **“We are living in times that the Scripture already showed us, with rumors of wars, which are the beginning of birth pains for the earth. But we are here because we believe in the establishment of a Kingdom of true and eternal peace, which goes beyond the temporary agreements that are signed and broken.”**
His statement introduces an interpretive component that goes beyond immediate circumstances, placing the conflict within a broader framework that combines geopolitical analysis with a philosophical and spiritual perspective.
## Agenda in Jerusalem and Institutional Outreach
The delegations agenda will continue in Jerusalem, where Dr. José Benjamín Pérez Matos will hold meetings with representatives from various sectors of civil society, religious leaders, and institutional actors. The program, which will run through Monday, aims to strengthen ties, foster dialogue, and consolidate an active presence on the ground.
Despite the brevity of the trip, the leader emphasized that his role goes beyond protocol, describing himself as an **“ambassador of a program of peace and happiness for mankind.”** In line with this vision, he concluded with a reflection that encapsulates his stance on the conflict: **“All difficult situations, such as war, carry behind them a great blessing. All things work together for good, to those who have been called with a purpose.”**
The delegations visit to Israel thus fits within a broader framework of **international presence, symbolic support, and narrative-building around peace**, at a time when the region continues to experience tensions with significant global impact.

View File

@ -1,66 +0,0 @@
---
locale: en
title: 'Dr. José Benjamín Pérez Matos Denounces Attacks on Vulnerable Populations in Israel: “The World Must Know the Truth”'
date: 2025-07-03
slug: 2025-07-03-dr-jose-benjamin-perez-matos-denounces-attacks-on-vulnerable-populations-in-israel-the-world-must-know-the-truth
place: ''
country: 'IL'
city: 'Bnei Brak'
order: 2
tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/vlcsnap-2026-05-08-23h54m11s714.png'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-08-23h54m11s714.png',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-08-23h53m40s642.png',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-08-23h53m19s476.png',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-08-23h53m27s219.png',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-08-23h53m31s466.png',
}
]
---
*Bnei Brak, Israel July 3, 2025*
In one of the most impactful stops during his visit to Israel, Dr. José Benjamín Pérez Matos toured the ruins of a special education center recently hit by a missile. The visit, marked by tension and direct evidence, led to a **strong international statement on the nature of the attacks and the need to present the reality of the conflict without distortion.**
Joined by local officials and representatives of the affected institution, the visiting leader surveyed the site of the strike, which occurred about 10 days earlier. The blast not only damaged the schools infrastructure but also impacted nearby homes and other buildings.
## Direct Condemnation of the Targeting of Civilian Infrastructure
During the visit, Dr. José Benjamín Pérez Matos focused on the nature of the target, underscoring the gravity of striking an institution for children with special needs.
In this context, he emphasized: **“Here a school for special needs children was struck. Thats their target,”** drawing a clear distinction from Israels operational doctrine, adding: **“Israel warns in advance so that people can leave before attacking terrorist targets, but their attackers dont do the same; they strike wherever it lands, and their targets are students.”**
His statements introduce a central axis of his message: the distinction between military and civilian targets and the denunciation of practices that, in his view, violate basic principles of international humanitarian law.
## Criticizing the International Narrative and Disinformation
Another key point in his remarks was his criticism of how the conflict is perceived in the West. Dr. José Benjamín Pérez Matos argued that there is an information gap that leads to incomplete or biased interpretations of events in the region.
In that regard, he stated: **“You dont see that information in the West. You always see the other side, saying that Israel is the bad guy, but you don't see the real side of the coin,”** criticizing the way that certain content is spread worldwide.
He further expanded on what he considers to be the root of the problem, saying: **“In what country in the world are there laws that say that another nation should be wiped off the face of the Earth? Thats not something you see in democratic governments, but over there, from childhood, they are taught to exterminate Israel,”** in direct criticism of ideological frameworks that, in his view, feed the conflict.
## Presence of Local Authorities and Damage Evaluation
During their visit to Bnei Brak, the delegation met with the citys mayor, Hanoch Zeibert, who was personally overseeing the demolition of structures rendered uninhabitable after the strike.
The encounter underscored the institutional nature of the visit, which brought together a technical inspection of the damage with a political and social analysis of the strikes impact on the local community.
## An Enduring Scripture: Resilience and Impact
Despite the scale of the destruction observed, Dr. José Benjamín Pérez Matos offered a passage centered on continuity and resilience, framing the situation within a broader vision of Israels future.
On this matter, he expressed: **“Israel is the firstborn son of God. They try to exterminate it, but it was promised that it would not be destroyed. The Eternal One is with Israel, and, from here, from Jerusalem, the Kingdom of the Prince Messiah will be established very soon: a Kingdom of peace, prosperity, and happiness.”**
In his statement, he cited a passage that combines situational analysis, international condemnation, and structural reach, portraying Jerusalem as the center of an eventual scenario for global stability.
Dr. José Benjamín Pérez Matoss visit continued to unfold with an intensive agenda aimed at **shedding light on the impact of the conflict, strengthening institutional ties, and establishing a message of reconstruction and peace in the global arena.**

View File

@ -1,54 +0,0 @@
---
locale: en
title: 'Strategic Alliance in Jerusalem: Panamas Ambassador Supports Dr. José Benjamín Pérez Matos Mission'
date: 2025-07-06
slug: 2025-07-06-strategic-alliance-in-jerusalem-panamas-ambassador-supports-dr-jose-benjamin-perez-matos-mission
place: ''
country: 'IL'
city: 'Jerusalén'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/photo_2025-08-06_18-57-55.webp'
tags: [Israel, Panamá]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/photo_2025-08-06_18-57-55.webp',
},
]
---
# Strategic Alliance in Jerusalem: Panamas Ambassador Supports Dr. José Benjamín Pérez Matos Mission
*Jerusalén, Israel July 6, 2025*
As part of his tour through the Middle East, Dr. José Benjamín Pérez Matos secured a new front of international support following a high-level meeting with Panamas Ambassador to Israel, in an engagement that strengthened his diplomatic position and broadened his network of support in the region.
The meeting took place in an atmosphere of shared understanding and political openness, where the Panamanian representative not only recognized the Puerto Rican leaders work but also described it as a “noble cause,” marking a moment of institutional recognition amid a complex regional context.
## Fundamentals of Action: A Structured Vision for Israel and Global Peace
During the conversation, the ambassador inquired about the origins and objectives of the movement led by Dr. José Benjamín Pérez Matos. The answer clearly outlined the conceptual framework of his course of action, based—as he explained—on a structural interpretation of Israels role on the global stage.
In that regard, he stated: **“We move according to what God says, always respecting earthly laws and the appropriate channels until that peace becomes a reality,”** emphasizing that his strategy combines a transcendent vision with strict adherence to existing institutional regulations.
Likewise, he emphasized that his work is not limited to mere discourse but extends into the **active mobilization of thousands of people in Latin America**, coordinated through technological tools that enable them to amplify the message and to sustain an expanding network of influence.
## International Narrative: The Debate Over Israels Image
One of the most relevant focal points of the meeting was the common ground between both parties regarding Israels international representation. The Panamanian ambassador particularly valued Dr. José Benjamín Pérez Matoss approach, noting that his work helps counteract distorted perceptions in the global media landscape.
In this context, he stated: **“I want to congratulate you and your team. Portraying the true Israel is a great achievement and a great war; I am confident we will win it with ambassadors like you,”** positioning strategic communication as a central battleground in the current international context.
In addition, the diplomat expressed his willingness to actively collaborate with the delegation, both in Israeli territory and in Panama, paving the way for future joint initiatives.
## Active Diplomacy And Building Support Networks
Dr. José Benjamín Pérez Matos stressed that his presence in the region follows a framework of **direct diplomacy and openness**, aimed at creating conditions for international stakeholders to concretely engage in supporting Israel.
As he explained, there is currently greater receptiveness among the Jewish people to this kind of external support, especially when it stems from genuine initiatives unconditioned by traditional geopolitical interests.
In that regard, the meeting with the Panamanian ambassador forms part of a broader strategy: **to break down barriers to access, forge ties of trust, and build an international network aligned with an agenda of stability and peace.**
## Closing of the Meeting and Future Outlook
The meeting ended with a cordial exchange that sealed a newly formed cooperative relationship, but with growth potential. In his closing remarks, Dr. José Benjamín Pérez Matos captured the spirit of the meeting: **“It is an honor for us to count on your support. We are working to ensure that the entire world comes to know the program of peace that God has for this Earth.”**
With this new diplomatic support, his tour through Israel continues to consolidate itself not only as a mission to establish a presence but also as a **platform for international coordination built around a strategic narrative of peace, legitimacy, and global outlook.**

View File

@ -1,54 +0,0 @@
---
locale: en
title: 'Meeting in Jerusalem: Rabbi Eliahu Birnbaum Highlights the Spiritual Dimension of Dr. José Benjamín Pérez Matos Mission Amid War '
date: 2025-07-07
slug: 2025-07-07-meeting-in-jerusalem-rabbi-eliahu-birnbaum-highlights-the-spiritual-dimension-of-dr-jose-benjamin-perez-matos-mission-amid-war
place: ''
country: 'IL'
city: 'Jerusalén'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-05-09 13.24.43.jpg'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026-05-09 13.24.43.jpg',
},
]
---
# Meeting in Jerusalem: Rabbi Eliahu Birnbaum Highlights the Spiritual Dimension of Dr. José Benjamín Pérez Matos Mission Amid War
*Jerusalén, Israel July 7, 2025*
As part of his agenda in Israel, Dr. José Benjamín Pérez Matos took part in a highly symbolic meeting with the renowned Rabbi Eliahu Birnbaum, in a brief but conceptually rich meeting, which offered a spiritual assessment of the current geopolitical context.
The exchange took place in the lobby of the hotel where the delegation was staying, shortly before the religious leaders official commitments with the Argentine Embassy. Far from being a formal meeting, the conversation focused on interpreting the historical moment through the lens of biblical tradition, establishing a direct link between Dr. José Benjamín Pérez Matos presence in Israel and the spiritual narrative of the Jewish people.
## A Spiritual Assessment of the Current Conflict
Rabbi Birnbaum, a leading figure in the study of the “Torat Chaim” (Living Torah), referenced Numbers 24 —corresponding to the weekly Torah portion known as Balak— to draw a parallel between the biblical account and the current situation.
In this context, he stated: **“You dont come with a technical perspective, but with a spiritual and futuristic one,”** emphasizing that Dr. José Benjamín Pérez Matos presence in Israeli territory (following the conflict) is not in response to conventional logic, but to a broader interpretation of the historical moment.
According to the rabbi, just as the text describes one who lifts his gaze and contemplates Israel under the Spirit of God, the visit of the Puerto Rican leader fits within a vision that transcends traditional political or diplomatic understanding.
## A New Stage in the Historical Narrative of Israel
The dialogue moved toward reflections on the current geopolitical context, including regional tensions, particularly in Iran. For Rabbi Birnbaum, the events unfolding in Israel could be understood as part of a contribution of biblical history.
In this regard, he stated: **“The fact that you are here is part of a new Scripture and biblical experience. You are beginning a new biblical era by observing how this land is transforming into a country aligned with divine vision,”** framing Dr. José Benjamín Pérez Matos visit as part of a developing historical narrative.
## Blessing, Conflict, and Projection
The conversation also addressed the episode of Balaam, who —according to the biblical account— was sent to curse Israel, but ended up pronouncing blessings. The rabbi interpreted the delegations presence as reinforcing this logic: a current recognition, stability, and positive projection even in a wartime context.
For his part, Dr. José Benjamín Pérez Matos expressed appreciation for the meeting and the rabbis willingness to study the Scriptures with him before attending his official commitments.
In this context, he stated: **“Its seeing how God fulfills His promises in the time in which one lives,”** reaffirming that his brief stay in the country allowed him to consolidate his spiritual understanding of Israels present and future.
## A Bond that Transcends Protocol
The meeting concluded in an atmosphere of mutual recognition, with Rabbi Birnbaum highlighting the visit as an act of solidarity with deep significance within the prophetic tradition.
The meeting thus forms part of a less visible but strategically relevant dimension of the tour: **the construction of legitimacy in religious and intellectual spheres**, complementing the diplomatic and political ties developed during the mission.
In a context of high regional tension, such meetings add an additional layer of interpretation, where geopolitics intertwines with long-standing cultural and spiritual frameworks.

View File

@ -1,47 +0,0 @@
---
locale: en
title: 'Dr. José Benjamín Pérez Matos Returns from Israel with an Urgent and Hopeful Message: “The time to work for peace is now”'
date: 2025-07-09
slug: 2025-07-09-dr-jose-benjamin-perez-returns-from-israel-with-an-urgent-and-hopeful-message-the-time-to-work-for-peace-is-now
country: 'PR'
city: Cayey
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
tags: [Puerto Rico, Israel, Gaza]
---
## Dr. José Benjamín Pérez Matos Returns from Israel with an Urgent and Hopeful Message:
*Cayey, Puerto Rico July 9, 2025*
## “The time to work for peace is now”
On July 9, after an intense tour through Israeli territory amid an atmosphere of active conflict, **Dr. José Benjamín Pérez Matos** shared **publicly, from Cayey**, the powerful testimonies and experiences gathered during his recent trip. In an account that combined the harsh reality of war with a profound prophetic vision, Pérez emphasized the resilience of the Hebrew people and the urgency of working toward a definitive Kingdom of Peace.
## On the Front Lines: Visit to the Gaza Border
One of the most tense moments of the journey occurred during the delegations attempt to visit a kibbutz near the Gaza Strip, preserved as testimony to the October 7 attack. The visit was interrupted by ongoing military operations.
**“While we were talking, we could hear the roar of the fighting,”** Pérez recounted, describing the gaze of Israeli soldiers as that of those who “live entirely in the present.” Hours after leaving the area, the leader received news of the death of some of the comrades of the soldiers who had welcomed him. “This reminds us that human beings must seize the momentum, the now, because once our days on Earth are over, there is no turning back to work in Gods Work,” he stressed.
## The Contrast of War: Laboratories of Life vs. Laboratories of Death
Dr. José Benjamín Pérez Matos denounced what he called a “tragedy for mankind” following the bombing of one of the worlds most important medical research laboratories in Israel. He explained that, while Israel has focused its strategic efforts on neutralizing nuclear threats and weapons laboratories in Iran, attacks against Israel have destroyed centers dedicated to life.
“They destroyed more than 22 years of scientific research in cancer and epilepsy. It is outrageous to see how the health of the world is attacked out of hatred for a nation,” Pérez declared, citing reports from local professors about the irreparable loss of advances achieved through the donation of bodies to science.
## Diplomacy and Purpose: “My Dream is the Throne of David”
Despite missile alerts that forced the delegation to remain alert even during rest hours, Dr. José Benjamín Pérez Matos maintained an agenda that included meetings with diplomats. In a meeting with the Argentine ambassador to Israel, the Puerto Rican leader was asked about his personal purpose in the region.
“My dream is to establish the Throne and the Kingdom of David, the Kingdom of Peace in Jerusalem; that is what I am working for,” he stated firmly. For Pérez, the physical security offered by Israel —endorsed even by Argentine diplomats in the area— is a reflection of the spiritual security found by the “elect” in what he called the “heavenly Israel.”
## Strategic Coordination in Response to the Crisis
The leader detailed the logistical difficulties of entering the country, as flights were reserved primarily for Israeli citizens returning to serve or protect their families. However, he described how a “timely” opportunity arose in California, allowing them to fulfill an agenda that, though improvised due to the war, led to highlevel contacts that were not originally planned.
“There are no coincidences for God. We were received by people who were astonished to see us there in the midst of war,” concluded Dr. José Benjamín Pérez Matos, reaffirming that despite the struggles Israel still has ahead of it, the end of the journey is the establishment of a Kingdom of prosperity and happiness from Jerusalem for the entire world.

View File

@ -1,43 +0,0 @@
---
locale: en
title: 'Israel, Gaza, and the Global Order: Warnings on the Crisis and the Future of the International Landscape'
date: 2025-08-03
slug: 2025-08-03-israel-gaza-and-the-global-order-warnings-on-the-crisis-and-the-future-of-the-international-landscape
country: 'PR'
city: Cayey
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_08-53-52.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-04_08-53-52.webp',
},
]
tags: [Puerto Rico, Israel, Gaza]
---
# Israel, Gaza, and the Global Order: Warnings on the Crisis and the Future of the International Landscape
_Cayey, Puerto Rico - August 3, 2025._
In a recent intervention from Cayey, Dr. José Benjamín Pérez Matos delivered a message of strong political and spiritual content regarding the situation in the Middle East, centered on the crisis in Gaza and the global implications of the conflict.
The statement included a direct critique of the violence carried out by terrorist groups and of the community dynamics used in the conflict, pointing to the use of media tools to amplify the psychological impact of those actions.
He referred to scenes reflecting extreme conditions of captivity and to a narrative aimed at influencing international public opinion, in a context where the information circulates instantly at a global scale.
Under these circumstances, Dr. José Benjamín Pérez Matos also questioned the lack of direct intervention by the international community, arguing for the need for decisive actions regarding the situation of the hostages:
**“Why dont they all go in there and get those who are kidnapped out once and for all?”**
The criticism extended towards the response of various international actors, noting that the resolution of the conflict cannot depend exclusively on traditional diplomatic mechanisms in contexts of persistent violence:
**“Carry out an uprising against terrorism there!”**
Beyond the immediate analysis, the message projected a long-term vision of the international order, linking current events with the expectation of a structural transformation:
**“That Messianic Kingdom will be established, and Israel will be the capital of the world; where the Throne of David will be; and the entire world will be ruled from there.”**
Dr. José Benjamín Pérez Matos later emphasized a warning about the consequences of ongoing processes, framing his analysis within a spiritual perspective:
**“Whether some nations like it or not (…). That is THUS SAITH THE LORD.”**
The statement reaffirms a consistent narrative that combines the reading of international developments with a projection of global change.

View File

@ -1,42 +0,0 @@
---
locale: en
title: 'From Mexico: Latin America Positions Itself as a Strategic Ally of Israel in a Message with International Reach'
date: 2025-08-09
slug: 2025-08-09-from-mexico-latin-america-positions-itself-as-a-strategic-ally-of-israel-in-a-message-with-international-reach
country: 'MX'
city: Villahermosa
state: Tabasco
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
tags: [Mexico, Israel]
---
# From Mexico: Latin America Positions Itself as a Strategic Ally of Israel in a Message with International Reach
_Villahermosa, Tabasco, Mexico - August 9, 2025._
On a day marked by significant geopolitical and spiritual implications, Dr. José Benjamín Pérez Matos issued a message from Mexico that positions Latin America as a bloc actively supporting the State of Israel in the face of ongoing international tensions.
During his remarks in Villahermosa, Dr. José Benjamín Pérez Matos made a direct call to the Israeli nation, highlighting the existence of sustained and visible regional support:
**“Listen, Israel, behold a people who stand hand in hand with you, here in Mexico and throughout Latin America!”**
The statement went beyond symbolic expression, reinforcing that Latin American support is not limited to discourse, but is projected as full-spectrum support across multiple spheres:
**“You can count on us, Israel! Behold this people who supports you in everything: in prayer and in all fields!”**
In addition, Dr. José Benjamín Pérez Matos shared his vision of Israels role on the global stage, linking current events to the prospect of a more far-reaching transformation. In this regard, he stated:
**“That Messianic Kingdom will soon be established in Israel.”**
This statement is part of a narrative that positions Jerusalem as a central axis for future processes of change, projecting a model of governance that, as stated, will have a global impact.
Toward the end of his remarks, Dr. José Benjamín Pérez Matos emphasized the importance of prayer as a constant source of support in the face of todays challenges:
**“Lets always pray for Israel, lets always pray for the Hebrew people.”**
The event, which drew thousands of people and a wider audience via satellite broadcast, reinforces a narrative that integrates spiritual dimensions, regional positioning, and international outreach in a context when Latin America is seeking to take on a more active role in supporting the State of Israel.

View File

@ -1,60 +0,0 @@
---
locale: en
title: 'Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel'
date: 2025-08-17
slug: 2025-08-17-gaza-under-the-magnifying-glass-media-manipulation-and-judgment-warning-for-nations-that-oppose-israel
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
country: 'PR'
city: 'Cayey'
tags: [Puerto Rico, Israel, Irán]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel
*Cayey, Puerto Rico August 17, 2025*
In a recent speech, Dr. José Benjamín Pérez Matos offered a critical and spiritual perspective on the conflict at the Gaza Strip, harshly questioning the role of the international press and reaffirming Israels right to self-defense following the escalation of attacks beginning on October 7, 2023.
His presentation introduces two central topics: on the one hand, a denunciation of distorted media coverage; on the other, a warning about the consequences that nations taking a stance against Israel would face.
## Criticism of International Media Coverage
Dr. José Benjamín Pérez Matos strongly criticized the role of certain media outlets in shaping global perceptions of the conflict, arguing that much of the information disseminated is the result of deliberate manipulation that distorts peoples understanding of the facts.
In that regard, he affirmed: **“And even though television and all the media outlets show only the negative side… and sometimes they stage scenes and things, or put on a show; with whats happening there in Gaza, they stage… Its all a setup”**; thus showing that the members of Hamas themselves are behind the media coverage.
Furthermore, the active role of that organization is exposed when spreading this type of content, whose complicity with press sectors does not accurately reflect the situation on land, and instead alludes to the goal of influencing international public opinion.
## An Alternate Narrative on the Situation in Gaza
In accordance with what he considers a biased view, Dr. José Benjamín Pérez Matos proposed that the reality in Gaza presents elements that are not usually brought to light.
Such is the case he mentions: **“They take food to the food corridors… Then inside, Hamas steals it. So, you see all of that, but the yellow press (and all of them) only seek to condemn Israel,”** reaffirming an interpretation that reverses the reality on land to shift the focus of international coverage.
On the contrary, these actions, from the Israeli side, place it not only as a military actor, but also as a provider of assistance in a complex survival context.
## Legitimate Self-defense and the Origin of the Conflict
Dr. José Benjamín Pérez Matos also emphasized the origin of the current escalation, referring to the attacks of October 7, 2023 as a turning point.
In this regard, he posed the following question: **“What if they did that to you? Would you just stand by and do nothing? Well, they brought it on themselves! Israel is defending itself! In any war, there are always casualties, it happens,”** reaffirming his position that Israels response falls within the legitimate right to self-defense.
Additionally, he noted that there are internal civilian protests within Gaza that not only question Hamas, but also demand that they surrender; events that, he says, do not receive sufficient media coverage.
## A Warning to the International Community
The message concluded with a warning directed at nations that have shifted their stance toward Israel: **“Anyone who rises up against Israel, will receive well-deserved divine judgment”**; a statement that reinforces a statement that binds political decisions with far-reaching consequences.
He also urged: **“It is good for everyone to stand with Israel and not turn their backs on them at a time when they need that support. We have seen countries that used to be in favor of Israel and are now against it”**; and, consequently, he added: **“That will not bode well for those countries,”** pointing to a trend that, in his judgment, could affect the global balance.
## An Evolving Approach
With this new statement, Dr. José Benjamín Pérez Matos continues to develop a narrative that articulates **conflict analysis, media criticism, and international advocacy** in defense of the State of Israel.
In a context where the war in Gaza remains one of the main focal points of global attention, his message aims to influence both the interpretation of events as well as the foreign policy decisions of the States.

View File

@ -1,35 +0,0 @@
---
locale: en
title: 'Water Crisis In Iran: Israel Offers Conditional Cooperation Tied to a Strategic Shift in the Middle East'
date: 2025-08-17
slug: 2025-08-17-water-crisis-in-iran-israel-offers-conditional-cooperation-tied-to-a-strategic-shift-in-the-middle-east
country: 'PR'
city: Cayey
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-41.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-41.jpg',
},
]
tags: [Puerto Rico, Israel, Irán]
---
# Water Crisis In Iran: Israel Offers Conditional Cooperation Tied to a Strategic Shift in the Middle East
*Cayey, Puerto Rico August 17, 2025*
Within the context of the rising tensions in the Middle East, Dr. José Benjamín Pérez Matos analysed the water crisis affecting Iran, highlighting its potential impact on regional stability and the survival of millions of people. According to his remarks, the extreme water scarcity places the country in a critical situation that directly affects its population, agricultural production, and livestock resources.
In light of this situation, the possibility of technical cooperation led by Israel was highlighted: a country recognized for its leadership in desalination and water management technologies. However, such assistance would be subject to specific conditions linked to Tehrans geopolitical behavior:
**“Israel is offering that if they do away with the plans they have once and for all, they can help them.”**
In his speech, Dr. José Benjamín Pérez Matos did not limit himself to a technical or environmental reading, but incorporated a broader dimension, linking the crisis to political and spiritual factors. In this sense, water was referred to as a strategic resource whose availability can shape the fate of nations:
**“We are already seeing what will be happening in the Millennium, where the nations will not receive rain for a year; that is judgment.”**
The message also included an assessment of the persistence of regional tensions, indicating that, despite opportunities for cooperations, drivers of conflict remain active. As such, he emphasized that such positions contribute to worsening the severity of the crisis, by undermining the very foundation of life:
**“Without water, everything dies: vegetation, animals, even people.”**
The Statement reflects a comprehensive understanding of the international landscape, in which natural resources, politics, and regional stability are intertwined on a single plane. The water crisis in Iran thus emerges as a key factor within current geopolitical dynamics, with implications that could reshape relations in the Middle East.

View File

@ -1,59 +0,0 @@
---
locale: en
title: 'Geopolitics and Prophecy: Dr. José Benjamín Pérez Matos Warns of the Judgment on the Nations and Outlines a New Scenario for Latin America'
date: 2025-09-14
slug: 2025-09-14-geopolitics-and-prophecy-dr-jose-benjamin-perez-matos-warns-of-the-judgment-on-the-nations-and-outlines-a-new-scenario-for-latin-america
tags: [Geopolitics, Israel, Puerto Rico, Spain, Venezuela, Nicaragua, Cuba]
country: 'PR'
city: Cayey
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-37.jpg
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-37.jpg',
},
]
---
# Geopolitics and Prophecy: Dr. José Benjamín Pérez Matos Warns of the Judgment on the Nations and Outlines a New Scenario for Latin America
_Cayey, Puerto Rico September 14, 2025_
In an analysis that combines an international reading and a vision of millennial scope, Dr. José Benjamín Pérez Matos offered an assessment of the current global landscape, noting that recent political and diplomatic decisions against Israel reflect dynamics that go beyond strictly geopolitical considerations.
The assertion is structured around a central idea: the world is moving toward a process of progressive alignment against the State of Israel, with direct implications for the future of the nations.
## A Tense International Landscape
Dr. José Benjamín Pérez Matos identified a series of recent measures—ranging from restrictions on European airspace to resolutions by international organizations—as part of a pattern that points to Israels growing isolation.
In that context, he stated: “**Look, now Spain is also banning Israel from flying over its territory… Notice, each nation starts to put up its obstacles,**” interpreting these decisions as signs of a broader trend.
Likewise, he questioned the international communitys stance on the disputed territories, stating: “**All that territory belongs to Israel! But notice how nations are already uniting against the nation that has the blessing of the Kingdom of the Messiah being established in it**,” in a direct critique of the prevailing diplomatic consensus.
## A Call to Political Leaders
Dr. José Benjamín Pérez Matos analysis also points to the responsibility of political leaders, to whom he attributes a lack of understanding of the factors that, according to his vision, determine the course of events.
Consequently, he stated: “**If only political leaders, rulers, and everyone else would read the Holy Scriptures a little! But they have strayed from the Bible, they have strayed from the promises that God has made through the prophets**,” pointing out a disconnect between decision-making and what he considers the fundamental and structural pillar of existence.
From this perspective, foreign policy ceases to be merely a negotiating tool, becoming a key element in the future stability of States.
## Consequences and Strategic Positioning
One of the most central themes of the message is the warning about the consequences of taking a position against Israel. Dr. José Benjamín Pérez Matos put forward a logic of direct causality between diplomatic decisions and their effects.
In his words, he exemplifies the discernment of any government leader who carefully observes the global context through the Scriptural lens: “**I better join Israel; because it says here that he who blesses you will be blessed, and he who curses you will be cursed.**’”
In contrast, he issues an unambiguous warning about the fate of nations, stating: “**Now, all the nations that turn against Israel: all the nations, will receive divine judgments, without mercy!**”
This assertion reinforces his discursive line of promoting a strategic alignment with Israel as a factor of stability and projection.
## Latin America at the Center of the Projection
The analysis concludes with a focus on Latin America, where Dr. José Benjamín Pérez Matos firmly expressed a vision of political and social transformation for the region, with particular emphasis on countries facing institutional crises.
In this regard, he stated: “**We desire that Venezuela will soon be liberated! May God use that nation! So that the one who is playing the role of president, who is not the president, will turn himself in once and for all!… And may Nicaragua be free too! And may Cuba be free too! We want all of Latin America to enter the glorious Millennial Kingdom!**” envisioning a scenario of structural change on the continent.
## An Expanding Approach
With this new statement, Dr. José Benjamín Pérez Matos deepens a line of analysis that articulates **geopolitics, international positioning, and strategic millennial projection**, with a focus on the role of Israel as the central axis of the global system.
In a context of growing international polarization, his message aims to influence both public opinion and policy makers, asserting that the positioning toward Israel will be a determining factor in the course of the nations in the coming years.

View File

@ -1,47 +0,0 @@
---
locale: en
title: 'Global Warning: “They Are Self-Destructing” — Dr. José Benjamín Pérez Matos Says Those Who Seek to Eliminate Israel Will Disappear'
date: 2025-09-17
slug: 2025-09-17-global-warning-they-are-self-destructing-dr-jose-benjamin-perez-matos-says-those-who-seek-to-eliminate-israel-will-disappear
tags: [Gaza, Israel]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/comunicado-1.webp
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
## Global Warning: “They Are Self-Destructing” — Dr. José Benjamín Pérez Matos Says Those Who Seek to Eliminate Israel Will Disappear
*Cayey, Puerto Rico September 17, 2025*
In one of his most forceful statements on the international stage, Dr. José Benjamín Pérez Matos issued a direct warning to leaders and governments that maintain hostile stances toward the State of Israel. His message left no room for interpretation: any attempt to undermine the existence of the Hebrew nation will bring irreversible consequences for those who promote it.
## A Direct Warning to World Leaders
Dr. José Benjamín Pérez Matos statement is specifically directed at heads of state and figures of power who, through political rhetoric, advocate for the disappearance of Israel. In this regard, he stated clearly: **“Whoever says they are going to make Israel disappear, well, you know what? You as a president, or whoever says that: you are already destroying yourself,”** establishing a direct link between political rhetoric and its consequences.
His declaration goes beyond diplomatic criticism, introducing a deeper dimension in which the actions and words of leaders are seen as determining the fate of their own nations.
## Total Consequences: A Vision Without Nuance
Dr. José Benjamín Pérez Matos was even more emphatic in describing the scope of those consequences, outlining a scenario of total disappearance for countries that maintain extreme confrontational positions against Israel.
In his words: **“The nations that speak that way about Israel will be destroyed! Disappeared! They wont even have an opportunity to enter the Millennial Kingdom. As simple as that. And that is a Word of God, that is THUS SAITH THE LORD!”** underscoring that his position is grounded in an interpretation he considers final and unquestionable.
This assertion introduces a structural dimension, where the conflict is not limited to the political or military sphere, but extends into a long-term, far-reaching framework.
## Israel as a Permanent Axis of Global Order
In his remarks, Dr. José Benjamín Pérez Matos reaffirmed that Israels role is neither circumstantial nor negotiable. According to his view, the nation occupies a central and permanent place in the shaping of the worlds future.
To illustrate this idea, he used colloquial language: **“Whether the nations like it or not… Theyre going to have to put up with Israel all the time! Eternally… Well, they will have Israel eternally,”** emphasizing that the permanence of the Israeli State does not depend on international consensus, but on what he considers an immutable reality.
## A Conclusion Grounded in Support and Protection
Beyond the firm tone of the warning, the message concluded with a reaffirmation of support for Israel, highlighting the importance of standing with the nation in the current context.
In this regard, he stated: **“We love Israel and we desire the blessings upon Israel, and we ask God to keep and protect Israel from all harm,”** reinforcing a position that combines defense, alignment, and forward-looking vision.
This way, Dr. José Benjamín Pérez Matos statement forms part of a broader approach that brings together **geopolitics, leadership rhetoric, and long-term vision**, in an international context where tensions in the Middle East continue to shape the global agenda.

View File

@ -1,66 +0,0 @@
---
locale: en
title: '“Global Sentence”: Dr. José Benjamín Pérez Matos Warns of Consequences for Western Powers Over their Stance on Israel'
date: 2025-09-19
slug: 2025-09-19-global-sentence-dr-jose-benjamin-perez-matos-warns-of-consequences-for-western-powers-over-their-stance-on-israel
city: Palmira
State: Valle del Cauca
country: CO
tags: [Colombia, Israel]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-51.jpg
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-51.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-57.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-54.jpg',
}
]
---
## “Global Sentence”: Dr. José Benjamín Pérez Matos Warns of Consequences for Western Powers Over their Stance on Israel
*Palmira, Valle del Cauca, Colombia September 19, 2025*
In a statement combining geopolitical analysis with a global-scale projection, Dr. José Benjamín Pérez Matos maintained that the recent decisions made by major Western powers regarding Israel are triggering a process of irreversible consequences.
The declaration, issued on September 19, 2025, marks a turning point in his discourse: what was previously framed as a general warning is now presented as a **“sentence” directed at specific countries**.
## Direct Accusations Against Western Powers
In his remarks, Dr. José Benjamín Pérez Matos explicitly identified several States which, according to his contextual biblical analysis, would currently be affected by their stance toward Israel.
In this scenario, he stated: **“Judgment was spoken over Spain, England, Germany, France, Italy, and the United States; but now, as it is spoken [in the present time], divine judgment will fall upon those nations,”** reaffirming, in his interpretation of the international landscape, the inevitability of its fulfillment.
The statement argues that these countries political distancing from the State of Israel is not merely a diplomatic decision, but rather a factor with structural-fracturing consequences for their stability.
## An Evolving Confrontation Scenario
Dr. José Benjamín Pérez Matos warned that the current global context is heading toward a phase of heightened tension, in which the stance taken by nations will play a decisive role.
Within this framework, he stated: **“Due to how much they (many nations) will be against Israel: they are already putting their necks in a noose. Everything is lining up for that great confrontation that is also coming,”** projecting a scenario of larger-scale conflict.
This analysis reinforces his view that the conflict surrounding Israel is not isolated, but rather part of an expanding global dynamic.
## The “Cornering” of Israel and its Projection
Another central pillar of his message is the idea that Israel is under increasing international pressure. According to Dr. José Benjamín Pérez Matos, this phenomenon not only has geopolitical implications but also anticipates broader processes.
In that regard, he explained: **“They are cornering Israel,”** drawing a parallel between the situation of the Israeli state and other spheres of interpretation.
He also warned of a dual scenario: **“In other words, what is coming… It is a great blessing; but there is also a very, very hard trial, a squeeze,”** pointing out that the current context combines both opportunities and high-intensity risks.
## Critique of Contemporary Political decisions
The statement builds on a consistent line from previous interventions: a critique of decision-making processes in the worlds major capitals.
Dr. José Benjamín Pérez Matos reiterated that the lack of deeper understanding of the context is leading governments to adopt measures that, in his view, could prove counterproductive in the medium and long term.
Esta perspectiva plantea que el posicionamiento frente a Israel no es un tema periférico, sino un elemento central en la definición del rumbo de las naciones.
This perspective puts forward that one's stance toward Israel is not a peripheral issue, but rather a central element in defining the direction of nations.
## An Escalating Narrative
With this declaration, Dr. José Benjamín Pérez Matos deepens a narrative that combines **strategic warning, international analysis, and global projection**, in which the conflict surrounding Israel becomes the axis for interpreting the world stage.
In a context of growing polarization, his message aims to cement the idea that decisions made in the present will have a determining impact on the future balance, both for individual states and for the international system as a whole.

View File

@ -1,56 +0,0 @@
---
locale: en
title: 'Venezuela in the Spotlight: Dr. José Benjamín Pérez Warns of Possible Intervention Amid Global Realignment'
country: 'MX'
city: 'Monterrey'
state: 'Nuevo León'
date: 2025-09-27
slug: '2025-09-27-venezuela-in-the-spotlight-dr-jose-benjamin-perez-warns-of-possible-intervention-amid-global-realignment'
tags: [Israel, México, Francia, España]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-32.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-32.jpg',
},
]
---
***From Mexico City, a geopolitical analysis outlines a scenario of confrontation between world powers and points to a turning point in Latin America***
*Monterrey, Nuevo León, Mexico 27 de septiembre de 2025*
In an international context marked by growing tensions among the worlds leading powers, Dr. José Benjamín Pérez Matos presented a strategic analysis of the evolution of the global order, with particular focus on Latin America and especially on Venezuela as a possible epicenter of a broader conflict.
The assessment is framed within a broader interpretation: the international system is undergoing a process of structural reconfiguration, driven by the struggle between traditional powers and emerging centers of influence.
## Clash of Powers: Russia and the United States
Speaking from the Mexican capital, Dr. José Benjamín Pérez Matos outlined a scenario of confrontation among major powers, with the rivalry between Russia and the United States at its core. According to his interpretation, current conflicts are not isolated events, but rather manifestations of a broader logic of global competition unfolding across multiple regions.
In that context, he stated: **“When one sees all of this, and all the Scriptures, and everything that is happening in the world being fulfilled; and sees everything taking place with the United States; sees the kingdom of the king of the north (Russia) as well; and wars here and wars there…,”** drawing a direct connection between contemporary geopolitical developments and a broader assessment of the international landscape.
The reference to the “king of the north,” associated with Russia, introduces an interpretation linking current conflicts to a shifting global power structure in which tensions between blocs are shaping the course of events.
## Venezuela as a Regional Turning Point
The most sensitive aspect of the analysis centered on Venezuela, which Dr. José Benjamín Pérez Matos described as entering a critical phase of internal confrontation and external pressure. According to his assessment, the escalation of the political crisis has moved beyond traditional channels of negotiation, opening the door to more extreme outcomes.
In this regard, he was unequivocal in stating: **“That confrontation taking place in Venezuela, from what can be seen, is going to become an invasion; whether peacefully or by force,”** a statement that positions the Caribbean nation as a potential trigger for international intervention.
The warning suggests that the resolution of Venezuelas crisis may not unfold through conventional diplomatic channels, but rather through mechanisms of greater pressure, with direct implications for regional stability.
## Geopolitics and Purpose: A Broader View of Power
Beyond strictly political analysis, Dr. José Benjamín Pérez Matos introduced a structural interpretation regarding the functioning of global power. According to his perspective, government decisions and military actions are not driven solely by immediate interests, but are part of a broader framework that extends beyond what is visible.
In his words: **“God allows all of this, because there is a spoken Word; and He will use the mechanisms of the world itself, of the kingdom of the gentiles itself, so that that Word may be fulfilled,”** suggesting that international political structures act as instruments within a broader process.
This approach directly links geopolitical dynamics to a process of historical fulfillment, in which state actors function as vehicles for deeper transformations.
## A Continent Under Pressure
The analysis presented in Mexico City makes clear that Latin America is not on the sidelines of global tensions, but rather an active participant in the strategic landscape. In this context, Venezuela emerges as a potential turning point that could redefine the regional balance.
The combination of internal conflict, international pressure, and competition among major powers positions the country as a key arena within the emerging global order.
Ultimately, Dr. José Benjamín Pérez Matoss warning points not only to a single isolated event, but to a broader dynamic: the consolidation of a **new world order in the making**, in which Latin America —and Venezuela in particular— could play a decisive role in the future developments on the international stage.

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Two Years After October 7, Dr. José Benjamín Pérez Matos Warns About Europes Current Course and the Global Impact of Its Decisions Regarding Israel'
date: 2025-10-07
slug: 2025-10-07-two-years-after-october-7-dr-jose-benjamin-perez-matos-warns-about-europes-current-course-and-the-global-impact-of-its-decisions-regarding-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico', Spain, England, France, Germany, Europe]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Two Years After October 7, Dr. José Benjamín Pérez Matos Warns About Europes Current Course and the Global Impact of Its Decisions Regarding Israel
***Speaking from Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the global landscape and challenged Western powers stance on the Middle East conflict.***
*Cayey, Puerto Rico October 7, 2025*
On the second anniversary of the attacks of October 7, 2023, Dr. José Benjamín Pérez Matos provided an analysis centered on the geopolitical consequences of various national policies toward the Middle East conflict, with a particular focus on Europes role and its ties with Israel.
In his statement, the president of the Kingdom of Peace and Justice Center emphasized Israel's strategic role in the international arena, noting that its regional position carries implications that extend beyond territory. In that sense, he affirmed: **“Israel is fighting to preserve the only democracy in the [Middle] East. If Israel were not there, the world would long ago have been in a different state than the one its in now, thanks to Israel.”**
Dr. José Benjamín Pérez Matos also challenged what he described as inconsistencies in the foreign policy of some Western governments, particularly regarding their stance toward armed organizations. In his view, there is a contradiction between the values these countries promote domestically and the alliances or support they express internationally.
In his remarks, the Puerto Rican leader maintained that the current decisions of States are not isolated events, but are instead setting the stage for future consequences. As he put it: **“That dimension inspires them to do something, so that the judgment that was already determined may then be issued. Its not for no reason that they will receive judgment.”**
Referring specifically to Europe, Dr. José Benjamín Pérez Matos adopted a particularly critical tone, noting that certain statements and political stances could have a significant impact on the regions future. In that context, he said: “Spain… now that president is saying what hes saying about Israel: Spain has already secured its judgment! Spain will be destroyed! The same goes for England, France, Germany, that entire part of Europe.”
In his analysis, he warned of grave potential outcomes in which, according to his interpretation, current decisions could lead to large-scale conflicts that directly impact these nations.
Alongside this assessment, his message made reference to ties between Latin America and the State of Israel. In that context, Dr. José Benjamín Pérez Matos reiterated the regions position of support, stating: **“We join them in solidarity today; they can count on us, on the entire Latin American and Caribbean people under this ministry. Rest assured, knowing you have a people who support you.”**
In closing, he outlined a vision of an international landscape heavily shaped by current political decisions, in which each nations stance toward Israel becomes a defining factor in its future trajectory.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'Narrative War in the Middle East: Dr. José Benjamín Pérez Matos Denounces the Construction of Israel as the “Aggressor”'
date: 2025-10-07
slug: 2025-10-07-narrative-war-in-the-middle-east-dr-jose-benjamin-perez-matos-denounces-the-construction-of-israel-as-the-agressor
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Narrative War in the Middle East: Dr. José Benjamín Pérez Matos Denounces the Construction of Israel as the “Aggressor”
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the conflict that began on October 7 and challenged the way in which the international community has framed the war.***
*Cayey, Puerto Rico October 7, 2025*
As a new escalation unfolded in the Middle East following attacks launched from the Gaza Strip, Dr. José Benjamín Pérez Matos delivered an analysis centered on the political and communicational dimensions of the conflict, with particular focus on the mechanisms through which narratives are shaped at the international level.
During his address, the president of the Kingdom of Peace and Justice Center maintained that the current situation cannot be understood solely through a military lens, but must also be examined as a struggle for control over the global narrative. In this regard, he drew attention to a recurring tendency among international organizations and media outlets to systematically shift the publics perception of events as the conflict unfolds.
Dr. José Benjamín Pérez Matos pointed out that, following the initial attack attributed to Hamas militias—which included coordinated ground and air strikes—a perspective is beginning to take shape that could alter the accountability for the conflict. In this framework, he affirmed: **“In the end, they are going to blame it on Israel saying they are an abuser, when the ones who started the war were Hamas.”**
According to his analysis, this dynamic is not new, but rather reflects broader geopolitical patterns that systematically redefine the role of actors in high-tension scenarios. From this standpoint, Israel, initially identified as the attacked country, faces the risk of being presented as the responsible party for the escalation, contingent on the scope of its military response.
Dr. José Benjamín Pérez Matos argument also included a structural reading of the conflict, linking international pressure to long-term historical processes. In this context, he maintained that Israel occupies a central position on the geopolitical board, that reactions to its actions tend to be conditioned by factors that go beyond the specific facts of the confrontation.
He also highlighted that the intensity of the recorded attacks—considered among the most severe in recent years—is at odds with the prevailing interpretation of events by certain segments of the international community, many times without accounting for what triggered the hostilities to begin with.
The analysis presented constitutes a warning about the weight of narrative in contemporary conflicts, underscoring that the construction of perceptions can decisively influence the legitimacy of states actions and the evolution of international relations.

View File

@ -1,32 +0,0 @@
---
locale: en
title: 'Release of Hostages in Israel: Dr. José Benjamín Pérez Matos Calls the Day an International Milestone'
date: 2025-10-13
slug: 2025-10-13-release-of-hostages-in-israel-dr-jose-benjamin-perez-matos-calls-the-day-an-international-milestone
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Release of Hostages in Israel: Dr. José Benjamín Pérez Matos Calls the Day an International Milestone
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the political and human impact of the release of Israelite captives.***
_Cayey, Puerto Rico - October, 13 2025_
On a day marked by strong international repercussions, Dr. José Benjamín Pérez Matos commented on the release of a group of people who had been held captive in territory controlled by armed organizations, describing the event as one with major implications for the global scenario.
During his remarks, the president of the Kingdom of Peace and Justice Center provided details about the release process, noting that the handovers began at 7:00 a.m. Israel time, and included both living persons as well as the restitution of the remains of deceased victims. In that context, he stated: **“Today is a historic day for the world, for Israel, and for us Latin Americans! Those people whom these terrorist animals kidnapped are being released.”**
Dr. José Benjamín Pérez Matos also referred to the gravity of the events that occurred during the period of captivity, denouncing the violence exercised by the captors and questioning the support that certain international sectors had shown toward these groups. In that regard, he stated: **“Those are the ones many were in favor of. They were in favor of animals!”**
In a second part of his address, the Puerto Rican leader focused his message on the human consequences of the situation, both for those who regained their freedom and for the families of the victims. In that framework, he expressed: **“We bless Israel and ask that God always keep Israel. May these people who are returning to their homes be restored by God in their mind, their spirit, their soul, and their body… And to those who are being given the dead bodies: May the families find comfort, knowing that He will avenge the blood of all of them.”**
The analysis presented by Dr. José Benjamín Pérez Matos underscores the significance of the event both in political and humanitarian terms, highlighting that the release of hostages constitutes a key point in the development of the conflict and in its international perception.

View File

@ -1,61 +0,0 @@
---
locale: en
title: 'Milei, Bolivia, and Israel: Dr. José Benjamín Pérez Matos Links Regional Political Shift to an International Strategic Realignment'
date: 2025-10-27
slug: 2025-10-27-milei-bolivia-and-israel-dr-jose-benjamin-perez-matos-links-regional-political-shift-to-an-international-strategic-realignment
place: ''
country: 'IL'
city: 'Jerusalém'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Bolívia', 'Argentina']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
***From Jerusalem, an analysis connects the changes in Argentina and Bolivia to a reshaping of diplomatic stances regarding Israel***
*Jerusalém, Israel - October 27, 2025*
In an address delivered from one of the worlds foremost political and symbolic centers, Dr. José Benjamín Pérez Matos, president of the Kingdom of Peace and Justice Center, offered a comprehensive assessment of the recent political changes in South America, linking them to a broader process of international reordering and diplomatic realignment.
The analysis focuses on Argentina and Bolivia as clear examples of an ongoing transformation, in which domestic political decisions are beginning to reflect a shift in foreign policy, particularly toward Israel.
## Argentina and Bolivia: A Political Shift
Dr. José Benjamín Pérez Matos interpreted the recent electoral results in Argentina as a sign of the consolidation of a new power structure, highlighting the alignment between the Executive and Legislative branches as a key factor for the countrys political stability and international standing.
In that regard, he stated: **“The part that President Milei needed to win, won; and so Argentina now has a government 100% in favor of Israel,”** underscoring that this support not only has bilateral implications, but also emerges as a strategic factor within the global context.
At the same time, he highlighted the political shift in Bolivia, particularly welcoming the decision to resume diplomatic relations with Israel after years of estrangement. **“I congratulate the president who also won in Bolivia, who will restore relations with Israel once again! That is what every nation should do,”** he said, interpreting this move as part of a broader regional trend.
## Critiques of Left-Wing Political Models
The analysis included a direct assessment of the ideological orientations of governments in the region. Dr. José Benjamín Pérez Matos questioned left-wing policies, linking them to decisions that, in his judgment, have negatively affected the international standing of certain countries.
Within that framework, he stated: **“The goats are the leftists… they are against the Divine Program. The president who has broken relations with Israel has made the worst decision of his term; it would be better for him to retract it,”** marking a critical stance toward those administrations that have chosen to distance themselves from the State of Israel.
## Jerusalem and the Axis of Global Order
Beyond the regional analysis, Dr. José Benjamín Pérez Matos presented a structural vision of Israel's role on the international stage. According to his framework, a country's relationship with Israel should not be understood solely in traditional diplomatic terms, but rather as a determining factor in the future direction of nations.
In his words: **“Israel will be the capital, from which the entire planet Earth will be governed. And we desire that every nation join; not that they drift away,”** presenting Jerusalem as a central pillar in the configuration of the global order.
This perspective places Israel at the core of broader international strategic decisions, projecting its influence beyond the Middle East region.
## Memory, Conflict, and International Projection
The closing segment of the analysis addressed the importance of historical memory and its impact on contemporary politics. Dr. José Benjamín Pérez Matos warned about the tendency of the international community to minimize or forget recent events, with particular emphasis on the events of October 7th.
**“What happens in Israel, we see in other nations. There is a representation,”** he stated, establishing a parallel between the conflicts in Israel and their repercussions in other national contexts.
Likewise, he also urged world leaders to strengthen their ties with Israel as part of a broader strategy of international alignment: **“hand in hand with Israel,”** referring to the need to consolidate alliances in an increasingly complex global environment.
## A Reordering With Regional Impact
The analysis presented from Jerusalem suggests that South America is not on the sidelines of global transformations, but is actively participating in a process of reshaping alliances and strategic priorities.
In this context, the cases of Argentina and Bolivia signal a shifting trend, in which alignment with Israel emerges as a central component of the region's foreign policy.
The landscape described not only reflects short-term decisions, but a dynamic of greater reach: the consolidation of **a new geopolitical map**, in which international alliances and ideological orientations will play a determining role in the stability and future direction of nations.

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Following the Tour in Israel, Dr. José Benjamín Pérez Matos Affirms Territorial Sovereignty and Warns of Consequences for Opposing Nations'
date: 2025-11-02
slug: 2025-11-02-following-the-tour-in-israel-dr-jose-benjamin-perez-matos-affirms-territorial-sovereignty-and-warns-of-consequences-for-opposing-nations
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-28.jpg'
tags: [Israel, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-28.jpg',
},
]
---
# Following the Tour in Israel, Dr. José Benjamín Pérez Matos Affirms Territorial Sovereignty and Warns of Consequences for Opposing Nations
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center presented an overview of his tour through Israel and analyzed the international scenario surrounding the conflict and diplomatic tensions.***
_Cayey, Puerto Rico — November 2, 2025_
After concluding an extensive tour of the State of Israel, Dr. José Benjamín Pérez Matos, president of the Kingdom of Peace and Justice Center, gave a detailed explanation on the results of his journey and the current geopolitical context, highlighting Israels strategic centrality and strongly questioning countries that adopt adversarial positions.
During his remarks, Dr. José Benjamín Pérez Matos explained that the trip included a comprehensive journey across Israeli territory, covering various key regions, including border areas. In that regard, he noted: **“We traveled the land from north, south, east, west: we walked it completely, establishing with my own feet the place where the Throne and Kingdom of David will be,”** underscoring the symbolic and political value that, according to his interpretation, such actions hold in the current scenario.
The Puerto Rican leader stated that this journey represents much more than a protocol visit, describing it as an act of affirmation over the territory and its historical significance. Under this perspective, he maintained that Israels sovereignty over its territory is not subject to discussion and that any attempt to question it responds to external interests seeking to alter the regional balance.
In another part of his presentation, Dr. José Benjamín Pérez Matos questioned the role of certain international actors in economic matters, referring to trade restrictions and measures that, according to his analysis, seek to weaken Israel. In his words: **“God gave all the territory of the world to the gentiles, and they want that little piece that is Israels inheritance! Turkey cut off trade… They cut off the entry of refrigerators,”** pointing out what he interpreted as a disproportion in applied policies.
He also addressed with particular emphasis the stance of some governments toward the conflict in Gaza, drawing a direct line between political backing of certain actors and their characterization on the international stage. In one of his most categorical statements, he stated: **“Are there still presidents and nations that turn against Israel and in favor of the terrorists? Well, you know what? They are terrorists too!”**
Along the same line, he deepened his position by stating: **“Before God, divine judgment will fall upon them, because they are against Gods firstborn son: Israel,”** emphasizing that, from his perspective, foreign policy decisions have direct implications for the positioning of nations.
Finally, Dr. José Benjamín Pérez Matos spoke about the security conditions observed during his stay, describing a scenario of sharp contrasts in border dynamics. In that context, he expressed: **“It is a total injustice that the world does not see!”**, alluding to what he considers an inequality in the international perception and handling of the conflict.
The overall balance of his address revealed a firm stance regarding Israels role on the global stage and a clear warning about the possible consequences for those countries that adopt opposing positions in the current international context.

View File

@ -1,34 +0,0 @@
---
locale: en
title: 'OPINION: Stance Toward Israel as a Determining Factor in International Politics'
date: 2025-11-17
slug: 2025-11-17-opinion-stance-toward-israel-as-a-determining-factor-in-international-politics
place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: ['Israel', 'Perú', 'Irán']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# OPINION: Stance Toward Israel as a Determining Factor in International Politics
***From Lima, the analysis by the Kingdom of Peace and Justice Center argues that current diplomatic decisions will shape nations futures.***
*Lima, Perú November 17, 2025*
Against a backdrop of growing international tensions and strategic realignments, the Kingdom of Peace and Justice Center has released an analysis examining the impact of states stance toward Israel as a central element of contemporary global politics.
The assessment draws on statements by Dr. José Benjamín Pérez Matos, who argues that international alignment should not be interpreted solely as a matter of foreign policy, but as a factor that directly affects the stability and future trajectory of countries. In that context, he warned: **“This applies to all nations that have been pursuing and attacking Israel. Iran and all those countries that have turned against it: Gods judgment will fall upon them. And that is without remorse.”**
The analysis further contends that this logic extends beyond states to include political and institutional actors who adopt particular stances on the international stage. From this perspective, decisions made regarding Israel take on a structural character within the global system.
One of the central pillars of the argument is the relationship between different levels of political identity and their connection to Israel. In that regard, Dr. José Benjamín Pérez Matos stated: **“Anyone who attacks Israel will face the consequences.”**, adding that actions at the international level produce direct effects on the standing of the actors involved.
The analysis also outlines an opportunistic outlook for Latin America, in which regional countries could redefine their place in the international order based on their diplomatic choices. In this context, he declared: **“But those who bless Israel, whoa!: The blessing of the Almighty God will be upon that people, that country, that nation!”**, drawing a direct link between strategic stance and national development.
The analysis concludes that the current climate demands clear decisions from political leaders, at a time when neutrality is becoming increasingly difficult to sustain. It posits that a countrys stance toward Israel is emerging as a key indicator of its future trajectory within the international system.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'From Peru, Dr. José Benjamín Pérez Matos Presents Alignment with Israel as Focal Point for the Latin American Vote'
date: 2025-11-17
slug: 2025-11-17-from-peru-dr-jose-benjamin-perez-matos-presents-alignment-with-israel-as-focal-point-for-the-latin-american-vote
place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-09.jpg'
tags: [Israel, 'Perú']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-09.jpg',
},
]
---
# From Peru, Dr. José Benjamín Pérez Matos Presents Alignment with Israel as Focal Point for the Latin American Vote
_**The leader of the Kingdom of Peace and Justice Center analyzed the role of electoral processes in the region and their impact on states international stance.**_
_Lima, Perú — November 17, 2025_
In an address delivered in San Juan de Miraflores, Dr. José Benjamín Pérez Matos presented a proposal centered on the strategic role of voting in Latin America, underscoring foreign policy as a deciding factor in the selection of public officials.
During his speech, the president of the Kingdom of Peace and Justice Center argued that electoral decisions should be guided primarily by candidates stance toward the State of Israel, stating: **“Im making it easy for all the countries: look for the candidate who is well united with Israel, and who is willing to place their embassy in Jerusalem; vote with your eyes closed for him.”**
Dr. José Benjamín Pérez Matos contended that this criteria goes beyond mere political preference and constitutes —based on his assessment— a determining factor in a nation's prospects for stability and development. In that regard, he affirmed: **“That is the key, the secret, for a country to be blessed by God: Stand in favor of Israel, and you will see how the blessings will come.”**
In a subsequent portion of his address, the Puerto Rican leader turned to the broader regional political landscape, expressing his hopes regarding the ideological orientation of governments across Latin America and the Caribbean. He stated: **“I desire and I ask God that Latin America and the Caribbean be the land where all the right is… and that there not be a single country that is against Israel.”**
Furthermore, he emphasized the need for voters to prioritize strategic considerations over candidates' personal characteristics, remarking: **“Forget whether he is ugly, handsome, fat, whatever he may be. Is he in favor of Israel? Then I vote for him!’”**
The proposal also addressed diplomatic policy directly, noting that the location of a country's embassy serves as a key indicator of its governments international stance. Within this framework, the decision to establish diplomatic representation in Jerusalem was presented as a central benchmark in evaluating political leadership.
Dr. José Benjamín Pérez Matos analysis frames the regions electoral processes as decisive junctures in shaping Latin Americas geopolitical landscape, one in which each nations relationship with Israel emerges as a factor of utmost importance.

View File

@ -1,39 +0,0 @@
---
locale: en
title: 'From Peru, Dr. José Benjamín Pérez Matos Warns of the Temporary Nature of the Global Order and Calls for Redefining International Relations'
date: 2025-11-18
slug: 2025-11-18-from-peru-dr-jose-benjamin-perez-matos-warns-of-the-temporary-nature-of-the-global-order-and-calls-for-redefining-international-relations
place: ''
country: 'PE'
city: 'Lima'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-03.jpg'
tags: [Israel, 'Perú']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-03.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-06.jpg',
},
]
---
# From Peru, Dr. José Benjamín Pérez Matos Warns of the Temporary Nature of the Global Order and Calls for Redefining International Relations
***The leader of the Kingdom of Peace and Justice Center analyzed the global political landscape and argued for a strategic realignment among nations.***
*Lima, Perú — November 18, 2025*
In an address delivered in Shangrila, Puente Piedra, Dr. José Benjamín Pérez Matos presented an assessment of the evolving international political system, noting that the current model is undergoing a period of transformation and that current government decisions will directly impact their future position.
During his remarks, the president of the Kingdom of Peace and Justice Center argued that the global order is undergoing a structural transition, in which certain cities and actors are gaining prominence. Within this context, he affirmed: **“Israel will be the capital (Jerusalem, Israel) of the entire planet Earth,”** underscoring Jerusalems strategic relevance within his vision of the international landscape.
Dr. José Benjamín Pérez Matos directly addressed political leaders, urging them to rethink their analytical frameworks and adopt a long-term perspective. In this regard, he stated: **“Every gentile kingdom is temporary. Get that into your heads, politicians and leaders! The Eternal Kingdom is the Kingdom of the Messiah,”** arguing that the current system of power is not permanent.
Likewise, he highlighted the need for governments to align their policies with this vision, stating: **“If they were wise, they would turn to the Scriptures and say: I want to stand with Israel starting right now. All countries need to get their act together if they want to be part of that Messianic Kingdom; governments, legislatures, and the people need to start making preparations,”** linking political decision-making with the future role of nations on the global landscape.
In his message, addressed specifically to Peru, the Puerto Rican leader emphasized the need to prepare ahead of global changes, stating: **“Peru, get ready to enter that glorious Millennial Kingdom!”** This call extended to all of Latin America, where he proposed greater convergence on matters of foreign policy.
In this framework, he stated: **“May Latin America be seen, that entire map, under a single flag. We are not ashamed of Israel. With pride, we say: Israel is our brother!”**, projecting a vision of regional integration based on a shared international vision.
He concluded his remarks by reiterating Israels role within his conceptual framework, highlighting its centrality in global dynamics and its influence on the future direction of nations.

View File

@ -1,54 +0,0 @@
---
locale: en
title: 'Jerusalem as Global Capital: Push for Embassy Relocations Amid the Formation of a New International Landscape'
date: 2025-11-30
slug: 2025-11-30-jerusalem-as-global-capital-push-for-embassy-relocations-amid-the-formation-of-a-new-international-landscape
place: ''
country: 'PR'
order: 2
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-16.jpg'
tags: [Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-16.jpg',
},
]
---
***From Puerto Rico, an address presents Jerusalem as the center of the world order and calls on countries to relocate their diplomatic missions.***
*Cayey, Puerto Rico 30 de noviembre de 2025.*
In a recent address projecting a profound transformation of the international system, a vision was presented that positions Jerusalem as the future axis of global governance, urging States to relocate their embassies to the city in the near term.
The proposal introduces a paradigm shift in foreign policy, suggesting that the centrality of Jerusalem will carry not only symbolic but also practical implications for the structure of international power.
## A Redesign of the International System
The proposal presented from Cayey maintains that, in light of the consolidation of a new global order, international institutions will need to reconfigure their functioning and geographical location. In this context, it was noted that multilateral bodies such as the United Nations could undergo structural transformations, including relocating their headquarters.
During the address, it was stated: **“Each country must have its representation in the capital of that Messianic Kingdom,”** establishing that diplomatic presence in Jerusalem will be a central element for the participation of States in this new international framework.
The proposal calls for a complete reorganization of global governance mechanisms, with Jerusalem as the political and administrative hub.
## Jerusalem as a Strategic and Secure Space
One of the central points of the message was the security of diplomatic missions. It was stated that Jerusalem offers optimal conditions for establishing embassies, making it the most secure location for foreign delegations.
In this framework, countries that still maintain embassies in Tel Aviv were urged to consider transitioning to Jerusalem, in line with the projected new international landscape.
The argument combines elements of security, stability, and political centrality to substantiate the need for relocation.
## International Cooperation for the Transition
The message also included an explicit offer of support to those States that choose to move forward in this process. **“We will be helping the countries hand in hand,”** it was affirmed, highlighting the willingness to facilitate the relocation of diplomatic headquarters and promote an orderly transition.
This approach reinforces the active character of the proposal, which is not limited to a recommendation, but rather presents a framework of international cooperation for its implementation.
## Toward a New Global Architecture
The initiative presented from Puerto Rico is situated within a broader process of transformation of the world order, in which Jerusalem emerges as a central node in the reorganization of global power.
The relocation of embassies, in this context, is presented as a strategic decision with far-reaching implications, both in diplomatic and political terms.
Ultimately, the proposal underscores the need to anticipate an evolving landscape, in which the redefinition of centers of power and the relocation of institutional structures will shape the course of international politics in the years ahead.

View File

@ -1,46 +0,0 @@
---
locale: en
title: 'Latin America Accelerates Its Strategic Alignment: Regional Agreements Anticipate a New Global Axis with Projection Toward Jerusalem'
date: 2025-12-11
slug: 2025-12-11-latin-america-accelerates-strategic-alignment-regional-agreements-anticipate-new-global-axis-with-projection-toward-jerusalem
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
***A diplomatic report reveals that several countries in the region are already advancing in treaties and political definitions within the framework of an ongoing international reconfiguration***
*Cayey, Puerto Rico December 11, 2025*
Latin Americas political dynamic is going through a phase of accelerated transformation, marked by the signing of agreements and the redesign of strategic alliances. This is indicated by a recent diplomatic report noting that the region has begun to consolidate an axis of cooperation that projects Jerusalem as a future central point in the global architecture.
The document argues that this process does not respond solely to political declarations, but to concrete decisions that are already being implemented by various governments.
## Concrete Progress by Subregion
The report details that several Latin American countries have taken firm steps toward this new alignment framework, with particular emphasis on nations in the Southern Cone and Central America.
In this regard, Paraguay, Guatemala, and Costa Rica emerge as leading actors in the transition, driving bilateral and multilateral agreements that strengthen their ties with this new strategic axis. These initiatives reflect a political will to position themselves proactively ahead of the shifts taking place in the international landscape.
The report also identifies new additions to this trend, such as Ecuador and Honduras, which are beginning to progressively integrate into this framework of cooperation. In parallel, the case of Colombia is mentioned, where a potential change of government could become the determining factor for its full adhesion to the bloc.
## Projection Toward a New Global Center
The analysis introduces as its conceptual axis the consolidation of a new model of international organization, in which Jerusalem is projected as a central reference point in both administrative and symbolic terms.
According to the report, this process not only implies a redesign of political alliances, but also a transformation in the global perception of power and governance. It is described as a historical turning point that reconfigures relations between regions and redefines the strategic priorities of states.
## Latin America Takes the Lead
One of the most notable aspects of the document is the speed with which Latin American countries are advancing in this process. The region emerges as a proactive actor, capable of anticipating changes and positioning itself in a coordinated manner within an evolving global context.
The report concludes that this acceleration in decision-making suggests that 2026 will be a defining year for the consolidation of this diplomatic corridor between Latin America and Israel, marking a before and after in regional foreign policy.
Within this framework, Latin America is not merely participating in the global reordering, but emerging as one of its primary driving forces, consolidating a strategic axis that could redefine its role in the international system.

View File

@ -1,34 +0,0 @@
---
locale: en
title: 'Chilean Elections: Dr. José Benjamín Pérez Matos Links Voting to International Stance on Israel'
date: 2025-12-14
slug: 2025-12-14-chilean-elections-dr-jose-benjamin-perez-matos-links-voting-to-international-stance-on-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-37-19.jpg'
tags: [Israel, 'Puerto Rico', 'Chile']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-37-19.jpg',
},
]
---
# Chilean Elections: Dr. José Benjamín Pérez Matos Links Voting to International Stance on Israel
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center analyzed the Chilean presidential runoff and highlighted the strategic impact of electoral decisions in Latin America.***
*Cayey, Puerto Rico - December 14, 2025*
Amid Chiles presidential runoff election, Dr. José Benjamín Pérez Matos issued a statement analyzing the relevance of the electoral process—not only at the national level, but also in its regional and international ramifications, particularly regarding the nations stance toward Israel.
During his remarks, the president of the Kingdom of Peace and Justice Center highlighted José Antonio Kast, underscoring his political orientation and foreign policy stance. Within this context, he proposed that electoral decisions must be evaluated based on the strategic alignment of the candidates, noting: **“Chilean people: today is the day of the best decision you can make in this vote.”**
Dr. José Benjamín Pérez Matos maintained that the vote plays a decisive role in shaping the course of nations, not only in terms of domestic policy, but also regarding their integration into the international system. In his analysis, he affirmed that the stance toward Israel constitutes a central axis in projecting the stability and development of countries.
Furthermore, the Puerto Rican leader presented a regional vision, anticipating a process of greater cohesion among Latin American and Caribbean nations around this geopolitical axis. In this regard, he noted that current electoral processes could lay the groundwork for a realignment of international relations across the continent.
The message also called for active voter participation, emphasizing the importance of individual commitment in shaping each country's political direction. Within that framework, the need was highlighted for citizens to make informed decisions that contribute to the strategic positioning of their nations on the global landscape.
Dr. José Benjamín Pérez Matos's overarching argument presents the Chilean electoral process as a turning point with implications that transcend beyond the local level, extending its influence across Latin America and its relationship with the international landscape.

View File

@ -1,37 +0,0 @@
---
locale: en
title: 'Kasts Victory in Chile: Dr. José Benjamín Pérez Matos Interprets a Regional Political Shift in Latin America'
date: 2025-12-19
slug: 2025-12-19-kast-victory-in-chile-dr-jose-benjamin-perez-matos-interprets-a-regional-political-shift-in-latin-america
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico', 'Chile']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Kasts Victory in Chile: Dr. José Benjamín Pérez Matos Interprets a Regional Political Shift in Latin America
***From Puerto Rico, the leader of the Kingdom of Peace and Justice Center assessed the impact of the Chilean election and its implications for the continents political landscape.***
*Cayey, Puerto Rico December 19, 2025*
In remarks focused on the regional political landscape, Dr. José Benjamín Pérez Matos assessed the implications of José Antonio Kasts victory in Chiles presidential election, describing the outcome as a turning point in the broader process of ideological realignment in Latin America.
During his address, the president of the Kingdom of Peace and Justice Center argued that the Chilean election result should not be viewed as an isolated event, but rather as part of a wider trend unfolding across multiple countries in the region. In this context, he stated that a shift in political orientation is taking place, marked by the growing influence of right-wing movements.
In that regard, he stated: **“Now it is turning blue… What we are seeing is Gods hand working so that all of Latin America enters that glorious Millennial Kingdom,”** linking this political shift to a broader process of transformation across the continent.
The analysis also included a regional projection identifying countries that, in his view, have not yet adopted this political direction. In that context, nations such as Brazil, Venezuela, Colombia, Nicaragua, Haiti, and Cuba were mentioned as remaining outside this trend, which — according to the argument presented — affects their position within the emerging regional landscape.
Dr. José Benjamín Pérez Matos further stated that this process of change is not driven solely by domestic political dynamics, but is also connected to a broader reconfiguration of Latin Americas role within the international system, in which national leaderships are gaining strategic importance in shaping the future trajectory of their countries.
The concluding message referred to expectations that this process will consolidate in the near term, emphasizing the importance of current political decisions in determining the future direction of the region.
Overall, Dr. José Benjamín Pérez Matos presented the Chilean election as an indicator of political transformation in Latin America, with implications that extend beyond the electoral sphere and into the continents place internationally.

View File

@ -1,55 +0,0 @@
---
locale: en
title: '“The World is in Turmoil”: Warning of a Global Crisis and a Call for the Freedom of Nations'
date: 2026-01-06
slug: 2026-01-06-the-world-is-in-turmoil-warning-of-a-global-crisis-and-a-call-for-the-freedom-of-nations
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico', 'Venezuela', 'Gaza']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
***From Puerto Rico, a statement describes the beginning of 2026 as a period of intense international instability and growing pressure across multiple regions***
*Cayey, Puerto Rico January 6, 2026*
In a new assessment of the international situation, a stark overview of the current global landscape was presented, characterized by a simultaneous rise in political tensions, social conflicts, and structural crises across various regions of the world.
The message, issued from Cayey, states that the beginning of the year 2026 is marked by an unusual series of intense international events, as multiple centers of conflict converge during the same period.
## Latin America and the Caribbean Under Pressure
The analysis highlighted in particular the situation of countries such as Cuba, Nicaragua and Haiti, which continue to face profound difficulties related to political stability, institutional development, and social conditions.
These nations were identified as clear examples of the persistent challenges in the region, where processes of transformation encounter structural obstacles that hinder their resolution.
The focus on these countries reflects a sustained concern for the immediate future of Latin America and the Caribbean within the context of a broader global landscape.
## A Phenomenon of Global Reach
Beyond the continent of the Americas, the analysis underscores that instability is not a localized phenomenon, but rather a worldwide trend.
Reference was made to the **"difficult situations"** affecting various regions of Africa and to the complex reality of India, incorporating these territories into a broader map of global tensions.
At the same time, the assessment identified the Middle East as one of the most sensitive regions, particularly highlighting the situation in Iran and Syria, countries facing critical conditions and whose developments directly impacts regional and international stability.
## A Scenario of International Turmoil
The central concept of the statement was summarized in a direct assertion: **“The whole world is in turmoil,”** a phrase that seeks to capture the simultaneity and interconnectedness of the current crises.
The message not only presents an assessment, but also introduces a call for change with regard to these realities, with emphasis on the need for the affected nations to move toward greater stability.
The idea of “global turmoil” reinforces the perception that the international system is going through a critical phase, where traditional balances are being challenged by multiple concurrent factors.
## A Decisive Start to the Year
The evaluation concludes by noting that the year 2026 is shaping up to be a key period for the evolution of these processes. The accumulation of crises, combined with the pace of events, suggests that the international landscape could undergo significant short-term changes.
Within this context, the situation of nations affected by conflicts and structural tensions emerges as one of the main concerns on the global agenda.
The message leaves open an implicit question regarding the future course of the international system, at a moment when the convergence of crises could redefine the global balance of power.

View File

@ -1,36 +0,0 @@
---
locale: en
title: 'January 2026: Dr. José Benjamín Pérez Matos Analyzes Global Shifts Linking Historical Memory, the Gaza Crisis and the Regional Landscape'
date: 2026-01-27
slug: 2026-01-27-january-2026-dr-jose-benjamin-perez-matos-analyzes-global-shifts-linking-historical-memory-the-gaza-crisis-and-the-regional-landscape
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, 'Puerto Rico', 'Venezuela', 'Gaza']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# January 2026: Dr. José Benjamín Pérez Matos Analyzes Global Shifts Linking Historical Memory, the Gaza Crisis and the Regional Landscape
***Speaking from Puerto Rico, the leader of the Kingdom of Peace and Justice Center offered a comprehensive assessment of the international events that defined the start of the year.***
*Cayey, Puerto Rico January, 27 2026*
In remarks focused on the major international events of recent weeks, Dr. José Benjamín Pérez Matos presented an analysis connecting historical memory, the evolution of the Middle East conflict, and political transformations in Latin America.
The exhibition coincided with the commemoration of International Holocaust Remembrance Day. Within this context, the President of the Kingdom of Peace and Justice Center underscored the importance of keeping the memory of these events alive amid the unprecedented challenges that Israel is currently facing.
One of the main themes of the analysis was the situation in Gaza, particularly after authorities confirmed that the body of Ran Gvili, the last hostage that was still in captivity, had been recovered. In that regard, Dr. Pérez Matos emphasized the significance of this event as the closing of a critical chapter, in a context still marked by regional tensions, particularly with Iran.
At the same time, the analysis included an assessment of the political situation in Latin America, specifically regarding Venezuela. In that context, he suggested that an ongoing process of transformation was taking place that could lead to a shift in the country's international standing. In that sense, he expressed: **“We hope to see Venezuela establishing its Embassy in Jerusalem,”** pointing to the relevance of that decision within the proposed geopolitical landscape.
Dr. Pérez Matos further reiterated Jerusalems centrality within his vision of the global order, stating the need for countries to **“get their act together,”** defining their stance in the international arena.
He concluded his remarks by presenting January 2026 as a period of heightened political and strategic intensity, marked by converging events that, according to his analysis, will play a role in shaping the international order in the short and medium term.
The broader argument of Dr. José Benjamín Pérez Matos connects various global processes within one strategic assessment, interpreting recent events as part of a wider dynamic of transformation.

View File

@ -5,7 +5,6 @@ date: 2026-02-13
slug: 2026-02-13-3rd-international-congress-of-rabbis-in-puerto-rico slug: 2026-02-13-3rd-international-congress-of-rabbis-in-puerto-rico
city: San Juan city: San Juan
country: PR country: PR
tags: [Puerto Rico, Congress]
thumbnail: ' https://ik.imagekit.io/crpy/tr:w-900/Viernes-3.webp' thumbnail: ' https://ik.imagekit.io/crpy/tr:w-900/Viernes-3.webp'
gallery: [ gallery: [
{ {
@ -22,14 +21,8 @@ gallery: [
}, },
] ]
--- ---
# 3rd International Congress of Rabbis in Puerto Rico
**Religious leaders from four continents gathered to discuss intercultural dialogue, community development, and international cooperation.** **Religious leaders from four continents gathered to discuss intercultural dialogue, community development, and international cooperation.**
*San Juan, Puerto Rico February 13, 2026*
On Friday, February 13, 2026, the 3rd International Congress of Rabbis began in Puerto Rico, a meeting that brought together religious leaders and community representatives from Israel, the Philippines, Australia, Canada, Argentina, Uruguay, Guatemala, El Salvador, India, and Kenya. On Friday, February 13, 2026, the 3rd International Congress of Rabbis began in Puerto Rico, a meeting that brought together religious leaders and community representatives from Israel, the Philippines, Australia, Canada, Argentina, Uruguay, Guatemala, El Salvador, India, and Kenya.
The central focus of the conference was to strengthen intercultural dialogue, community leadership development, and the partnership of international social impact networks. The central focus of the conference was to strengthen intercultural dialogue, community leadership development, and the partnership of international social impact networks.

View File

@ -4,7 +4,6 @@ title: 'Official opening of the 3rd International Congress of Rabbis in Puerto R
date: 2026-02-15 date: 2026-02-15
slug: 2026-02-15-official-opening-of-the-3rd-international-congress-of-rabbis-in-puerto-rico slug: 2026-02-15-official-opening-of-the-3rd-international-congress-of-rabbis-in-puerto-rico
city: San Juan city: San Juan
tags: [Puerto Rico, Congress]
country: PR country: PR
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2026_02_15_congreso8.webp thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2026_02_15_congreso8.webp
gallery: [ gallery: [
@ -37,13 +36,8 @@ gallery: [
}, },
] ]
--- ---
# Official opening of the 3rd International Congress of Rabbis in Puerto Rico
**The meeting brought together educational and community leaders from different countries to strengthen institutional networks and promote academic exchange.** **The meeting brought together educational and community leaders from different countries to strengthen institutional networks and promote academic exchange.**
*San Juan, Puerto Rico February 15, 2026*
On Sunday, February 15, 2026, the 3rd International Congress of Rabbis began in Puerto Rico, marking the official start of an academic and work agenda that brought together religious and educational leaders from different regions of the world. On Sunday, February 15, 2026, the 3rd International Congress of Rabbis began in Puerto Rico, marking the official start of an academic and work agenda that brought together religious and educational leaders from different regions of the world.
The opening session underscored that the congress aims to transcend the traditional conference formats to serve as a space for institutional alignment, experience-sharing, and strengthening ties between communities. In that context, Dr. José Benjamín Pérez Matos, President of the Kingdom of Peace and Justice Center, emphasized the importance of the meeting providing an opportunity for reconnection and on-going partnership, beyond the scheduled panels and presentations. The opening session underscored that the congress aims to transcend the traditional conference formats to serve as a space for institutional alignment, experience-sharing, and strengthening ties between communities. In that context, Dr. José Benjamín Pérez Matos, President of the Kingdom of Peace and Justice Center, emphasized the importance of the meeting providing an opportunity for reconnection and on-going partnership, beyond the scheduled panels and presentations.

View File

@ -5,7 +5,6 @@ date: 2026-02-16
slug: 2026-02-16-closing-of-the-3rd-international-congress-of-rabbis-in-puerto-rico slug: 2026-02-16-closing-of-the-3rd-international-congress-of-rabbis-in-puerto-rico
city: Cayey city: Cayey
country: PR country: PR
tags: [Puerto Rico, Congress]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2026_02_16_cierre2.webp thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2026_02_16_cierre2.webp
gallery: [ gallery: [
{ {
@ -41,8 +40,6 @@ gallery: [
## The final day included an institutional visit to La Gran Carpa Catedral (The Great Tent Cathedral), an academic conference, and the presentation of the 2026 Amiel Award. ## The final day included an institutional visit to La Gran Carpa Catedral (The Great Tent Cathedral), an academic conference, and the presentation of the 2026 Amiel Award.
*Cayey, Puerto Rico February 16, 2026*
On Monday, February 16, 2026, the closing day of the 3rd International Congress of Rabbis featured an institutional visit to La Gran Carpa Catedral in Puerto Rico. On Monday, February 16, 2026, the closing day of the 3rd International Congress of Rabbis featured an institutional visit to La Gran Carpa Catedral in Puerto Rico.
The event brought together more than fifty rabbis from different countries, together with their families, in a gathering designed to strengthen the bonds formed during the days of academic and community work. The event brought together more than fifty rabbis from different countries, together with their families, in a gathering designed to strengthen the bonds formed during the days of academic and community work.

View File

@ -1,37 +0,0 @@
---
locale: en
title: From Paraguay, Jerusalem Projected as the Axis of the Future Global Political System
slug: 2026-02-26-from-paraguay-jerusalem-projected-as-the-axis-of-the-future-global-political-system
date: 2026-02-26
city: Asunción
tags: [Paraguay]
country: PY
thumbnail_square: 'https://ik.imagekit.io/crpy/photo_2026-05-05_12-41-04.jpg?tr=w-500,h-500,c-crop,ar-1:1'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-04.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-04.jpg',
},
]
---
# From Paraguay, Jerusalem Projected as the Axis of the Future Global Political System
***The analysis outlines a transformation in international governance, with Jerusalem as its institutional center.***
*Asunción, Paraguay February 26, 2026*
In a recent statement, Dr. José Benjamín Pérez Matos presented an assessment on the evolution of the international political system, highlighting the central role that, according to his view, Jerusalem will occupy in the configuration of the future global order.
During his address, the president of the Kingdom of Peace and Justice Center argued that the city of Jerusalem not only retains historical and symbolic relevance, but is emerging as a cornerstone in the structure of international governance.
In this context, he stated: **“It will be the capital of the entire planet Earth,”** underscoring its centrality in the coming order.
The statement also included a direct reference to the organization of the global normative system, asserting: **“The law shall go forth from there,”** an allusion to the concept of Jerusalem functioning as the nucleus from which juridical and administrative decisions will be structured on a worldwide scale.
Dr. Pérez Matos maintained that this scenario would entail a profound transformation in the dynamics of international relations, in which States will be required to adapt their policies and strategies in accordance with this new axis of power.
Furthermore, the analysis reinforces a line of thought previously articulated by the Puerto Rican leader, which posits the necessity for governments to reassess their diplomatic positioning regarding Israel, as part of a broader reconfiguration of the global order.
The statement presented from Asunción projects a long-term vision in which Jerusalem acquires a central role in the institutional architecture of the future, with direct implications for international policy and State-level decision-making.

View File

@ -6,21 +6,15 @@ date: 2026-02-26
order: 1 order: 1
city: Asunción city: Asunción
country: PY country: PY
tags: [Paraguay]
youtube: https://www.youtube.com/watch?v=MjmYkRTWhk0 youtube: https://www.youtube.com/watch?v=MjmYkRTWhk0
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/visitante-ilustre.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/visitante-ilustre.webp'
--- ---
# Dr. José Benjamín Pérez Matos Honored as “Distinguished Visitor” by Mariano Roque Alonso Municipality
*Asunción, Paraguay February, 26 2026*
Paraguays Municipality of Mariano Roque Alonso named Dr. José Benjamín Pérez Matos a “Distinguished Visitor” in recognition of his outstanding trajectory and leadership in the spiritual and social spheres internationally. Paraguays Municipality of Mariano Roque Alonso named Dr. José Benjamín Pérez Matos a “Distinguished Visitor” in recognition of his outstanding trajectory and leadership in the spiritual and social spheres internationally.
The honor was granted by **the Municipal Council under Resolution No. 010/2026**, which highlights the work of Dr. José Benjamín Pérez Matos and his commitment to strengthening human, spiritual, and altruistic values in communities around the world, as well as his support for individuals and communities in need. The honor was granted by **the Municipal Council under Resolution No. 010/2026**, which highlights the work of Dr. Pérez Matos and his commitment to strengthening human, spiritual, and altruistic values in communities around the world, as well as his support for individuals and communities in need.
The Municipalitys Director of Education and Culture, **María Estela Maidana**, presided over the presentation ceremony on behalf of Mayor **Carolina Aranda**. The ceremony underscored that Dr. José Benjamín Pérez Matos leadership has contributed to strengthening unity, faith, and social integration, creating a positive impact that transcends borders. The Municipalitys Director of Education and Culture, **María Estela Maidana**, presided over the presentation ceremony on behalf of Mayor **Carolina Aranda**. The ceremony underscored that Dr. Pérez Matos leadership has contributed to strengthening unity, faith, and social integration, creating a positive impact that transcends borders.
The resolution was signed by municipal officials including President of the Municipal Council, **Mirtha Salinas**, and Municipal Secretary, **Sandra Vidallet**, who endorsed the recognition in honor of Dr. José Benjamín Pérez Matos visit to the city. The resolution was signed by municipal officials including President of the Municipal Council, **Mirtha Salinas**, and Municipal Secretary, **Sandra Vidallet**, who endorsed the recognition in honor of Dr. Pérez Matos visit to the city.
Upon receiving the award, Dr. José Benjamín Pérez Matos expressed his gratitude for the honor and expressed his appreciation to the authorities and the community of Mariano Roque Alonso, reaffirming his commitment to promoting spiritual values, solidarity, and cooperation among peoples. Upon receiving the award, Dr. Pérez Matos expressed his gratitude for the honor and expressed his appreciation to the authorities and the community of Mariano Roque Alonso, reaffirming his commitment to promoting spiritual values, solidarity, and cooperation among peoples.

View File

@ -1,53 +0,0 @@
---
locale: en
title: 'Middle East Escalation: Warning Issued Over Large-Scale Conflict Following “Operation Roaring Lion” Against Iran'
slug: 2026-02-28-middle-east-escalation-warning-issued-over-large-scale-conflict-following-operation-roaring-lion-against-iran
date: 2026-02-28
city: Cayey
tags: [Puerto Rico, Iran, Israel]
country: PR
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp'
}
]
---
*Cayey, Puerto Rico 28 de febrero de 2026*
***Analysis from Puerto Rico warns of coordinated attacks, regional retaliation, and the risk of a global military escalation***
Amid heightened international tensions, Dr. José Benjamín Pérez Matos issued a warning regarding the rapid escalation of the conflict in the Middle East following the launch of a major military campaign known as “Operation Roaring Lion.” According to the analysis presented, the past several hours have seen a significant intensification of hostilities, with Israeli and U.S. forces taking direct part in strikes against strategic targets inside Iranian territory.
The scenario described marks a potential turning point in the regional dynamic, with possible repercussions on a global scale.
## Retaliation and Expansion of the Conflict Front
The analysis states that Irans response was immediate, triggering a chain of retaliatory actions that have widened the scope of the confrontation. Recent reports indicate attacks against facilities and positions linked to the United States at several strategic locations throughout the region, including Qatar.
According to these reports, Irans Revolutionary Guard allegedly confirmed significant damage to military infrastructure, including the destruction of radar systems, in response to the initial bombings.
This exchange of attacks points to a sustained escalation, as multiple actors begin to engage directly, increasing the risk of a broader conflict.
## Warning of a Global Consequences
Within the framework of the analysis, Dr. José Benjamín Pérez Matos issued a resounding warning about the possible consequences of the current developments. **“All of this is going to lead to that Third World War,”** he stated, emphasizing that the scale of the military deployment —described as the largest in decades— along with the possible involvement of additional nations, could trigger a major international crisis.
The warning highlights the possibility that the conflict could evolve from a regional confrontation into one with global implications.
## Protection of Civilians and Regional Stability
Despite the gravity of the situation, the message also included a call to prioritize the protection of human life amid the hostilities. Concern was expressed for the civilian population, particularly in Iran, highlighting the need to avoid innocent casualties in the midst of intense military activity.
At the same time, the importance of preserving Israels stability was emphasized in light of what was described as an existential confrontation.
This perspective introduces a humanitarian dimension into an analysis otherwise centered on strategic and military developments.
## A Turning Point in the International Order
The conclusion of the analysis suggests that the ongoing events should not be viewed merely as an isolated conflict, but rather as part of a broader process of transformation within the international system.
It further suggests that the current tensions reflect the weakening of traditional power structures and the emergence of new dynamics that could redefine the global balance of power.
In this context, the escalation in the Middle East is presented as one of the key factors shaping a **new international order** whose defining characteristics are still unfolding.

View File

@ -5,7 +5,6 @@ date: 2026-03-03
slug: 2026-03-03-statement-center-kingodm-of-peace-and-justice slug: 2026-03-03-statement-center-kingodm-of-peace-and-justice
place: '' place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1200/press-release.png' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1200/press-release.png'
tags: [Israel, Statement]
gallery: [ gallery: [
{ {
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
@ -14,7 +13,6 @@ gallery: [
--- ---
## Center Kingdom of Peace and Justice ## Center Kingdom of Peace and Justice
## Statement ## Statement
I address all political and religious leaders, as well as the people of Israel in general — the firstborn nation of God and a people beloved by Him. I address all political and religious leaders, as well as the people of Israel in general — the firstborn nation of God and a people beloved by Him.
@ -33,4 +31,4 @@ Israel will be the center of that world government, where Jerusalem will be the
Israel, you are not alone. The Latin people and I stand with you, and the God of Abraham, Isaac, and Jacob will also fight for you, just as He fought in times past. Israel will always live. Israel, you are not alone. The Latin people and I stand with you, and the God of Abraham, Isaac, and Jacob will also fight for you, just as He fought in times past. Israel will always live.
**Dr. José Benjamín Pérez Matos** **Dr. José Benjamín Pérez**

View File

@ -3,20 +3,9 @@ locale: en
title: 'Remarks for International Womens Day, dedicated to the Women of the Israeli Defense Forces' title: 'Remarks for International Womens Day, dedicated to the Women of the Israeli Defense Forces'
date: 2026-03-08 date: 2026-03-08
slug: 2026-03-08-remarks-for-international-womens-day-dedicated-to-the-women-of-the-israeli-defense-forces slug: 2026-03-08-remarks-for-international-womens-day-dedicated-to-the-women-of-the-israeli-defense-forces
tags: [Israel]
place: '' place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/photo_2026-05-06_19-02-54.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/woman-day-2.webp'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_19-02-54.jpg',
},
]
--- ---
# Remarks for International Womens Day, dedicated to the Women of the Israeli Defense Forces
*March 8, 2026*
This International Womens Day, I want to congratulate every woman who wears the uniform of the Israeli army. This International Womens Day, I want to congratulate every woman who wears the uniform of the Israeli army.
You carry the legacy of the women who, since the founding of this State, understood that peace is not something that is given, but something that is protected with determination. Whether in command posts, field operations, technology, or logistics, you are the backbone of our defense. You carry the legacy of the women who, since the founding of this State, understood that peace is not something that is given, but something that is protected with determination. Whether in command posts, field operations, technology, or logistics, you are the backbone of our defense.

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Purim 2026 and the New Global Landscape: Dr. José Benjamín Pérez Matos Analyzes the Strategic Impact Following the Operation Against Iran'
date: 2026-03-26
slug: 2026-03-26-purim-2026-and-the-new-global-landscape-dr-jose-benjamin-perez-matos-analyzes-the-strategic-impact-following-the-operation-against-iran
country: PR
city: Cayey
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Iran]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Purim 2026 and the New Global Landscape: Dr. José Benjamín Pérez Matos Analyzes the Strategic Impact Following the Operation Against Iran
**_From Puerto Rico, the international leader linked the recent events in the Middle East with a structural shift in the global order and the position of the nations._**
*Cayey, Puerto Rico March 26, 2026*
In the context of the 2026 Purim holiday, Dr. José Benjamín Pérez Matos presented a high-level geopolitical analysis of recent events in the Middle East, with special emphasis on the military operation attributed to Israel on Iranian territory and its strategic implications on a global scale.
During his presentation, Dr. José Benjamín Pérez Matos framed these events as a pivotal moment in international security dynamics, noting that the intervention succeeded in neutralizing a critical threat linked to the development of nuclear weapons. In this regard, he maintained that the operation should not be seen merely as a military strike, but as the dismantling of a structure whose aim —according to his analysis— is to eliminate the State of Israel.
In his conceptual framework, the leader drew a parallel with the historical narrative of Purim, maintaining that the current developments reflect a logic of confrontation that transcends well beyond the military domain. From this perspective, he characterized the scenario as the dismantling of a long-term geopolitical strategy designed to upend the regional balance of power through the threat of mass destruction.
One of the focal points of his address was the projection of a new international order. In that context, he declared unequivocally: **"Whether nations like it or not: Jerusalem will be the capital of the entire planet Earth.”** Building on this declaration, he put forward that states are facing a decisive moment in terms of strategic alignment.
Dr. José Benjamín Pérez Matos maintained that the current international political system is undergoing a phase of structural transformation, in which foreign policy decisions carry decisive weight in determining each nations future positioning. According to his analysis, ties with Israel are becoming a central factor within this process.
Likewise, he dedicated a portion of his presentation to questioning what he defined as an asymmetry in media coverage by international actors. In this regard, he pointed to the existence of a “double standard,” in the assessment of conflict, drawing attention to the contrast between the coverage of Israeli actions and the handling of Irans internal situation, particularly regarding the suppression of protests and civilian casualties.
In his view, this communicational phenomenon directly influences how global perspectives are shaped, conditioning both public opinion and the political decisions of different governments.
His closing remarks offered a clear definition of the international landscape, asserting that nations are facing a situation where remaining neutral is becoming harder by the day. In that regard, he argued that how a country positions itself in relation to Israel will serve as a decisive element in the political and strategic projection of states.

View File

@ -1,41 +0,0 @@
---
locale: en
title: 'Speaking From Cayey, Dr. José Benjamín Pérez Matos Addresses The Global Repurcussions Of Having An Anti-israel Stance'
date: 2026-04-02
slug: 2026-04-02-speaking-from-cayey-dr-jose-benjamin-perez-addresses-the-global-repurcussions-of-having-an-anti-israel-stance
place: ''
city: Cayey
country: PR
tags: [Puerto Rico]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/new-crpj-1.jpeg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-crpj-1.jpeg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-crpj-2.jpeg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-crpj-3.jpeg',
},
]
---
*Cayey, Puerto Rico April 2, 2026*
During a conference held on April 1, 2026, Dr. José Benjamín Pérez Matos delivered a message of profound spiritual significance and global reach, addressing with clarity and conviction Israels central role in the contemporary global order. His statement focused on the consequences that, according to the Sacred Scriptures, will befall the nations and leaders who hold positions against the State of Israel.
### Criticism of European Policy<br>
During his speech, Dr. José Benjamín Pérez Matos did not hesitate to firmly call out the political leanings of certain governments. Referring to the president of Spain in particular, he said: **“Woe to those who have stood against them, like Spain, with that president, a leftist who stands against the people of Israel.”** In this context, **he maintained that a “curse” now weighs upon the leader, as well as like-minded individuals, according to biblical principles.**
### A Call to Historical and Spiritual Awareness<br>
Dr. José Benjamín Pérez Matos emphasized that much of the hostility toward Israel stems from a deep lack of understanding of its historical and spiritual significance. **“If governments realized the importance of being in favor of Israel, they would stop speaking against its people,”** he stated emphatically.
He also called for a more rigorous analysis of international events, noting that many of those who voice opposition to Israel **“dont even know the program that God has been carrying out with its people.” In his view, Israel is not only a key geopolitical actor, but also an essential pillar for the stability of the Middle East and for the continuity of civilization itself. In his own words: “If Israel did not exist… which is the only democratic country there, the human race would not exist.”**
### Consequences According to the Sacred Scriptures<br>
The conference concluded with an eschatological reflection, in which Dr. José Benjamín Pérez Matos discussed the fate of nations in light of the fulfillment of biblical texts. In this regard, he maintained that any country that opposes Israel will face serious consequences, as established in the Sacred Scriptures, resulting in its exclusion from what is known as “the glorious Millennial Kingdom.”
He expressed that this outcome is not arbitrary, but rather a direct and inevitable consequence of the political decisions made by government leaders regarding the people of Israel, in the framework of the divine judgment described in the Bible.

View File

@ -1,59 +0,0 @@
---
locale: en
title: 'International Tensions and Warnings: Dr. José Benjamín Pérez Matos Analyzes the Spanish and French Stances Toward Israel'
date: 2026-04-11
slug: 2026-04-11-international-tensions-and-warnings-dr-jose-benjamin-perez-matos-analyzes-the-spanish-and-french-stances-toward-israel
country: 'PR'
city: Cayey
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280//banderas-1a1.png'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred//banderas-1a1.png',
},
]
tags: [Spain, France, Israel, Puerto Rico]
---
*Cayey, Puerto Rico April 11, 2026*
In an international context marked by growing diplomatic tensions in the Middle East and Europe, Dr. José Benjamín Pérez Matos, President of the Kingdom of Peace and Justice Center, gave an address linking current geopolitical decisions to a spiritual passage with global implications.
In his remarks, Dr. José Benjamín Pérez Matos stated that the actions of nations are, in many cases, out of touch with the Divine Program, which rules over historical and political events, he expressed.
**«There are nations that get ahead of the Divine Program, and instead of waiting for the promises that God has for mankind… Because, first of all, in order to be a president or governor or mayor who is aligned with the Divine Program, that leader must know the promises that God has for the time in which he is living; that way, he wont fail. He should instead be mindful of and well versed in all the blessings and promises He has promised in the Sacred Scriptures, to avoid going against them.».**
### Spain and Israel: Deteriorating Ties
In his analysis, Dr. José Benjamín Pérez Matos pointed to the specific example of relations between Spain and Israel, which have significantly deteriorated in recent weeks. He explained that the critical stance taken by the Spanish government has had direct consequences on the diplomatic front.
Among the measures taken, he pointed to Israeli Prime Minister Benjamin Netanyahus decision to remove Spanish representatives from the coordination center located in Kiryat Gat.
Describing the situation, Dr. José Benjamín Pérez Matos said:
**"We see the case of Spain, which has taken a stand against Israel. And look, today, or rather, yesterday (yesterday given the time difference, because Israel is six hours ahead), Prime Minister Benjamin Netanyahu removed Spanish representatives from a coordination center they have in Kiryat Gat; and its because of Spains anti-Israel stance. Israeli Prime Minister Benjamin Netanyahu stated that whoever does that will not be Israels partner."**
From this point, he delved into the implications which, in his view, transcend diplomacy:
**"And look, perhaps he (Prime Minister Benjamin Netanyahu) doesnt know or isnt aware of what he said there, but the Word has already been spoken, that Israel, in Jerusalem, will be the capital of the entire planet Earth. Therefore, any nation excluded from that Messianic Kingdom will not enter that glorious Millennial Kingdom."**
### France On the Same Path
The analysis also included France, whose relations with Israel are becoming increasingly strained. Tensions between President Emmanuel Macron and the Israeli government have risen in recent weeks, due to political, commercial, and diplomatic discord.
In this regard, Dr. José Benjamín Pérez Matos warned that France might be heading down a path similar to Spains:
**"And notice, they would not be part of that Kingdom because they have positioned themselves in opposition, and some have even cursed Israel. And they are not aware that in the Sacred Scriptures God said: He who blesses you shall be blessed, and he who curses you shall be cursed.»**
**And some say *'No, that was back in those early years, that was in the time of Moses.'***
**God does not go back on His Word, and all of that Word is still in effect. Israel is Gods firstborn son, and any nation that curses Israel will be cursed.**
**And notice, the President of France, whom Israel has also closed its doors on recently, is heading down the same path.”.**
### Jerusalem and the Future Order
Finally, Dr. José Benjamín Pérez Matos concluded with a reflection on the role of Israel and Jerusalem in the global future, based on his interpretation of the Scriptures:
**“Now notice, that Word has already been spoken: Israel will be the capital of the entire planet Earth. Therefore, all nations will be ruled from Jerusalem; and any nation that does not align itself with Gods firstborn nation, Israel, will be excluded from the blessing of that Kingdom. In some cases, for trying to get ahead by speaking hastily instead of becoming attuned to the promises and blessings that God has, which will be established at this end time.”**
Dr. José Benjamín Pérez Matoss approach introduces a spiritual dimension to international affairs analysis, suggesting that current political decisions could have deeper implications for the future of nations.

View File

@ -1,38 +0,0 @@
---
locale: en
title: 'Unwavering Support For Israel and Call for the Hostages: Dr. José Benjamín Pérez Matos Reaffirms His Message Amidst a Crisis'
date: 2025-04-18
slug: 2025-04-18-unwavering-support-for-israel-and-call-for-the-hostages-dr-jose-benjamin-perez-matos-reaffirms-his-message-amidst-a-crisis
country: 'PR'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_10-15-27.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-04_10-15-27.jpg',
},
]
tags: [Puerto Rico, Israel]
---
# Unwavering Support For Israel and Call for the Hostages: Dr. José Benjamín Pérez Matos Reaffirms His Message Amidst a Crisis
*Cayey, Puerto Rico April 18, 2025*
**Puerto Rico, April 18, 2025**.As part of an event held in Cayey, Dr. José Benjamín Pérez Matos delivered a message with strong humanitarian and geopolitical content, focusing on the current situation in the State of Israel and the urgent need to free the hostages who remain in captivity.
During his remarks, Dr. José Benjamín Pérez Matos called for prayers for the safety of Israel and its officials, emphasizing the need for protection and guidance in a highly complex situation:
**“We pray for Israel. May God keep Israel, protect Israel, guide the leaders as well; and may they also be delivered, freed; may those who remain be released soon.”**
The message also included a reaffirmation of the leaders personal commitment to the Israeli people, highlighting that his support is not limited to speeches, but involves a willingness to take action:
**“I will do whatever I have to do for them; whether from here or being there; and they know they have my full support; and therefore, all of you are behind me.”**
In a deeply sensitive tone, Dr. José Benjamín Pérez Matos referred to the testimonies of survivors and the reports published by international media regarding the conditions of captivity, expressing his outrage at the persistence of these events in the current context:
**“How is it possible that this is happening in the 21st century!”**
Furthermore, the declaration added a perspective of future projections, placing current events within a broader framework of transformation. Likewise, Dr. José Benjamín Pérez Matos emphasized the expectation of a scenario in which current conflicts will no longer exist:
**“Now, notice that something is moving; because, remember that in the Millennium it will be a Kingdom with a rod of iron. These things wont happen there, believe me, that wont happen.”**
This statement reaffirms a clear stance in support of Israel, combining an urgent humanitarian call with a broader interpretation of the international landscape, in a context where unfolding events continue to have global repercussions.

View File

@ -1,37 +0,0 @@
---
locale: en
title: 'Urgency For Peace: Dr. José Benjamín Pérez Matos Calls for the Immediate Release of the Hostages of Israel'
date: 2025-04-27
slug: 2025-04-27-urgency-for-peace-dr-jose-benjamin-perez-matos-calls-for-the-immediate-release-of-the-hostages-of-israel
country: 'PR'
city: Cayey
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_08-01-09.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-04_08-01-09.jpg',
},
]
tags: [Puerto Rico, Israel]
---
# Urgency For Peace: Dr. José Benjamín Pérez Matos Calls for the Immediate Release of the Hostages in Israel
*Cayey, Puerto Rico April 27, 2025*
The situation in the Middle East was addressed by Dr. José Benjamín Pérez Matos during an activity held in Cayey, where he emphasized the need towards a lasting truce and, as a priority, to achieve the immediate release of the hostages who remain in captivity in Israel.
During his intervention, he referred to ongoing negotiations, noting that diplomatic efforts are aimed at a possible medium-term peace agreement. However, he stressed the importance that any understanding must include an immediate resolution regarding the exchange of hostages, avoiding unnecessary prolongation of the process.
On this matter, Dr. José Benjamín Pérez Matos expressed his desire for a swift resolution to the conflict:
**“We desire that they be released soon, and that an agreement be made soon.”**
The message also included a strong criticism for the conditions reported regarding the treatment of the hostages. Based on known reports, Dr. José Benjamín Pérez Matos manifested his rejection of acts of violence and mistreatment, describing them as incompatible with any humanitarian standard:
**“I was also hearing, from the authorities, what a hard time those people have over there; and they say that those doing those things cant be human beings; they are not animals. But they will have their reward.”**
In the conclusion of his intervention, Dr. José Benjamín Pérez Matos made a direct call to the community to maintain an active posture of spiritual support in the face of the crisis:
**“Pray a lot for Israel.”**
The statement reaffirms a sustained position in support of the State of Israel, combining an urgent call for humanitarian action with an expectation of resolution through diplomatic means, in an international scenario that continues to be closely monitored.

View File

@ -1,42 +0,0 @@
---
locale: es
title: 'Señales de una transformación global: advertencias sobre Israel y el clima en el Medio Oriente'
date: 2023-07-27
slug: 2023-07-27-senales-de-una-transformacion-global-advertencias-sobre-israel-y-el-clima-en-el-medio-oriente
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/Lake-Urmia_NASA.-2.webp'
tags: [Irán, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/Lake-Urmia_NASA.-2.webp',
text_alt: 'Lake Urmia in Iran in 2020 (left) and 2023 (right), after being desiccated by drought. NASA'
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-2.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-3.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/new-042226-4.jpg',
},
]
---
# Señales de una transformación global: advertencias sobre Israel y el clima en el Medio Oriente
*Cayey, Puerto Rico 27 de julio de 2023*
Bajo la lupa del contexto internacional actual, el Dr. José Benjamín Pérez Matos abordó con un análisis profundo una serie de acontecimientos que, según su interpretación, reflejan una transformación de gran escala en la historia de la humanidad. Sus declaraciones pusieron el foco tanto en la situación interna de Israel como en los fenómenos climáticos extremos que afectan al Medio Oriente, estableciendo una conexión entre ambos como señales de un proceso mayor en desarrollo.
El Dr. José Benjamín Pérez Matos señaló que estos cambios no deben entenderse como hechos aislados, sino como parte de una etapa que comienza de manera gradual, pero que está destinada a evolucionar hacia escenarios de mayor magnitud.
En relación con Israel, el análisis destacó el nivel de inestabilidad social que atraviesa el país, marcado por manifestaciones y tensiones internas que, según lo expresado, no tienen precedentes recientes:
**“Israel por otro lado, miren todas las cosas que están pasando allí en Israel, todas esas manifestaciones y todo, lo que nunca ha habido allá en Israel en estos días”.**
El diagnóstico también incluyó una referencia directa a la crisis climática, particularmente a las temperaturas extremas registradas en Irán, interpretadas como una advertencia sobre escenarios futuros de mayor severidad:
**“El sol también, en Irán, están diciendo que ya está a ciertos grados: 150 °F (creo que es), que es lo que aguanta un ser humano, algo así; ya allí el sol está a esos grados. Pero recuerden que dice la Escritura que el sol calentará como siete veces más. Así que imagínate, si ahora el sol esta así ¡¿cómo será en ese tiempo de la tribulación?! Eso es algo bien terrible, lo que vendrá a la raza humana”.**
Las declaraciones configuran una lectura integral del presente, donde los acontecimientos políticos, sociales y ambientales se entrelazan bajo una misma perspectiva interpretativa. En este marco, el Dr. José Benjamín Pérez Matos plantea la necesidad de observar estos procesos con atención, entendiendo que forman parte de un cambio estructural más amplio que impactará a toda la humanidad.

View File

@ -1,37 +0,0 @@
---
locale: es
title: 'Alerta diplomática en América Latina: advierten consecuencias tras ruptura de relaciones con Israel'
date: 2023-11-01
slug: 2023-11-01-alerta-diplomatica-en-america-latina-advierten-consecuencias-tras-ruptura-de-relaciones-con-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-15-10.jpg'
tags: [Israel, Puerto Rico, Bolivia, El Salvador, Nicaragua]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-15-10.jpg',
},
]
---
# Alerta diplomática en América Latina: advierten consecuencias tras ruptura de relaciones con Israel
***Desde Puerto Rico, el Dr. José Benjamín Pérez Matos analizó el escenario geopolítico regional y alertó sobre el impacto que podrían enfrentar los países que adoptan posiciones adversas hacia Israel.***
*Cayey, Puerto Rico 1 de noviembre de 2023*
En un contexto internacional marcado por alta tensión geopolítica tras los acontecimientos del 7 de octubre, el Dr. José Benjamín Pérez Matos, presidente de La Gran Carpa Catedral, emitió una advertencia contundente sobre las decisiones diplomáticas que algunos países de América Latina están adoptando respecto al Estado de Israel.
Durante su intervención, el líder puertorriqueño puso el foco en lo que describió como una distorsión del relato internacional, en el cual —según su análisis— se intenta invertir los roles del conflicto. En ese sentido, denunció la construcción de una narrativa que presenta a Israel como agresor, desdibujando el origen de las hostilidades.
En paralelo, el Dr. José Benjamín Pérez Matos analizó con preocupación el giro diplomático que comienza a evidenciarse en la región, particularmente a partir de decisiones recientes como la ruptura de relaciones por parte de Bolivia. Al respecto, expresó con firmeza: **“Estuve viendo que Bolivia, creo que fue otro país que iba a estar rompiendo relaciones con Israel; no sé si ya lo hicieron. ¡En tremendo problema se metieron!”.**
Tras confirmarse la medida, profundizó su análisis con una advertencia directa: **«“Bolivia rompe relaciones con Israel”. O sea que ya todo eso estamos viendo cómo está ocurriendo. ¡Imagínate! O sea que tiene que haber un motivo para que reciban lo que tengan que recibir».**
El planteo del Dr. José Benjamín Pérez Matos no se limitó a un análisis puntual, sino que se extendió a una lectura más amplia del posicionamiento regional. En ese marco, sostuvo que las decisiones de política exterior en relación con Israel no son neutras ni aisladas, sino que pueden tener consecuencias profundas para los países involucrados. En sus palabras: **«Deseamos que la América Latina no sufra y no tenga consecuencias tan desastrosas; pero ya, un país que se vaya en contra de Israel, dice que “el que te bendiga será bendito, y el que te maldiga será maldito”».**
El análisis también incluyó a otros países de la región, particularmente Chile y Colombia, en relación con sus recientes decisiones diplomáticas. Sobre este punto, el Dr. José Benjamín Pérez Matos hizo referencia a los movimientos de ambos Gobiernos al llamar a consulta a sus embajadores en Israel, interpretando estas acciones como parte de una tendencia regional que, a su juicio, responde a presiones externas más amplias.
Desde su perspectiva, este tipo de posicionamientos reflejan un alineamiento internacional que podría acarrear consecuencias para los Estados que los adoptan. En ese sentido, advirtió sobre el riesgo de que una serie de decisiones diplomáticas en cadena configuren un escenario de mayor inestabilidad regional.
El mensaje final dejó en claro una preocupación central: el impacto que estas decisiones podrían tener no solo en el plano diplomático, sino también en el futuro político y estratégico de América Latina.

View File

@ -1,38 +0,0 @@
---
locale: es
title: 'Escalada entre Irán e Israel: advertencias sobre un posible cambio de era en el escenario global'
date: 2024-04-13
slug: 2024-04-13-escalada-entre-iran-e-israel-advertencias-sobre-un-posible-cambio-de-era-en-el-escenario-global
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-42-30.jpg'
tags: [Israel, Irán]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-42-30.jpg',
},
]
---
# Escalada entre Irán e Israel: advertencias sobre un posible cambio de era en el escenario global
*Cayey, Puerto Rico 13 de abril de 2024*
El escenario internacional experimentó un giro abrupto en las últimas horas tras el ataque lanzado por Irán contra Israel, en una escalada militar que generó preocupación a nivel global. Al respecto, el Dr. José Benjamín Pérez Matos se refirió a la situación desde La Gran Carpa Catedral, ofreciendo una interpretación de los acontecimientos en clave geopolítica y profética.
Durante su intervención, el Dr. José Benjamín Pérez Matos describió la inmediatez y gravedad del ataque, haciendo referencia a la información que circulaba en tiempo real:
**“Hoy sábado 13 de abril de este año 2024, hemos estado viendo en las noticias —los que han estado viendo las noticias—, de ese ataque que ha sido enviado por Irán, en donde ha enviado drones, diferentes ataques aéreos, los cuales, según la noticia, estarían llegando dentro de una hora, hora y media o dos horas”.**
En su pronunciamiento, también destacó el rol histórico del Medio Oriente como epicentro de tensiones internacionales, subrayando la recurrencia de conflictos en la región:
**“Y conscientes de que siempre el pueblo hebreo ha estado en estas guerras…; porque vean, la mecha siempre es allá en el Medio Oriente. Y sabemos que de un momento a otro se va a desatar esa Tercera Guerra Mundial”.**
Asimismo, el Dr. José Benjamín Pérez Matos planteó que estos acontecimientos forman parte de un proceso de transformación mayor, vinculado a una etapa de transición de carácter histórico y espiritual:
**“Y hay una promesa para Israel, en donde será restaurado el Trono de David; para lo cual hay una serie de eventos que estarán llevándose a cabo en este cambio de reino, del reino de los gentiles al Reino del Mesías-Príncipe”.**
Mientras los drones surcaban los cielos y la tensión crecía minuto a minuto, la comunidad internacional observó con preocupación la posibilidad de una escalada hacia un conflicto de mayor envergadura. En ese contexto, el mensaje final del Dr. José Benjamín Pérez Matos incluyó un llamado a la atención y a la reflexión sobre los acontecimientos en curso, instando a seguir de cerca la evolución de la situación en el Medio Oriente y a mantener una actitud de oración por el Estado de Israel.
Los hechos recientes reafirman el carácter volátil del escenario internacional y la centralidad estratégica del Medio Oriente, en un ámbito donde cada movimiento puede tener implicancias globales.

View File

@ -1,34 +0,0 @@
---
locale: es
title: 'Mensaje a Israel en tiempos decisivos: respaldo, y llamado a la sabiduría'
date: 2024-04-15
slug: 2024-04-15-mensaje-a-israel-en-tiempos-decisivos-respaldo-y-llamado-a-la-sabiduria
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Mensaje a Israel en tiempos decisivos: respaldo, y llamado a la sabiduría
*Cayey, Puerto Rico 15 de abril de 2024*
En un contexto internacional marcado por tensiones crecientes en el Medio Oriente, el Dr. José Benjamín Pérez Matos emitió un mensaje de respaldo y bendición dirigido al pueblo de Israel, destacando la importancia de la toma de decisiones en un momento considerado clave para el futuro de la región.
Desde Cayey, Puerto Rico, el Dr. José Benjamín Pérez Matos dirigió sus palabras tanto a los líderes como al pueblo hebreo, enfatizando la necesidad de actuar con sabiduría y responsabilidad en un escenario de alta complejidad:
“Que Dios bendiga a Israel, que Dios bendiga al pueblo hebreo, que tomen las decisiones correctas”.
El mensaje no solo transmitió apoyo, sino también una perspectiva de esperanza vinculada a acontecimientos futuros. En ese sentido, el Dr. José Benjamín Pérez Matos expresó su anhelo de que el pueblo de Israel pueda recibir con claridad y prontitud aquello que, según su visión, se aproxima:
“Que Dios les ponga en su corazón lo que pronto ellos van a recibir”.
Estas declaraciones se inscriben en una línea de acompañamiento constante, donde la fe y la dimensión espiritual se presentan como elementos centrales de cohesión y orientación. En este marco, la comunidad que sigue al Dr. José Benjamín Pérez Matos reafirma su respaldo a Israel, destacando el papel de la oración y la convicción como factores que trascienden fronteras.
El mensaje emitido desde Puerto Rico se suma así a una serie de pronunciamientos que subrayan la relevancia del momento actual, consolidando una postura clara de apoyo y seguimiento atento a la evolución de los acontecimientos en el escenario internacional.

View File

@ -1,56 +0,0 @@
---
locale: es
title: 'El milagro de Israel a 76 años: soberanía, conflicto y la proyección de una promesa global'
date: 2024-05-14
slug: 2024-05-14-el-milagro-de-israel-a-76-anos-soberania-conflicto-y-la-proyeccion-de-una-promesa-global
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# El milagro de Israel a 76 años: soberanía, conflicto y la proyección de una promesa global
*Cayey, Puerto Rico 14 de mayo de 2024*
El 14 de mayo marca una de las fechas más determinantes del siglo XX en términos geopolíticos. A 76 años de la creación del Estado de Israel, el Dr. José Benjamín Pérez Matos propone una lectura que excede los marcos tradicionales del análisis internacional, situando a la nación hebrea no solo como un actor central del sistema global, sino como el eje de un proceso de alcance histórico y trascendente.
Desde Cayey, el líder retomó los libros desarrollados por el Dr. William Soto Santiago para interpretar la existencia misma de Israel como un fenómeno excepcional. En su análisis, la continuidad del Estado israelí —nacido tras la devastación del Holocausto— no responde únicamente a dinámicas políticas o militares, sino a una lógica más profunda que combina historia, identidad y proyección estratégica.
## De la resolución internacional a la consolidación estatal
El punto de partida del planteo se encuentra en la Resolución 181 de las Naciones Unidas, aprobada en 1947, que abrió el camino para la creación del Estado de Israel en 1948. Lejos de interpretarlo como un hecho aislado, el Dr. José Benjamín Pérez Matos lo ubica como el inicio de un proceso sostenido de reconstrucción nacional con impacto global.
En ese sentido, sostuvo: **“La supervivencia de Israel no puede analizarse únicamente en términos políticos; estamos ante el mayor milagro de la era moderna, tanto en lo político como en lo espiritual”**, destacando que la consolidación del Estado no fue un evento circunstancial, sino la expresión de un proceso de mayor alcance.
El análisis reconoce las rupturas históricas del pueblo judío —incluyendo la pérdida de su territorio en la antigüedad—, pero subraya que el retorno a la tierra en el siglo XX representa un punto de inflexión que redefine su rol en el sistema internacional contemporáneo.
## Israel en el centro del sistema internacional
Para el Dr. José Benjamín Pérez Matos, el posicionamiento actual de Israel no es casual. Su influencia política, tecnológica y militar, sumada a su constante presencia en la agenda global, lo convierten en un actor ineludible en cualquier análisis de estabilidad regional y mundial.
Más allá de las tensiones persistentes en Medio Oriente, su planteo sugiere que Israel opera como un **nodo estratégico**, donde convergen intereses geopolíticos, disputas ideológicas y dinámicas de poder de escala global.
En este marco, la ciudad de Jerusalén adquiere un valor singular, no solo como centro político y religioso, sino como punto de referencia constante para la comunidad internacional.
## Expectativa estratégica y proyección futura
Uno de los aspectos más relevantes del planteo es la idea de que Israel atraviesa actualmente una etapa de **“expectativa estratégica”**, en la que, pese a los conflictos vigentes, se estaría gestando un cambio de mayor magnitud.
Sobre este punto, el Dr. José Benjamín Pérez Matos afirmó: **“Israel se encuentra en un momento de expectativa estratégica. Todo apunta a una señal determinante que marcará el inicio de una nueva etapa en su historia”**, introduciendo la noción de un proceso aún inconcluso, pero en desarrollo.
Esta interpretación proyecta el escenario israelí más allá de la coyuntura, situándolo dentro de una dinámica de transformación que, según su visión, tendrá repercusiones globales.
## Un actor central en un escenario de incertidumbre
En un contexto internacional caracterizado por alianzas volátiles, conflictos prolongados y reconfiguraciones de poder, el Dr. José Benjamín Pérez Matos plantea una postura clara: Israel no puede ser entendido únicamente como un Estado en conflicto, sino como un actor estructural del orden internacional.
En sus palabras finales, sintetizó esta visión: **“Israel no es solo un actor geopolítico; es el eje de un Programa que está a punto de manifestarse plenamente ante el mundo”**, consolidando una lectura que combina análisis político con proyección de largo plazo.
A 76 años de su fundación, el Estado de Israel continúa ocupando un lugar central en la agenda global, no solo por sus conflictos, sino por su capacidad de influir —directa o indirectamente— en la configuración del escenario internacional.

View File

@ -1,34 +0,0 @@
---
locale: es
title: 'Llamado internacional por Israel y Venezuela: fe, libertad y advertencias sobre un cambio global'
date: 2024-08-03
slug: 2024-08-03-el-llamado-internacional-por-israel-y-venezuela-fe-libertad-y-advertencias-sobre-un-cambio-global
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_14-49-46.jpg'
tags: [Venezuela, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_14-49-46.jpg',
},
]
---
# Llamado internacional por Israel y Venezuela: fe, libertad y advertencias sobre un cambio global
*Cayey, Puerto Rico 3 de agosto de 2024*
En el marco mundial donde predominan los conflictos sociopolíticos, el Dr. José Benjamín Pérez Matos emitió un pronunciamiento en el que vinculó la dimensión espiritual con la realidad geopolítica actual, convocando a la oración por dos naciones en crisis: Israel y Venezuela.
El mensaje, cargado de sentido de urgencia, planteó la necesidad de restaurar el orden y la estabilidad en regiones clave, destacando el impacto que estos procesos tienen sobre los derechos fundamentales y el bienestar de sus poblaciones:
“Que Dios bendiga a Israel, que Dios bendiga también a Venezuela, que son los países que actualmente están pasando por situaciones difíciles; y demás países también, porque de una forma u otra ya los reinos de este mundo pronto vendrán a ser los Reinos del Mesías”.
Uno de los ejes centrales del mensaje estuvo puesto en la situación de Venezuela, donde el Dr. José Benjamín Pérez Matos hizo referencia al sufrimiento prolongado de la población y a la necesidad de un cambio estructural que permita recuperar la libertad y la dignidad:
“El clamor de los hijos de Dios es que puedan estar libres de esa condición que los ha estado oprimiendo por tantos años”.
El pronunciamiento también incorporó una perspectiva más amplia sobre los conflictos en el Medio Oriente, interpretando los acontecimientos actuales como parte de un proceso de transformación de mayor alcance. En este marco, las “situaciones difíciles” que atraviesan distintas naciones fueron presentadas como señales de una transición hacia un nuevo orden.
La jornada concluyó con una bendición extensiva a otros países y un llamado a mantener una actitud de vigilancia y oración frente a los cambios en curso, en un escenario internacional que continúa evolucionando con rapidez y complejidad.

View File

@ -1,37 +0,0 @@
---
locale: es
title: 'Advertencia global desde Puerto Rico: Israel en emergencia y renovado llamado por la libertad de Venezuela'
date: 2024-08-25
slug: 2024-08-25-advertencia-global-desde-puerto-rico-israel-en-emergencia-y-renovado-llamado-por-la-libertad-de-venezuela
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-22.jpg'
tags: [Venezuela, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-22.jpg',
},
]
---
# Advertencia global desde Puerto Rico:Israel en emergencia y renovado llamado por la libertad de Venezuela
*Cayey, Puerto Rico 25 de agosto de 2024*
En una conferencia multitudinaria y con alcance internacional a través de transmisión satelital, el Dr. José Benjamín Pérez Matos emitió un mensaje de fuerte contenido geopolítico y espiritual, centrado en la situación crítica en el Medio Oriente y en la persistente crisis que atraviesa Venezuela.
Ante miles de asistentes, el Dr. José Benjamín Pérez Matos abordó la emergencia de 48 horas declarada en Israel tras el lanzamiento de cientos de cohetes desde el Líbano, un episodio que incrementó la tensión en la región y encendió las alertas a nivel internacional. En su intervención, contextualizó estos hechos dentro de un marco más amplio de interpretación:
**«Para Israel habrá una promesa muy pero que muy grande que está cristalizándose»**.
Lejos de limitarse a una lectura de crisis, el mensaje enfatizó una perspectiva de proceso en desarrollo, aludiendo a un escenario de transformación que trasciende los acontecimientos inmediatos. En ese sentido, el Dr. José Benjamín Pérez Matos señaló que los eventos actuales deben ser observados como parte de un “despertar mundial” vinculado al devenir de Israel.
La intervención también dedicó un espacio central a la situación en Venezuela, donde el líder elevó un llamado público por la libertad del país, haciendo referencia a las condiciones que afectan a su población:
**«Que Dios escuche al clamor de Sus hijos»**.
El mensaje reforzó la idea de que la situación venezolana constituye un punto crítico dentro del panorama regional, destacando la necesidad de un cambio que permita restablecer condiciones de libertad y dignidad para su pueblo.
En el tramo final de la conferencia, el Dr. José Benjamín Pérez Matos amplió su mensaje hacia América Latina, convocando a una visión de unidad y preparación ante lo que definió como un período de transición. En este contexto, subrayó que, más allá de las dificultades previstas, la fe y la oración se presentan como elementos centrales para afrontar los desafíos venideros.
El pronunciamiento reafirma una línea de análisis que combina la lectura de los acontecimientos internacionales con una perspectiva de largo alcance, en un escenario global caracterizado por su creciente complejidad e incertidumbre.

View File

@ -1,36 +0,0 @@
---
locale: es
title: 'El “error más grande” en Medio Oriente: el Dr. José Benjamín Pérez Matos advierte sobre el impacto de la presión internacional contra Israel'
date: 2024-10-08
slug: 2024-10-08-el-error-mas-grande-en-medio-oriente-el-dr-jose-benjamin-perez-matos-advierte-sobre-el-impacto-de-la-presion-internacional-contra-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_15-19-30.jpg'
tags: [Israel, Irán, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_15-19-30.jpg',
},
]
---
# El “error más grande” en Medio Oriente: el Dr. José Benjamín Pérez Matos advierte sobre el impacto de la presión internacional contra Israel
*Cayey, Puerto Rico 8 de octubre de 2024*
_Desde Puerto Rico, el líder del Centro del Reino de Paz y Justicia analizó el escenario militar y geopolítico tras la escalada de ataques contra el Estado de Israel._
En el contexto de la intensificación del conflicto en Medio Oriente, el Dr. José Benjamín Pérez Matos presentó un análisis sobre la situación de seguridad que enfrenta el Estado de Israel, poniendo el foco en la multiplicidad de frentes activos y en las implicancias estratégicas para las naciones involucradas.
Durante su intervención, el presidente del Centro del Reino de Paz y Justicia describió el entorno regional como un escenario de presión simultánea sobre Israel, destacando la participación de distintos actores estatales y no estatales. En ese sentido, señaló: **«Y también vemos a Israel, tiene ataques por todos los frentes: por el sur, el norte, en el Líbano, por el… ahora, ese país de Irán»**, aludiendo a la complejidad del mapa de amenazas en la región.
El Dr. Pérez Matos también subrayó la asimetría territorial y estratégica entre Israel y algunos de sus adversarios, planteando que esta diferencia condiciona el desarrollo del conflicto. En ese aspecto, afirmó: **«Imagínense, si usted ve, Israel es una franjita finitita. ¡Abusadores que son! Humanamente, un país tan grande como Irán se meten con una franjita ahí que casi lo están echando, acorralándolos para el mar; y tiran, ¿cuántas bombas?, doscientas y pico de bombas... y no saben que están tocando al Dios de Israel».**
El análisis del líder puertorriqueño incluyó una advertencia dirigida a los Gobiernos y actores que adoptan posiciones contrarias a Israel, señalando que estas decisiones pueden tener consecuencias de gran magnitud. En sus palabras: **«Meterse con Israel es el error más grande que una nación pueda tener en este tiempo, como nación. Y meterse con el Israel celestial... ¡es el error más grande que una persona en este tiempo —ministro, grupo, personas individuales—, es el error más grande que están llevando a cabo!»**.
En la misma línea, enfatizó que la continuidad de las acciones militares contra Israel podría derivar en escenarios de alta gravedad. Al respecto, expresó: «Pueden seguir haciendo lo que están haciendo; como las naciones: bombardeando, haciéndole daño a Israel. Lo que les espera ¡es terrible!...».
En el cierre de su intervención incluyó un mensaje de respaldo hacia el pueblo israelí, en el que reafirmó su postura frente al conflicto y la situación internacional. En ese marco, sostuvo: **«Oramos por Israel, que Dios los guarde, los cuide»**, destacando la importancia de la protección en un contexto de creciente tensión.
El planteamiento general del Dr. José Benjamín Pérez Matos configura una advertencia sobre el impacto de las decisiones políticas y militares en el escenario internacional, subrayando que el posicionamiento de los Estados frente a Israel se presenta como un factor determinante en la evolución del conflicto.

View File

@ -1,31 +0,0 @@
---
locale: es
title: 'En Jerusalén: visita a la Yeshivá Yesod HaTorah y un mensaje sobre el futuro de Israel como centro global'
date: 2024-12-17
slug: 2024-12-17-en-jerusalen-visita-a-la-yeshiva-yesod-hatorah-y-un-mensaje-sobre-el-futuro-de-israel-como-centro-global
place: ''
country: 'IL'
city: 'Jerusalén'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# En Jerusalén: visita a la Yeshivá Yesod HaTorah y un mensaje sobre el futuro de Israel como centro global
*Jerusalén, Israel 17 de diciembre de 2024*
En el marco de su reciente gira por Israel, el Dr. José Benjamín Pérez Matos realizó una visita a la Yeshivá Yesod HaTorah en Jerusalén, donde fue recibido en un ámbito de estudio y tradición dedicado a la enseñanza de la Torá y el Talmud. La actividad, desarrollada en un entorno académico-religioso de relevancia, estuvo marcada por un mensaje centrado en el valor del conocimiento espiritual y su proyección en el escenario global.
Durante su intervención, el Dr. José Benjamín Pérez Matos destacó la importancia de la formación en los textos sagrados como base para el desarrollo de una sociedad con fundamentos sólidos, al tiempo que transmitió una visión sobre el futuro de Israel en el contexto internacional:
**«Para mí es una bendición y un honor estar acá en la yeshivá de mi amigo Moshé, y ver los diferentes salones en donde acá se estudia la Torá y el Talmud. Continúen agarrados de la Torá, de la Palabra de Dios. Y que el Eterno les siga dando mucha sabiduría y entendimiento. Y pronto ustedes puedan también ver el establecimiento de ese Reino tan esperado: el Reino de paz, de felicidad y prosperidad, que tanto Israel anhela. Lo cual está muy cerca.»**
**«Y desde Israel, será la capital para el mundo entero y del mundo entero. Y ustedes son parte de ese Reino. Pronto será establecido»**.
La visita se desarrolló en un contexto de creciente interés por el rol de las instituciones religiosas en la configuración de visiones de futuro, particularmente en lo que respecta a la relación entre tradición, liderazgo y procesos de transformación global.
En este sentido, el mensaje emitido desde Jerusalén refuerza una línea interpretativa que vincula el estudio de la Torá con un horizonte de cambio geopolítico y espiritual, posicionando a Israel como un eje central en la construcción de un escenario internacional orientado hacia la paz, la estabilidad y la prosperidad.

View File

@ -1,32 +0,0 @@
---
locale: es
title: 'Diplomacia de fe y poder geopolítico: el eje América LatinaIsrael en el centro del nuevo escenario internacional'
date: 2024-12-17
slug: 2024-12-17-diplomacia-de-fe-y-poder-geopolitico-el-eje-america-latina-israel-en-el-centro-del-nuevo-escenario-internacional
place: ''
country: 'IL'
city: 'Jerusalén'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Diplomacia de fe y poder geopolítico: el eje América LatinaIsrael en el centro del nuevo escenario internacional
*Jerusalén, Israel 17 de diciembre de 2024*
La reciente gira por Medio Oriente, junto con declaraciones emitidas desde Puerto Rico y México por el Dr. José Benjamín Pérez Matos, ha puesto en evidencia la consolidación de un actor político-religioso con creciente proyección internacional. Su discurso, que articula fe, estrategia y posicionamiento geopolítico, busca incidir de manera directa en el conflicto en Gaza y en la legitimidad del Estado de Israel en el sistema internacional.
Uno de los aspectos más destacados de este enfoque ha sido el cambio de tono en el mensaje: de una lógica centrada exclusivamente en la oración hacia una postura que exige acción concreta en el plano político internacional. En este sentido, se ha planteado la necesidad de un “golpe de Estado al terrorismo” en Gaza, acompañado de críticas a la falta de firmeza de organismos multilaterales y gobiernos que han reducido su respaldo a Israel. La posición es clara: no se considera viable la conformación de un Estado palestino bajo las condiciones actuales, sino únicamente en un marco subordinado a las leyes y condiciones del Estado israelí.
En paralelo, emerge una línea estratégica novedosa centrada en el uso de los recursos como herramienta de negociación. En particular, la crisis hídrica en Irán es presentada como una oportunidad para una diplomacia basada en soluciones concretas. Bajo esta perspectiva, Israel no solo se posiciona como potencia militar, sino también como proveedor de tecnología clave para la supervivencia regional, configurando una lógica de “paz por recursos” que redefine los mecanismos tradicionales de negociación.
Otro punto central del análisis radica en el reconocimiento alcanzado en las altas esferas religiosas y políticas de Jerusalén. Las reuniones con autoridades del Gobierno de Israel y con el Gran Rabino Kalman Ber trascienden el ámbito simbólico o eclesiástico, proyectándose como señales de legitimidad mutua. El establecimiento de una relación de “hermandad” con el Gran Rabino ashkenazí sugiere la conformación de un bloque de influencia con aspiraciones de incidir en un eventual reordenamiento global.
En este contexto, América Latina y el Caribe aparecen como un actor emergente dentro de este esquema. Según lo expresado, se configura un frente regional que actúa como contrapeso frente a países que mantienen posiciones críticas hacia Israel. Este bloque no solo ofrece respaldo político y moral, sino que también se proyecta como aliado estratégico en la defensa de la soberanía israelí, ampliando el alcance geopolítico de la región.
El análisis concluye con una lectura clara: se trata de una estrategia que se aparta de los marcos tradicionales de la diplomacia, inclinándose hacia un enfoque de firmeza estructural. Se cuestiona la viabilidad de la solución de dos Estados en el contexto actual y se plantea la emergencia de una nueva jerarquía internacional, en la que Israel ocuparía un rol central, integrando dimensiones políticas y religiosas en un mismo eje de poder.

View File

@ -1,34 +0,0 @@
---
locale: es
title: 'Regreso de Israel con resultados históricos: una misión marcada por simbolismo y logros diplomáticos'
date: 2024-12-19
slug: 2024-12-19-regreso-de-israel-con-resultados-historicos-una-mision-marcada-por-simbolismo-y-logros-diplomaticos
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg'
tags: [Israel, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_18-21-03.jpg',
},
]
---
# Regreso de Israel con resultados históricos: una misión marcada por simbolismo y logros diplomáticos
*Cayey, Puerto Rico 19 de diciembre de 2024*
Tras una intensa gira internacional que incluyó África y Medio Oriente, el Dr. José Benjamín Pérez Matos regresó a Puerto Rico destacando el carácter histórico de los resultados obtenidos durante su reciente visita a Israel. El viaje, condicionado por el contexto de conflicto en la región, estuvo marcado tanto por desafíos logísticos como por una serie de acontecimientos que, según lo expresado, adquirieron un alto valor simbólico y diplomático.
Uno de los aspectos más relevantes de la misión fue la modificación de la ruta de ingreso a Israel. Ante la cancelación de vuelos comerciales hacia Tel Aviv, la delegación debió reorganizar su itinerario, desplazándose primero hacia Dubái, en los Emiratos Árabes Unidos, para luego acceder al territorio israelí desde el este. Este cambio, inicialmente técnico, fue interpretado como un hecho de profundo significado:
La denominada “entrada por el este” fue asociada por el Dr. José Benjamín Pérez Matos con una referencia simbólica vinculada al “nacimiento del sol”, otorgando a la experiencia una dimensión adicional más allá de lo operativo.
A pesar del limitado tiempo de permanencia, la agenda de trabajo incluyó reuniones de alto nivel que, según trascendió, generaron una evaluación positiva por parte de interlocutores locales. En distintos ámbitos —tanto religiosos como políticos— se destacó la intensidad y efectividad de los encuentros mantenidos en un lapso reducido.
En ese sentido, el propio Dr. José Benjamín Pérez Matos subrayó el alcance de los resultados obtenidos:
**«En tan pocos días se lograron cosas que aun los mismos de allá de Israel dijeron que era imposible lograr en tan poco tiempo».**
El balance de la misión refleja un enfoque orientado a maximizar oportunidades en contextos complejos, consolidando vínculos en escenarios de alta sensibilidad internacional. El regreso a Puerto Rico marca así el cierre de una etapa que, según lo señalado, podría tener implicancias relevantes en futuros desarrollos de carácter institucional y diplomático.

View File

@ -1,35 +0,0 @@
---
locale: es
title: 'Jerusalén en el centro del 2025: advertencias sobre un año clave para el cambio global'
date: 2025-01-04
slug: 2025-01-04-jerusalen-en-el-centro-del-2025-advertencias-sobre-un-ano-clave-para-el-cambio-global
place: ''
country: 'PR'
city: 'Cayey '
thumbnail_square: 'https://ik.imagekit.io/crpy/7K0B4402-1.webp?tr=w-1280,q-auto,f-auto'
thumbnail: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto'
tags: [Israel, Puerto Rico]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto',
},
]
---
# Jerusalén en el centro del 2025: advertencias sobre un año clave para el cambio global
*Cayey, Puerto Rico 4 de enero de 2025*
En un escenario internacional marcado por la incertidumbre y la reconfiguración de equilibrios globales, las recientes declaraciones del Dr. José Benjamín Pérez Matos vuelven a situar a Jerusalén como un punto neurálgico en la evolución de los acontecimientos mundiales. Según su visión, el año 2025 se perfila como un período decisivo en el que se acelerarán procesos de transformación de alcance global.
El enfoque no se limita a una interpretación geopolítica convencional; por el contrario, articula una dimensión espiritual con el análisis de la realidad internacional, posicionando a la Ciudad Santa no solo como referencia histórica, sino como motor de un cambio estructural en desarrollo.
Uno de los ejes centrales del mensaje radica en la relación con Israel. En este sentido, el Dr. José Benjamín Pérez Matos expresó una conexión directa y sostenida con el pueblo judío, destacando el vínculo afectivo y espiritual que une a su comunidad con el destino de la nación israelí, **«amado y llevado en el corazón»**.
Esta definición, breve pero significativa, sintetiza una visión que trasciende el plano simbólico y se proyecta hacia una lectura del futuro. En ese marco, el rol de Israel aparece vinculado a la posibilidad de constituirse como sede de un orden orientado a la paz y la justicia a escala global.
El mensaje también introduce una dimensión temporal concreta. La referencia reiterada al año 2025 como un punto de inflexión, sugiere la expectativa de eventos de alto impacto que marcarán el rumbo de los procesos en curso; por lo cual, el Dr. José Benjamín Pérez Matos señaló que se trata de un tiempo en el que múltiples acontecimientos comenzarán a materializarse, consolidando una etapa de definiciones.
La mención de actividades desarrolladas, tanto en Puerto Rico como en Jerusalén, refuerza la idea de que este proceso ya se encuentra en marcha, invitando a quienes siguen este mensaje a mantener una actitud de atención, preparación y expectativa.
En un contexto global donde convergen tensiones políticas, transformaciones sociales y desafíos estructurales, la centralidad de Jerusalén emerge en este análisis, como un elemento clave para comprender la posible configuración del escenario internacional en los próximos años.

View File

@ -1,34 +0,0 @@
---
locale: es
title: 'Desde México: el Dr. José Benjamín Pérez Matos reafirma su compromiso global con Israel y su proyección en 2025'
date: 2025-01-13
slug: 2025-01-13-desde-mexico-el-dr-jose-benjamin-perez-matos-reafirma-su-compromiso-global-con-israel-y-su-proyeccion-en-2025
place: 'Plaza de Toros'
country: 'MX'
city: 'Ciudad de México'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-41.jpg'
tags: [México]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-41.jpg',
},
]
---
# Desde México: el Dr. José Benjamín Pérez Matos reafirma su compromiso global con Israel y su proyección en 2025
*Ciudad de México, México 13 de enero de 2025*
Ante la proximidad de una actividad de gran envergadura en la Plaza de Toros de la Ciudad de México, el Dr. José Benjamín Pérez Matos realizó un recorrido por las instalaciones supervisando la gestión de los preparativos con el equipo coordinador.
En virtud de la convocatoria, cuyo alcance genera una expectativa internacional, emitió un mensaje incluyente, centrado en la relación entre América Latina e Israel, destacando una etapa de mayor visibilidad y fortalecimiento del vínculo entre ambas regiones.
Durante su intervención, el Dr. José Benjamín Pérez Matos subrayó que la conexión con el pueblo hebreo no solo se mantendrá, sino que se profundizará en el tiempo, adquiriendo una dimensión cada vez más evidente en el plano internacional:
**«Amamos a Israel y estamos con Israel en todo; y cada vez más y más, esa conexión con el pueblo hebreo se va a ir viendo más marcada».**
El mensaje también incluyó una referencia directa al rol de América Latina en este proceso, planteando una identidad regional alineada con el respaldo a Israel y proyectando una estrategia de alcance global. Al respecto, el Dr. José Benjamín Pérez Matos definió su posicionamiento personal y su línea de acción para el período:
**«Todo el pueblo latinoamericano ama a Israel. Y yo, en todos los lugares donde vaya, estaré hablando sobre Israel también; porque desde allí es de donde Dios va a gobernar el mundo entero; y seré un embajador y soy un embajador del pueblo de Israel en todo el mundo».**
Las declaraciones delinean una agenda definida para el año 2025, en la que Israel ocupa un lugar central tanto en el discurso como en la acción internacional del Dr. José Benjamín Pérez Matos. El énfasis en la difusión global de este mensaje refuerza una estrategia orientada a consolidar apoyos y a posicionar el vínculo entre América Latina e Israel como un eje relevante en el escenario internacional.

View File

@ -1,45 +0,0 @@
---
locale: es
title: 'Liberación en Israel: una jornada de fe, gratitud y llamado global por la libertad'
date: 2025-01-19
slug: 2025-01-19-liberacion-en-israel-una-jornada-de-fe-gratitud-y-llamado-global-por-la-libertad
place: ''
country: 'US'
state: 'Illinois'
city: 'Chicago'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-37.jpg'
tags: [Estados Unidos, Venezuela]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-37.jpg',
},
]
---
# Liberación en Israel: una jornada de fe, gratitud y llamado global por la libertad
*Chicago, Illinois, Estados Unidos 19 de enero de 2025*
En una jornada marcada por la esperanza, la liberación de las primeras tres mujeres rehenes en Israel generó un impacto que trascendió el plano geopolítico, despertando una profunda respuesta emocional y espiritual en comunidades que han seguido de cerca el desarrollo del conflicto.
La confirmación de que la Cruz Roja asumió la custodia de las primeras liberadas fue recibida con alivio y gratitud. En este contexto, el Dr. José Benjamín Pérez Matos expresó el sentir de quienes han acompañado estos acontecimientos a través de la oración y el seguimiento constante:
**«Sentimos esa alegría de los familiares, y lo sentimos como si fuera de nuestra familia».**
Más allá de los aspectos diplomáticos y operativos, el mensaje puso el acento en la dimensión espiritual del proceso. Según lo expresado, este avance es interpretado como una respuesta a un clamor sostenido en el tiempo:
**«El Dios de Israel, que es también nuestro Dios, ha respondido a nuestras peticiones en favor de los secuestrados. Hoy comienza esa etapa de liberación pactada y agradecemos al Eterno por escuchar nuestro clamor».**
El Dr. José Benjamín Pérez Matos reafirmó además el compromiso de acompañamiento continuo hacia el pueblo de Israel, destacando la cercanía emocional con las familias afectadas y la esperanza de que el resto de los cautivos pueda regresar en condiciones similares:
**«Sentimos esa alegría de los familiares, y también nos gozamos de que estas mujeres estén libres y vivas. Esperamos que los demás [que aún permanecen en cautiverio] estén también vivos».**
En el desarrollo de la jornada, también se evocaron expresiones previas que reflejan la persistencia del pedido por la liberación de los rehenes. En tal sentido, el Dr. José Benjamín Pérez Matos recordó sus palabras dichas a una diputada: **«¡Que sean libertados!»**.
El mensaje no se limitó al escenario del Medio Oriente. En un giro hacia América Latina, el Dr. José Benjamín Pérez Matos conectó su llamado hacia la situación en Venezuela, incorporando una dimensión regional al pronunciamiento:
**«Estén orando también por Venezuela, por ese pueblo a quien amamos y deseamos que sea libre también. ¡Declaramos la libertad para Venezuela!»**.
Finalmente, se reforzó la necesidad de una respuesta concreta por parte de la comunidad internacional:
**«Que Dios obre y los Gobiernos se muevan; que no sea solo una fachada, sino que actúen: ¡que se muevan en favor de Venezuela, y sea libertado ese pueblo venezolano!»**.
La jornada concluyó con una visión de unidad que integra fe, solidaridad y acción, vinculando en un mismo horizonte la paz en Israel y la aspiración de libertad en otras regiones del mundo. El mensaje reafirma una línea de acompañamiento constante, donde la dimensión espiritual y la lectura de los acontecimientos internacionales convergen en una misma narrativa.

View File

@ -1,39 +0,0 @@
---
locale: es
title: 'Llamado a la acción internacional: el Dr. José Benjamín Pérez Matos exige respuestas concretas ante las crisis en Israel y Venezuela'
date: 2025-02-16
slug: 2025-02-16-llamado-a-la-accion-internacional-el-dr-jose-benjamin-perez-matos-exige-respuestas-concretas-ante-las-crisis-en-israel-y-venezuela
place: ''
country: 'PR'
city: 'Cayey '
thumbnail_square: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Venezuela, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Llamado a la acción internacional: el Dr. José Benjamín Pérez Matos exige respuestas concretas ante las crisis en Israel y Venezuela
*Cayey, Puerto Rico 16 de febrero de 2025*
En un pronunciamiento que vincula la situación del Medio Oriente con la crisis humanitaria en América Latina, el Dr. José Benjamín Pérez Matos emitió un mensaje en el que combina análisis geopolítico y exigencia directa de acción por parte de la comunidad internacional. Su intervención pone el foco tanto en los recientes acontecimientos en Israel como en la persistente situación en Venezuela.
Uno de los ejes centrales del mensaje fue la crítica a la inacción de los organismos internacionales y de los Gobiernos frente a las condiciones en las que fueron encontrados los rehenes de Israel, estableciendo una comparación que subraya la gravedad del contexto:
**«Parece mentira que a estas alturas todavía esté pasando el mundo esto. Y vean cómo salieron: parecieran como si hubiesen salido de Auschwitz, todos demacrados y…; eso no debe ser».**
En cuanto a Venezuela, el Dr. José Benjamín Pérez Matos se refirió a las limitaciones que enfrentan las iniciativas de asistencia directa, señalando los obstáculos administrativos y legales que dificultan la intervención en terreno:
**«No es que yo no haya querido ir; es que por las leyes que hay allí, todavía no han abierto lo de las visas, es difícil. Pero Dios va a abrir las puertas en el momento que tenga que abrirlas».**
Finalmente, el mensaje proyectó una visión de transformación global, planteando la necesidad de un nuevo orden que garantice estabilidad y justicia en las naciones. En este marco, el Dr. José Benjamín Pérez Matos delineó una perspectiva de gobernanza futura basada en la alineación de los países con un modelo de autoridad superior:
**«Los que quieran entrar al glorioso Reino Milenial tendrán que alinearse con ese gobierno».**
El pronunciamiento concluye con una idea central: la libertad efectiva de los pueblos no depende de declaraciones formales, sino de decisiones firmes y acciones sostenidas. En este sentido, el mensaje posiciona la fe, el liderazgo y la determinación política como elementos clave para enfrentar los desafíos actuales y avanzar hacia un escenario de mayor estabilidad global.
Reafirma una línea de acompañamiento constante, donde la dimensión espiritual y la lectura de los acontecimientos internacionales convergen en una misma narrativa.

View File

@ -1,49 +0,0 @@
---
locale: es
title: 'Condena a la violencia y advertencia internacional: el Dr. José Benjamín Pérez Matos se pronuncia tras la entrega de cuerpos de rehenes en Israel'
date: 2025-02-21
slug: 2025-02-21-condena-a-la-violencia-y-advertencia-internacional-el-dr-jose-benjamin-perez-matos-se-pronuncia-tras-la-entrega-de-cuerpos-de-rehenes-en-israel
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Puerto Rico, Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
},
]
---
# Condena a la violencia y advertencia internacional: el Dr. José Benjamín Pérez Matos se pronuncia tras la entrega de cuerpos de rehenes en Israel
*Cayey, Puerto Rico 21 de febrero de 2025*
En un pronunciamiento marcado por la solemnidad y la firmeza, el Dr. José Benjamín Pérez Matos expresó su solidaridad con el pueblo de Israel tras la entrega de los cuerpos de cuatro rehenes, entre ellos dos niños de nacionalidad argentina, en un hecho que generó conmoción a nivel internacional.
El mensaje puso el foco en el dolor de las familias afectadas, destacando la dimensión humana del conflicto y el impacto de estos acontecimientos en quienes han seguido de cerca la situación:
**«Ahora miren lo que ha pasado en estos días; por lo cual nos unimos al dolor de esa familia... en vez de entregar personas vivas, miren, entregaron ahora cuatro muertos, de los que están ahí, de los rehenes; y dos eran niños».**
El Dr. José Benjamín Pérez Matos también se refirió al sufrimiento particular del padre de los menores, señalando la gravedad emocional derivada de la incertidumbre y la desinformación previa sobre el destino de sus hijos.
Asimismo, subrayó el carácter profundamente simbólico y doloroso de este momento, enfatizando una de las noticias dadas por los medios a la cual le dio lectura:
***«“Es la primera devolución de cuerpos y marca un momento enormemente emotivo y sombrío para Israel* (y para todos nosotros que amamos a Israel)”».**[^1]
El pronunciamiento incluyó, además, una advertencia directa en relación con la responsabilidad de actores internacionales frente a los hechos ocurridos. En un tono enfático, el Dr. José Benjamín Pérez Matos expresó:
**«¡Van a pagar muy caro! lo que ese grupo terrorista…; y toda persona y todo Gobierno que ha hecho la guerra contra Israel, el hijo primogénito de Dios como nación: ¡lo van a pagar muy caro!».**
En su análisis, también trazó paralelismos entre la situación actual y episodios históricos de degradación moral, haciendo referencia a prácticas denunciadas en el contexto del conflicto:
**«Ese grupo es como un grupo del tiempo de Sodoma... Hay una noticia donde dice: *“En Gaza llevan a sus hijos a ver cómo judíos muertos son exhibidos y profanados”»**. [^2]
El mensaje articula una lectura que combina la dimensión humanitaria con una interpretación más amplia del escenario internacional, en el que los acontecimientos recientes son considerados parte de un proceso de alta complejidad política, social y espiritual.
La declaración concluye reforzando una postura de acompañamiento hacia Israel y una advertencia sobre las implicancias de los hechos actuales en el plano global, en un contexto donde las tensiones continúan escalando y generando repercusiones más allá de la región.
[^1]: Lectura de la fuente periodística: Munoz, R. (2025, febrero 20). Las 5 cosas que debes saber este 20 de febrero: detenciones y frío récord en EE.UU., Trump vs. Zelensky, drones en México: 5. Hamas entregó los cuerpos de cuatro rehenes, incluidos los de los niños Bibas y su madre. CNN en Español. https://cnnespanol.cnn.com/2025/02/20/mundo/5-cosas-20-febrero-detenciones-frio-eeuu-trump-zelensky-drones-mexico-orix
[^2]: Lectura de la fuente periodística: Embajada de Israel en Argentina [@IsraelArgentina]. (2025, febrero 20). La mayoría de la gente lleva a sus hijos a ver partidos de fútbol o a pasear por el parque. En Gaza llevan a sus hijos a ver cómo judíos muertos son exhibidos y profanados. Horrendo [post] [Imagen adjunta]. Red social X. Recuperado de: https://x.com/IsraelArgentina/status/1892577334282047975

Some files were not shown because too many files have changed in this diff Show More