Compare commits

..

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

429 changed files with 11489 additions and 33943 deletions

22
.env
View File

@ -6,30 +6,16 @@ GOOGLE_SHEET_ID=12X6qeU0W4ZDw00vS4OreyC4nFjKBeBYo7rq3wyRsrNQ
# Archivo de variables de entorno para la configuración de envío de emails
EMAIL_API_KEY=9UShpS8oh5Iun92TJSfevElI3Lp99TCv
# This was inserted by prisma init:
# This was inserted by `prisma init`:
# Environment variables declared in this file are NOT automatically loaded by Prisma.
# Please add import "dotenv/config"; to your prisma.config.ts file, or use the Prisma CLI with Bun
# Please add `import "dotenv/config";` to your `prisma.config.ts` file, or use the Prisma CLI with Bun
# to load environment variables from .env files: https://pris.ly/prisma-config-env-vars.
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
# The following prisma+postgres URL is similar to the URL produced by running a local Prisma Postgres
# server with the prisma dev CLI command, when not choosing any non-default ports or settings. The API key, unlike the
# The following `prisma+postgres` URL is similar to the URL produced by running a local Prisma Postgres
# server with the `prisma dev` CLI command, when not choosing any non-default ports or settings. The API key, unlike the
# one found in a remote Prisma Postgres URL, does not contain any sensitive information.
DATABASE_URL="file:./dev.db"
N8N_WEBHOOK_URL="https://flows2.carpa.com/webhook/news-summary"
N8N_API_KEY="sk_live_JwjpTdZrLVvijCKuWylWZbUuhBm6zPDH"
# Cloudflare Email Sending
CLOUDFLARE_API_TOKEN=cfut_8Y0Tcwiv3v0K1LDK9QSvc3BjlU1lZFs1zikACgTw33977b37
CLOUDFLARE_ACCOUNT_ID=3e689750123db91e81d3542d2930a907
# Cloudflare Turnstile — public key (visible in frontend)
TURNSTILE_SITE_KEY=0x4AAAAAAD9IYWC6HPflpneO
# Cloudflare Turnstile — secret key (server-side, keep safe!)
# In production, set this as a Gitea Actions secret named TURNSTILE_SECRET_KEY
TURNSTILE_SECRET_KEY=0x4AAAAAAD9IYXASjQSpmo2iS902SDoXnT4

View File

@ -1,14 +0,0 @@
# Cloudflare Turnstile — public key (visible in frontend)
TURNSTILE_SITE_KEY=0x4AA...
# Cloudflare Turnstile — secret key (server-side, keep safe!)
# In production, set this as a Gitea Actions secret named TURNSTILE_SECRET_KEY
TURNSTILE_SECRET_KEY=0x4AA...
# Supabase PostgreSQL
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres?schema=public"
DIRECT_URL="postgresql://postgres:postgres@localhost:5432/postgres?schema=public"
SUPABASE_URL="http://localhost:8000"
SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJhbm9uIiwKICAgICJpc3MiOiAic3VwYWJhc2UtZGVtbyIsCiAgICAiaWF0IjogMTY0MTc2OTIwMCwKICAgICJleHAiOiAxNzk5NTM1NjAwCn0.dc_X5iR_VP_qT0zsiyj_I_OZ2T9FtRU2BBNWN8Bu4GE"
SUPABASE_SERVICE_ROLE_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJzZXJ2aWNlX3JvbGUiLAogICAgImlzcyI6ICJzdXBhYmFzZS1kZW1vIiwKICAgICJpYXQiOiAxNjQxNzY5MjAwLAogICAgImV4cCI6IDE3OTk1MzU2MDAKfQ.DaYlNEoUrrEn2Ig7tqibS-PHK5vgusbcbo7X36XVt4Q"
POSTGRES_PASSWORD=postgres

View File

@ -1,61 +1,14 @@
name: Deploy cdrdpyj
name: Centro del Reino de Paz y Justicia
on:
push:
branches: [staging, production]
on: [push]
jobs:
deploy:
explore-gitea-actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set target dir & PM2 env
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
if [ "${{ gitea.ref_name }}" = "production" ]; then
echo "TARGET_DIR=/var/www/node/cdrdpyj" >> $GITHUB_ENV
echo "APP_NAME=cdrdpyj-live" >> $GITHUB_ENV
else
echo "TARGET_DIR=/var/www/node/dev.cdrdjyp" >> $GITHUB_ENV
echo "APP_NAME=cdrdpyj" >> $GITHUB_ENV
fi
- uses: pnpm/action-setup@v4
with:
version: 11
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- name: Copy build to VPS
uses: appleboy/scp-action@master
with:
host: ${{ secrets.VPS_HOST }}
username: ${{ secrets.VPS_USER }}
key: ${{ secrets.VPS_SSH_KEY }}
source: "dist/*,package.json,pnpm-lock.yaml,pnpm-workspace.yaml,ecosystem.config.cjs"
target: "${{ env.TARGET_DIR }}"
- name: Restart PM2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.VPS_HOST }}
username: ${{ secrets.VPS_USER }}
key: ${{ secrets.VPS_SSH_KEY }}
script: |
set -e
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
npm install -g pnpm@11 2>&1
cd ${{ env.TARGET_DIR }}
pnpm install --prod 2>&1
sed -i "s|TURNSTILE_SITE_KEY: \"\"|TURNSTILE_SITE_KEY: \"${{ secrets.TURNSTILE_SITE_KEY }}\"|g" ecosystem.config.cjs
sed -i "s|TURNSTILE_SECRET_KEY: \"\"|TURNSTILE_SECRET_KEY: \"${{ secrets.TURNSTILE_SECRET_KEY }}\"|g" ecosystem.config.cjs
sed -i "s|CLOUDFLARE_API_TOKEN: \"\"|CLOUDFLARE_API_TOKEN: \"${{ secrets.CLOUDFLARE_API_TOKEN }}\"|g" ecosystem.config.cjs
sed -i "s|CLOUDFLARE_ACCOUNT_ID: \"\"|CLOUDFLARE_ACCOUNT_ID: \"${{ secrets.CLOUDFLARE_ACCOUNT_ID }}\"|g" ecosystem.config.cjs
pm2 reload ecosystem.config.cjs --only ${{ env.APP_NAME }} --update-env || \
pm2 start ecosystem.config.cjs --only ${{ env.APP_NAME }} --update-env
ls ${{ gitea.workspace }}
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."

8
.gitignore vendored
View File

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

View File

@ -1,186 +0,0 @@
---
name: dynamic-form
description: Use when working with the volunteer registration dynamic multi-step form. Relevant files: DynamicForm.vue, formulario-inscripcion.json, [section]/index.astro, i18n system, reglamento HTML.
---
# Dynamic Multi-Step Volunteer Registration Form
## Stack
- **Framework:** Astro (SSR, `output: "server"`, Node.js standalone)
- **UI:** Vue 3 + Tailwind CSS v4 + daisyUI v5
- **i18n:** Astro built-in i18n with `prefixDefaultLocale: true`, custom translator via `createTranslator(locale)`
## Architecture
### Form Config (JSON-driven)
The form structure is defined in `public/forms/formulario-inscripcion.json`:
```json
{
"action": "/api/formulario/send",
"submit_label": "form.submit",
"steps": [
{
"label": "form.step1_reglamento",
"fields": [ ... ]
}
]
}
```
Each field supports:
- `type`: `text`, `email`, `phone`, `date`, `textarea`, `radio`, `checkbox`, `select`, `autocomplete`
- `required`: boolean (for checkbox, individual options can also have `required: true`)
- `colspan`: `2` or `3` for grid layout when step has `column: 2` or `column: 3`
- `readonly`: displays value from `formData` (shared across steps). Supports `valueFrom` to reference another field's key.
- `showWhen`: `{ field: "other_key", value: "expected_value" }` — conditional display; for checkboxes checks array inclusion
- `levels`: proficiency radios for each selected checkbox option (e.g., Básico/Intermedio/Avanzado)
- `placeholder`: translation key for placeholder text
- `source`: URL to JSON file for `select`/`autocomplete` options (e.g., `/forms/paises.json`)
### Key Files
| File | Purpose |
|------|---------|
| `src/components/forms/DynamicForm.vue` | Core form component (751 lines) |
| `public/forms/formulario-inscripcion.json` | Form structure config (8 steps) |
| `public/forms/paises.json` | Country list for `select`/`autocomplete` |
| `src/pages/[locale]/[section]/index.astro` | Routes news, editorial, AND formulario |
| `src/i18n/index.ts` | Translator, `routeTranslations`, `I18nKey` type |
| `src/i18n/es.json` | Spanish translations (all form keys) |
| `public/reglamento/es.html` | Reglamento content (section-based HTML) |
### Field Types
| Type | Rendering | Behavior |
|------|-----------|----------|
| `text` | `<input>` inside daisyUI `<label class="input">` | Phosphor icon via `getFieldIcon()` |
| `email` | Same as text, `type="email"` | Regex validation on non-empty |
| `phone` | Same as text, `type="tel"` | Regex `/^\d+$/` — strips non-digit chars on input |
| `phone_country` | daisyUI `join` with autocomplete input (left) + `<input type="tel">` (right) | Input filters countries by name or code as you type. Dropdown shows only `🇨🇴 +57`. On select, stores `dial_code` in `phoneParts[key].code` and combines with number in `formData[key]`. Selected display shows `🇨🇴 +57`. |
| `date` | `<input type="date">` | Calendar icon |
| `textarea` | `<textarea>` with absolute icon | 4 rows, `resize-none` |
| `radio` | Inline `<input type="radio">` | `flex flex-wrap gap-x-5 gap-y-1` |
| `checkbox` | Stacked checkboxes with optional `levels` radios | Array in `formData` |
| `select` | `<select>` populated from `field.source` JSON | `getSelectOptions(field)` loads & caches |
| `autocomplete` | `<input>` with dropdown suggestions | `filteredSuggestions()` filters by input |
### DynamicForm.vue Features
- **Multi-step navigation:** stepper with numbered circles + step labels, clickable to revisit completed steps. Gold (`#CBA16A`) for active, cream (`#EBE6D2`) with checkmark for completed.
- **Validation:** per-step via `validateStep()`; checks required fields (with trim), email format, checkbox required options, level selection. Errors show `ph:warning-circle` icon + "Este campo es obligatorio".
- **Step counter:** "Paso X de Y" centered above buttons on mobile, inline with "Siguiente" on desktop. Divider line separates fields from navigation.
- **Reglamento scroll requirement:** fetches HTML from `/reglamento/{locale}.html` with fallback to `es`, renders in `max-h-[500px] md:max-h-[720px] overflow-y-auto`. User must scroll to bottom (`scrollTop + clientHeight >= scrollHeight - 10`) before checkboxes (step 1) and "Siguiente" button become enabled. Info banner + tooltip shown until requirement met.
- **Conditional fields:** `shouldShow()` evaluates `showWhen`; for checkboxes source, checks array inclusion; for others, strict equality.
- **Levels system:** when checkbox option is selected, level radios appear inline (`ml-9 mt-1`). Levels also validated.
- **Readonly fields:** display data from other steps via `valueFrom` cross-reference.
- **Select/autocomplete:** lazy-loads options from `field.source` URL, cached in `suggestionsCache`. Autocomplete filters by input value, shows dropdown on focus/input.
- **Icons:** Phosphor icons mapped via `getFieldIcon()` by field key or type.
- **Submit:** POSTs `{ formData, responses, turnstileToken, honeypot }` to config's `action` URL (`/api/formulario/send`). Success screen shows logo (`/img/logo-metalico.webp`), success title, info detail, and "Volver al inicio" link. Handles loading/spinner state during submit.
- **Bot protection:** Cloudflare Turnstile widget renders on the last step. `turnstileToken` ref updated via callback. Honeypot hidden field (`name="website"`, `class="hidden"`, `tabindex="-1"`) traps basic bots. Both values included in payload.
- **Payload shape:** `responses` array with `{ key, value, section_id: "step_N" }`. For levels, each level is a separate response entry. Does NOT include empty fields. Extra fields: `turnstileToken` (string), `honeypot` (string).
- **Mount reset:** `isSuccess.value = false` on fetch to prevent stale success state on re-navigation.
### Validation Logic (validateStep)
- **Checkbox required:** if individual options have `required: true`, all must be selected; if no option is individually required but field is `required`, at least 1 selection is needed
- **Text/email/phone/date/textarea/radio required:** checks `!val || val.trim() === ""`
- **Phone format:** validates `/^\d+$/` when non-empty — `formatErrors` tracks format issues separately from `stepErrors`; shows "Solo se permiten números" vs "Este campo es obligatorio"
- **Phone country (`phone_country`):** two-piece component (select + input). `phoneParts` reactive tracks code and number separately; combined value stored in `formData[key]`. Input sanitizes non-digits via `event.target.value = cleaned` + `phoneParts` tracking. Validates: required (code + number filled), min 7 digits, max 15 total (code + number).
### i18n System
- `createTranslator(locale)` returns `tl(key, vars?)` function — supports `{name}` interpolation (used in `form.select_placeholder`)
- `I18nKey = keyof typeof es` — all keys must exist in `es.json`
- Fallback chain: requested locale → `es` → raw key string
- `routeTranslations` now includes `formulario` key (was missing initially):
```ts
formulario: {
es: "formulario", en: "form", fr: "formulaire",
he: "טופס", uk: "форма", pt: "formulário",
ru: "форма", rw: "formulaire", kr: "fòm"
}
```
- `getRouteKeyFromSlug(slug)`: resolves URL segment to route key (returns `"news"` default for unknown)
- `getLocalizedRoute(route, locale)`: builds locale-aware URL segment
### Routing
The `[section]/index.astro` page handles three route keys:
- `"formulario"` + locale `es` → renders DynamicForm with MainLayout
- `"formulario"` + other locale → `Astro.redirect` to that locale's home page
- `"news"` / `"editorial"` → existing content list behavior
Form URLs:
- `/es/formulario` (active)
- `/en/form`, `/fr/formulaire`, etc. (redirect to home)
### Color Palette
| Token | Hex | Usage |
|-------|-----|-------|
| Primary green | `#22523F` | Headings, stepper active, buttons, reglamento headings, focus outlines, hover backgrounds |
| Cream | `#EBE6D2` | Form background, stepper completed circles |
| Gold | `#CBA16A` | Active step circles |
| Input text | `#1a1a1a` | Input/textarea values, checkbox/radio labels |
| Readonly text | `#6B7280` | Readonly field values |
| Checked accent | `#4A8C6F` | Checkbox/radio checked background and border |
### Responsive Behavior
| Element | Mobile (< sm) | Desktop (sm+) |
|---------|---------------|---------------|
| Container | `max-w-3xl px-4` | `max-w-3xl mx-auto` |
| Form padding | `p-5` | `sm:p-8 lg:p-10` |
| Grid gap | `gap-4` | `sm:gap-5` |
| Title size | `text-lg` | `sm:text-xl` |
| Button font | `text-xs` | `sm:text-sm` |
| Step counter | Centered above buttons | Next to "Siguiente" button |
| Nav layout | Column (counter, then row of buttons) | Row with `justify-between` via `sm:contents` |
| Reglamento height | `max-h-[500px]` | `md:max-h-[720px]` |
### API Endpoint: `POST /api/formulario/send`
| File | Purpose |
|------|---------|
| `src/pages/api/formulario/send.ts` | Receives form data, validates Turnstile, writes to Google Sheets |
**Security checks (in order):**
1. **Honeypot** — if `body.honeypot` is non-empty → `403 Solicitud rechazada`
2. **Turnstile** — verifies `body.turnstileToken` against Cloudflare API → `403 Captcha inválido` if fail
3. If `TURNSTILE_SECRET_KEY` env var is empty/unset, Turnstile check is skipped (dev mode)
**Env vars needed at runtime:**
- `TURNSTILE_SITE_KEY` — public key (in `ecosystem.config.cjs`, injected via `sed` in CI)
- `TURNSTILE_SECRET_KEY` — secret key (injected from `secrets.TURNSTILE_SECRET_KEY` in CI)
### Reglamento HTML
Stored in `public/reglamento/{locale}.html`. Must NOT contain `<html>`, `<head>`, `<body>`, or `<style>` tags — only `<section>`, `<h1>`, `<h2>`, `<p>`, `<ul>`, `<li>` elements. Loaded via `fetch()` and injected with `v-html` inside a `.reglamento-content` div with scoped CSS styles in the component's `<style>` block.
## Important Conventions
- NEVER run `pnpm run build` as a verification step — the user will handle builds manually or via CI.
- Translation keys in `es.json` use dot notation: `"form.field_name": "Label"`
- Checkbox `formData` is initialized as `[]`, other fields as `""`
- Step labels: `form.step1_reglamento`, `form.step2``form.step8`
- The `RegisterModal` on the home page was replaced with a direct link to `/{locale}/{formSlug}`
- All i18n keys used in DynamicForm.vue must exist in `es.json` (strict `I18nKey` typing)
- Input icons are mapped via `getFieldIcon()` by key or type — add new entries when adding fields (uses `ph:` prefix Phosphor icons)
- `valueFrom` on `readonly` fields allows displaying cross-step data (e.g., show `nombre` from step 2 on step 8)
- `select` and `autocomplete` fields require a `source` URL pointing to a JSON array of `{ label, value }` objects
- `suggestionsCache` is a shared ref — data loads once per `source` URL and is reused across all fields pointing to the same source
- Reglamento is fetched via locale fallback chain: `props.locale``"es"` — only fetched once per step 0 visit via `reglamentoFetchAttempted` guard
- Turnstile widget renders only on the last step (`isLastStep`) and only if `props.turnstileSiteKey` is non-empty. The token is obtained via `window.turnstile.render()` callback. Script loads from `https://challenges.cloudflare.com/turnstile/v0/api.js` on `onMounted`.
- Honeypot field (`name="website"`) is hidden via daisyUI `hidden` class and `tabindex="-1"` — browsers/autofill may still fill it but human users never see it.
## Language Style
- All Spanish text must use **international Spanish (neutral/formal)**, NOT Argentine voseo.
- Use **usted** forms: "Seleccione", "Indique", "Complete", "Ingrese", "Inténtelo", "Desplácese", "Debe leer", etc.
- Use **su** instead of **tu**: "su país", "su interés", "sus datos".
- Exception: the `formulario-inscripcion.json` field labels and option labels can keep their existing text — only new text generated for `_help` tooltips or translations must follow this rule.

View File

@ -44,4 +44,4 @@ Feel free to check [our documentation](https://docs.astro.build) or jump into ou
Adding gitea/workflows/deploy.yaml to test github ci/cd runner
Testing runner change spmeting v12
Testing runner

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +0,0 @@
module.exports = {
apps: [
{
name: "cdrdpyj",
script: "dist/server/entry.mjs",
env: {
NODE_ENV: "staging",
PORT: 3310,
TURNSTILE_SITE_KEY: "",
TURNSTILE_SECRET_KEY: "",
CLOUDFLARE_API_TOKEN: "",
CLOUDFLARE_ACCOUNT_ID: "",
}
},
{
name: "cdrdpyj-live",
script: "dist/server/entry.mjs",
env: {
NODE_ENV: "production",
PORT: 4321,
TURNSTILE_SITE_KEY: "",
TURNSTILE_SECRET_KEY: "",
CLOUDFLARE_API_TOKEN: "",
CLOUDFLARE_ACCOUNT_ID: "",
}
}
]
};

10041
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,19 +1,17 @@
{
"name": "cdrdpyj",
"name": "",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"postbuild": "node scripts/send-to-n8n.js",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/markdoc": "^2.0.3",
"@astrojs/node": "^11.0.2",
"@astrojs/react": "^6.0.1",
"@astrojs/vue": "^7.0.1",
"@astrojs/markdoc": "^0.15.10",
"@astrojs/node": "^9.5.3",
"@astrojs/vue": "^5.1.4",
"@coreui/icons": "^3.0.1",
"@dotenvx/dotenvx": "^1.52.0",
"@fontsource-variable/kameron": "^5.2.8",
@ -25,17 +23,13 @@
"@prisma/client": "^6.19.2",
"@tailwindcss/vite": "^4.1.18",
"@unpic/astro": "^1.0.2",
"astro": "^7.0.6",
"astro": "^5.17.1",
"astro-embed": "^0.12.0",
"astro-google-analytics": "^1.0.3",
"astro-icon": "^1.1.5",
"cloudflare": "^7.0.0",
"dayjs": "^1.11.19",
"googleapis": "^171.4.0",
"prisma": "^6.19.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sharp": "^0.34.5",
"swiper": "^12.1.0",
"tailwindcss": "^4.1.18",
"vue": "^3.5.28"

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,32 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TinaCMS</title>
</head>
<!-- if development -->
<script type="module">
import RefreshRuntime from 'http://localhost:4001/@react-refresh'
RefreshRuntime.injectIntoGlobalHook(window)
window.$RefreshReg$ = () => {}
window.$RefreshSig$ = () => (type) => type
window.__vite_plugin_react_preamble_installed__ = true
</script>
<script type="module" src="http://localhost:4001/@vite/client"></script>
<script>
function handleLoadError() {
// Assets have failed to load
document.getElementById('root').innerHTML = '<style type="text/css"> #no-assets-placeholder body { font-family: sans-serif; font-size: 16px; line-height: 1.4; color: #333; background-color: #f5f5f5; } #no-assets-placeholder { max-width: 600px; margin: 0 auto; padding: 40px; text-align: center; background-color: #fff; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); } #no-assets-placeholder h1 { font-size: 24px; margin-bottom: 20px; } #no-assets-placeholder p { margin-bottom: 10px; } #no-assets-placeholder a { color: #0077cc; text-decoration: none; } #no-assets-placeholder a:hover { text-decoration: underline; } </style> <div id="no-assets-placeholder"> <h1>Failed loading TinaCMS assets</h1> <p> Your TinaCMS configuration may be misconfigured, and we could not load the assets for this page. </p> <p> Please visit <a href="https://tina.io/docs/r/FAQ/#13-how-do-i-resolve-failed-loading-tinacms-assets-error">this doc</a> for help. </p> </div> </div>';
}
</script>
<script
type="module"
src="http://localhost:4001/src/main.tsx"
onerror="handleLoadError()"
></script>
<body class="tina-tailwind">
<div id="root"></div>
</body>
</html>

View File

@ -1,249 +0,0 @@
{
"action": "/api/formulario/send",
"submit_label": "form.submit",
"steps": [
{
"label": "form.step1_reglamento",
"fields": [
{
"key": "aceptacion_reglamento",
"label": "form.aceptacion_reglamento",
"type": "checkbox",
"required": true,
"options": [
{ "value": "leido_acepto", "label": "form.aceptacion.leido", "required": true },
{ "value": "codigo_etica", "label": "form.aceptacion.codigo_etica", "required": true },
{ "value": "datos_personales", "label": "form.aceptacion.datos", "required": true },
{ "value": "participacion_voluntaria", "label": "form.aceptacion.voluntaria", "required": true },
{ "value": "informacion_verdadera", "label": "form.aceptacion.verdadera", "required": true },
{ "value": "firma_electronica_validez", "label": "form.aceptacion.firma_validez", "required": true }
]
}
]
},
{
"label": "form.step2",
"column": 2,
"fields": [
{ "key": "nombre", "label": "form.nombre", "type": "text", "required": true },
{ "key": "segundo_nombre", "label": "form.segundo_nombre", "type": "text" },
{ "key": "apellido", "label": "form.apellido", "type": "text", "required": true },
{ "key": "documentos", "label": "form.documentos", "type": "text", "required": true },
{ "key": "correo", "label": "form.correo", "type": "email", "required": true, "colspan": 2 },
{ "key": "reglamento_firma", "label": "form.reglamento_firma", "type": "text", "required": true, "colspan": 2, "placeholder": "form.reglamento_firma_placeholder" },
{ "key": "fecha_nacimiento", "label": "form.fecha_nacimiento", "type": "date", "required": true },
{ "key": "nacionalidad", "label": "form.nacionalidad", "type": "autocomplete", "required": true, "source": "/forms/paises.json" },
{
"key": "sexo",
"label": "form.sexo",
"type": "radio",
"colspan": 2,
"required": true,
"options": [
{ "value": "M", "label": "form.sexo.m" },
{ "value": "F", "label": "form.sexo.f" }
]
},
{ "key": "direccion_completa", "label": "form.direccion", "type": "text", "required": true, "colspan": 2 },
{ "key": "direccion_postal", "label": "form.direccion_postal", "type": "text", "required": false, "colspan": 2 },
{ "key": "ciudad", "label": "form.ciudad", "type": "text", "required": true },
{ "key": "estado", "label": "form.estado", "type": "text" },
{ "key": "pais", "label": "form.pais", "type": "select", "required": true, "source": "/forms/paises.json" },
{ "key": "postal", "label": "form.codigo_postal", "type": "text", "required": true },
{ "key": "telefono", "label": "form.mobile", "type": "phone_country", "required": true, "source": "/forms/paises.json" },
{ "key": "whatsapp", "label": "form.whatsapp", "type": "phone_country", "source": "/forms/paises.json" }
]
},
{
"label": "form.step3",
"column": 2,
"fields": [
{ "key": "profesion", "label": "form.profesion", "type": "text", "required": true },
{ "key": "lugar_trabajo_actual", "label": "form.lugar_trabajo_actual", "type": "text", "required": true },
{ "key": "nivel_academico", "label": "form.nivel_academico", "type": "text", "required": true, "colspan": 2 },
{
"key": "idioma",
"label": "form.idioma",
"type": "checkbox",
"required": true,
"colspan": 2,
"levels": {
"options": [
{ "value": "Basico", "label": "form.nivel.basico" },
{ "value": "Intermedio", "label": "form.nivel.intermedio" },
{ "value": "Avanzado", "label": "form.nivel.avanzado" }
]
},
"options": [
{ "value": "Espanol", "label": "form.idioma.esp" },
{ "value": "Ingles", "label": "form.idioma.ing" },
{ "value": "Hebreo", "label": "form.idioma.heb" },
{ "value": "Portugues", "label": "form.idioma.port" },
{ "value": "Frances", "label": "form.idioma.franc" },
{ "value": "Otro", "label": "form.idioma.otro" }
]
},
{ "key": "idioma_otro", "label": "form.idioma_otro", "type": "text", "required": false, "colspan": 2, "showWhen": { "field": "idioma", "value": "Otro" } },
{ "key": "voluntariado_anterior", "label": "form.voluntariado_anterior", "type": "radio", "required": true, "colspan": 2, "options":
[
{ "value": "si", "label": "form.voluntariado_anterior.si" },
{ "value": "no", "label": "form.voluntariado_anterior.no" }
]
},
{ "key": "caso_si", "label": "form.caso_si", "type": "textarea", "required": false, "colspan": 2, "showWhen": { "field": "voluntariado_anterior", "value": "si" } }
]
},
{
"label": "form.step4",
"fields": [
{
"key": "areas_colaborar",
"label": "form.areas_colaborar",
"type": "checkbox",
"required": true,
"options": [
{ "value": "Ayuda Humanitaria", "label": "form.areas.ayuda_humanitaria" },
{ "value": "Educacion", "label": "form.areas.educacion" },
{ "value": "Desarrollo Comunitario", "label": "form.areas.desarrollo_comunitario" },
{ "value": "Liderazgo", "label": "form.areas.liderazgo" },
{ "value": "Logistica", "label": "form.areas.logistica" },
{ "value": "Organizacion de Eventos", "label": "form.areas.organizacion_eventos" },
{ "value": "Comunicacion Institucional", "label": "form.areas.comunicacion_institucional" },
{ "value": "Fotografia y Medios", "label": "form.areas.fotografia_medios" },
{ "value": "Recaudacion de Fondos", "label": "form.areas.recaudacion_fondos" },
{ "value": "Gestion de Proyectos", "label": "form.areas.gestion_proyectos" },
{ "value": "Traduccion e Interpretacion", "label": "form.areas.traduccion_interpretacion" },
{ "value": "Asesoria Juridica", "label": "form.areas.asesoria_juridica" },
{ "value": "Servicios Medicos", "label": "form.areas.servicios_medicos" },
{ "value": "Diplomacia Publica", "label": "form.areas.diplomacia_publica" },
{ "value": "Administracion", "label": "form.areas.administracion" },
{ "value": "Tecnologia e Innovacion", "label": "form.areas.tecnologia_innovacion" },
{ "value": "Otra", "label": "form.areas.otra" }
]
},
{ "key": "areas_otra", "label": "form.areas_otra", "type": "text", "required": false, "showWhen": { "field": "areas_colaborar", "value": "Otra" } }
]
},
{
"label": "form.step5",
"fields": [
{
"key": "dias_disponibles",
"label": "form.dias_disponibles",
"type": "checkbox",
"required": true,
"options": [
{ "value": "Lunes", "label": "form.dias.lunes" },
{ "value": "Martes", "label": "form.dias.martes" },
{ "value": "Miercoles", "label": "form.dias.miercoles" },
{ "value": "Jueves", "label": "form.dias.jueves" },
{ "value": "Viernes", "label": "form.dias.viernes" },
{ "value": "Sabado", "label": "form.dias.sabado" },
{ "value": "Domingo", "label": "form.dias.domingo" }
]
},
{
"key": "horario_preferido",
"label": "form.horario_preferido",
"type": "checkbox",
"required": true,
"options": [
{ "value": "Manana", "label": "form.horario.manana" },
{ "value": "Tarde", "label": "form.horario.tarde" },
{ "value": "Noche", "label": "form.horario.noche" },
{ "value": "Segun necesidades", "label": "form.horario.segun" }
]
},
{
"key": "fuera_ciudad",
"label": "form.fuera_ciudad",
"type": "radio",
"required": true,
"options": [
{ "value": "si", "label": "form.si" },
{ "value": "no", "label": "form.no" }
]
},
{
"key": "misiones_internacionales",
"label": "form.misiones_internacionales",
"type": "radio",
"required": true,
"options": [
{ "value": "si", "label": "form.si" },
{ "value": "no", "label": "form.no" }
]
}
]
},
{
"label": "form.step6",
"fields": [
{
"key": "condicion_medica",
"label": "form.condicion_medica",
"type": "radio",
"required": true,
"options": [
{ "value": "si", "label": "form.si" },
{ "value": "no", "label": "form.no" }
]
},
{
"key": "condicion_medica_cual",
"label": "form.condicion_medica_cual",
"type": "textarea",
"required": true,
"showWhen": { "field": "condicion_medica", "value": "si" }
},
{
"key": "alergias",
"label": "form.alergias",
"type": "textarea",
"required": false
},
{
"key": "medicamentos",
"label": "form.medicamentos",
"type": "textarea",
"required": false
}
]
},
{
"label": "form.step7",
"fields": [
{ "key": "emergencia_nombre", "label": "form.emergencia_nombre", "type": "text", "required": true },
{ "key": "emergencia_parentesco", "label": "form.emergencia_parentesco", "type": "text", "required": true },
{ "key": "emergencia_telefono", "label": "form.emergencia_telefono", "type": "phone_country", "required": true, "source": "/forms/paises.json" },
{ "key": "emergencia_correo", "label": "form.emergencia_correo", "type": "email", "required": false }
]
},
{
"label": "form.step8",
"column": 2,
"fields": [
{ "key": "confirmar_nombre", "label": "form.confirmar_nombre", "type": "text", "readonly": true, "valueFrom": "nombre_completo" },
{ "key": "confirmar_firma", "label": "form.confirmar_firma", "type": "text", "readonly": true, "valueFrom": "reglamento_firma" },
{
"key": "declaracion_voluntario",
"label": "form.declaracion_voluntario",
"type": "checkbox",
"required": true,
"colspan": 2,
"options": [
{ "value": "informacion_verdadera", "label": "form.declaracion.verdadera", "required": true },
{ "value": "acepto_reglamento", "label": "form.declaracion.acepto_reglamento", "required": true },
{ "value": "compromiso_etica", "label": "form.declaracion.compromiso_etica", "required": true },
{ "value": "autorizo_datos", "label": "form.declaracion.autorizo_datos", "required": true },
{ "value": "confidencialidad", "label": "form.declaracion.confidencialidad", "required": true },
{ "value": "participacion_voluntaria", "label": "form.declaracion.voluntaria", "required": true }
]
},
{ "key": "confirmacion", "label": "form.confirmacion", "type": "checkbox", "colspan": 2, "required": true, "options": [
{ "value": "confirmado", "label": "form.confirmacion_label", "required": true }
] }
]
}
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,187 +0,0 @@
<h1>General Volunteer Program Regulations</h1>
<p>Volunteer Terms, Conditions, and Code of Conduct</p>
<section id="introduccion">
<h2>Introduction</h2>
<p>The Kingdom of Peace and Justice Centers mission is to promote peace, justice, leadership, education, humanitarian aid, social responsibility, and cooperation among communities and nations.</p>
<p>The following Regulations establish the legal, ethical, and institutional framework that governs the participation of volunteers, defining their rights, obligations, and principles of conduct, in order to ensure that all volunteer activities are carried out in accordance with the values of the Center and applicable law.</p>
</section>
<section id="objeto-voluntariado">
<h2>1. Purpose of the Volunteering</h2>
<p>The volunteer participates freely and voluntarily in the events of the Center for the purpose of contributing to the fulfillment of its institutional mission in the areas of education, community development, humanitarian assistance, leadership, public diplomacy, promotion of peace and justice, and service to society.</p>
<p>All activities shall be carried out with a spirit of service, responsibility, integrity, respect, cooperation, and commitment to the common good.</p>
</section>
<section id="naturaleza-voluntariado">
<h2>2. Nature of Volunteering</h2>
<p>The volunteers participation is exclusively voluntary in nature and does not constitute, under any circumstances, an employment, contractual, corporate, representative, agency, or subordinate relationship with the Center.</p>
<p>Participation in the events does not generate any right to salary, employment benefits, social security, compensation, or any other economic remuneration, except with the express written authorization of the Center regarding reimbursement of expenses.</p>
</section>
<section id="requisitos-voluntario">
<h2>3. Requirements to Become a Volunteer</h2>
<p>The volunteer declares that:</p>
<ul>
<li>The information provided is truthful, complete, and up to date.</li>
<li>They are physically and mentally fit to participate in the activities.</li>
<li>There is no legal incapacity or restriction to their participation.</li>
<li>They will comply with the policies, regulations, and procedures established by the Center.</li>
</ul>
</section>
<section id="seguro">
<h2>4. Insurance Coverage</h2>
<p>Unless expressly communicated in writing by the Center, each volunteer shall be responsible for having the medical, accident, and other insurance coverage they deem necessary for their participation.</p>
<p>The purchase of any insurance by the Center does not replace the personal responsibility of the volunteer.</p>
</section>
<section id="responsabilidad-medica">
<h2>5. Medical Liability</h2>
<p>The volunteer states that their state of health allows them to participate in the events and agrees to promptly report any medical condition that may affect their safety or that of third parties.</p>
</section>
<section id="cumplimiento-normas">
<h2>6. Compliance with Rules</h2>
<p>The volunteer agrees to comply with the instructions given by Center representatives, respect safety rules, and to always act with responsibility, professionalism, and respect toward all persons.</p>
</section>
<section id="confidencialidad">
<h2>7. Confidentiality</h2>
<p>All information to which the volunteer has access during their participation shall be considered confidential.</p>
<p>The volunteer agrees not to disclose institutional, financial, strategic, personal, or any other reserved information, even after their collaboration with the Center has ended.</p>
</section>
<section id="proteccion-datos">
<h2>8. Protection of Personal Data</h2>
<p>The volunteer authorizes the Center to collect, store, and process their personal data exclusively for purposes related to:</p>
<ul>
<li>the administration of the volunteer program;</li>
<li>institutional communication;</li>
<li>the organization of events;</li>
<li>compliance with legal obligations;</li>
<li>the safety of participants.</li>
</ul>
</section>
<section id="uso-imagen">
<h2>9. Image Use</h2>
<p>The volunteer authorizes the Center to use photographs, audio recordings, videos, and images obtained during the events for institutional, educational, informational, promotional, and fundraising purposes, unless they expressly state otherwise in writing.</p>
</section>
<section id="propiedad-intelectual">
<h2>10. Intellectual Property</h2>
<p>Any document, photograph, video, audiovisual material, presentation, publication, content, or work developed by the volunteer within the institutional events will be the exclusive property of the Center, unless otherwise agreed in writing.</p>
</section>
<section id="uso-bienes">
<h2>11. Property Use and Care</h2>
<p>The volunteer will use the Centers property, equipment, and materials responsibly, agreeing to maintain them in good condition and return them when required or at the end of their participation.</p>
</section>
<section id="terminacion-voluntariado">
<h2>12. Termination of Volunteer Participation</h2>
<p>The Center may suspend or terminate the participation of any volunteer when there is noncompliance with these Regulations, conduct that is incompatible with institutional values, risks to the organization, or any other justified reason.</p>
<p>The volunteer may withdraw freely by providing reasonable advance notice.</p>
</section>
<section id="limitacion-responsabilidad">
<h2>13. Limitation of Liability</h2>
<p>The volunteer acknowledges that they participate freely in the Centers activities and accept the normal risks inherent to them.</p>
<p>To the extent permitted by applicable law, the Center, its directors, employees, representatives, collaborators, and other volunteers will not be liable for damages arising from the volunteers participation, except in cases of willful misconduct or gross negligence.</p>
</section>
<section id="declaracion-riesgos">
<h2>14. Assumption of Risk Statement</h2>
<p>The volunteer declares that they are aware that certain events may involve risks arising from travel, community work, humanitarian assistance, public events, institutional visits, or other events of the program.</p>
<p>The volunteer accepts participation under their own responsibility and voluntarily assumes such risks, except when there is willful misconduct or gross negligence attributable to the Center.</p>
</section>
<section id="conducta-institucional">
<h2>15. Institutional Conduct</h2>
<p>The volunteer agrees to maintain conduct consistent with the principles and values of the Center.</p>
<p>The following are prohibited:</p>
<ul>
<li>committing acts of physical or verbal violence;</li>
<li>discriminating against or harassing any person;</li>
<li>consuming illegal drugs or appearing under the influence;</li>
<li>carrying weapons without legal and express authorization;</li>
<li>requesting donations or administering financial resources on behalf of the Center without written authorization;</li>
<li>using the name of the Center for personal, political, or commercial purposes.</li>
</ul>
</section>
<section id="proteccion-menores">
<h2>16. Safeguarding Minors and Vulnerable Individuals</h2>
<p>When events involve minors or individuals in situations of vulnerability, the volunteer shall strictly comply with the protection protocols established by the Center and applicable law.</p>
</section>
<section id="conflicto-intereses">
<h2>17. Conflict of Interest</h2>
<p>The volunteer shall report any personal, professional, economic, or family situation that could create a conflict of interest with the activities of the Center.</p>
</section>
<section id="cumplimiento-normativo">
<h2>18. Regulatory Compliance</h2>
<p>The volunteer agrees to comply with all applicable legislation related to human rights, protection of personal data, anti-corruption, prevention of money laundering, equality, nondiscrimination, and all other applicable rules.</p>
</section>
<section id="uso-imagen-institucional">
<h2>19. Use of the Institutional Name and Image</h2>
<p>The Centers name, logo, trademarks, corporate image, and other distinctive signs may only be used with prior written authorization.</p>
</section>
<section id="redes-sociales">
<h2>20. Social Media and Communications</h2>
<p>The volunteer may not issue public statements, interviews, communications, or publications on behalf of the Center without prior authorization.</p>
<p>They also agree to use social media responsibly, avoiding publications that may affect the institutional image.</p>
</section>
<section id="donaciones">
<h2>21. Donations</h2>
<p>The status of volunteer does not grant any right over the goods, resources, projects, or donations administered by the Center.</p>
<p>Any fundraising campaign must have prior written authorization.</p>
</section>
<section id="fuerza-mayor">
<h2>22. Force Majeure</h2>
<p>The Center may suspend, modify, or cancel any event due to force majeure, security reasons, armed conflicts, health emergencies, natural disasters, or any other circumstance beyond its control, without this generating any liability.</p>
</section>
<section id="legislacion-jurisdiccion">
<h2>23. Applicable Law and Jurisdiction</h2>
<p>These Regulations shall be governed by the laws in force in the country where the volunteer events are carried out.</p>
<p>Any dispute shall be submitted to the jurisdiction of the competent courts of that country.</p>
</section>
<section id="codigo-etica">
<h2>Volunteer Code of Conduct</h2>
<p>Every volunteer commits to:</p>
<ul>
<li>Act with honesty, integrity, and transparency.</li>
<li>Respect the dignity and rights of all people.</li>
<li>Promote a culture of peace, justice, and solidarity.</li>
<li>Maintain absolute confidentiality.</li>
<li>Avoid conflicts of interest.</li>
<li>Represent the Center with respect and professionalism.</li>
<li>Comply with applicable law and institutional policies.</li>
<li>Protect the reputation and values of the Center.</li>
<li>Always act with a spirit of service.</li>
</ul>
</section>
<section id="politica-privacidad">
<h2>Data Protection and Privacy Policy</h2>
<p>The Center recognizes the importance of protecting the privacy of its volunteers and agrees to process all personal information in accordance with applicable law.</p>
<p>Personal data shall be used exclusively for:</p>
<ul>
<li>Administration of the volunteer program.</li>
<li>Organization of activities and events.</li>
<li>Institutional communication.</li>
<li>Compliance with legal obligations.</li>
<li>Protection and safety of participants.</li>
<li>Preparation of statistics and institutional reports.</li>
</ul>
<p>The Center shall adopt reasonable technical, administrative, and organizational measures to protect personal information against loss, unauthorized access, alteration, disclosure, or improper use.</p>
<p>Volunteers may exercise the rights granted to them by applicable law regarding access, rectification, updating, or deletion of their personal data.</p>
</section>

View File

@ -1,187 +0,0 @@
<h1>Reglamento General del Programa de Voluntariado</h1>
<p>Términos, Condiciones y Código de Ética para Voluntarios</p>
<section id="introduccion">
<h2>Introducción</h2>
<p>El Centro del Reino de Paz y Justicia (CRPJ) tiene como misión promover la paz, la justicia, el liderazgo, la educación, la ayuda humanitaria, la responsabilidad social y la cooperación entre comunidades y naciones.</p>
<p>El presente Reglamento establece el marco jurídico, ético e institucional que regula la participación de los voluntarios, definiendo sus derechos, obligaciones y principios de actuación, con el fin de garantizar que todas las actividades de voluntariado se desarrollen conforme a los valores del CRPJ y a la legislación aplicable.</p>
</section>
<section id="objeto-voluntariado">
<h2>1. Objeto del Voluntariado</h2>
<p>El voluntario participa libre y participa libremente, por un deseo propio y personal, en las actividades del CRPJ con el propósito de contribuir al cumplimiento de la misión institucional en las áreas de educación, desarrollo comunitario, asistencia humanitaria, liderazgo, diplomacia pública, promoción de la paz, la justicia y el servicio a la sociedad.</p>
<p>Toda actividad deberá desarrollarse con espíritu de servicio, responsabilidad, integridad, respeto, cooperación y compromiso con el bienestar común.</p>
</section>
<section id="naturaleza-voluntariado">
<h2>2. Naturaleza del Voluntariado</h2>
<p>La labor de quien participa tiene carácter exclusivamente voluntario y no constituye, bajo ninguna circunstancia, una relación laboral, contractual, societaria, de representación, mandato o subordinación con el CRPJ.</p>
<p>La participación en las actividades no genera derecho a salario, prestaciones laborales, seguridad social, indemnizaciones ni cualquier otra remuneración económica, salvo autorización expresa y por escrito del CRPJ respecto del reembolso de gastos.</p>
</section>
<section id="requisitos-voluntario">
<h2>3. Requisitos para ser Voluntario</h2>
<p>El voluntario declara que:</p>
<ul>
<li>La información proporcionada por el voluntario es veraz, completa y actualizada.</li>
<li>Se encuentra física y mentalmente apto para participar en las actividades.</li>
<li>No existe impedimento legal para su participación.</li>
<li>Cumplirá las políticas, reglamentos y procedimientos establecidos por el CRPJ.</li>
</ul>
</section>
<section id="seguro">
<h2>4. Seguro</h2>
<p>Salvo comunicación expresa y por escrito del CRPJ, cada voluntario será responsable de contar con la cobertura médica, de accidentes y demás seguros que considere necesarios para su participación.</p>
<p>La contratación de cualquier seguro por parte del CRPJ no sustituye la responsabilidad personal del voluntario.</p>
</section>
<section id="responsabilidad-medica">
<h2>5. Responsabilidad Médica</h2>
<p>El voluntario manifiesta que su estado de salud le permite participar en las actividades y se compromete a informar oportunamente cualquier condición médica que pueda afectar su seguridad o la de terceros.</p>
</section>
<section id="cumplimiento-normas">
<h2>6. Cumplimiento de Normas</h2>
<p>El voluntario se compromete a cumplir las instrucciones impartidas por los responsables del CRPJ, respetar las normas de seguridad y actuar siempre con responsabilidad, profesionalismo y respeto hacia todas las personas.</p>
</section>
<section id="confidencialidad">
<h2>7. Confidencialidad</h2>
<p>Toda la información a la que el voluntario tenga acceso durante su participación será considerada confidencial.</p>
<p>El voluntario se obliga a no divulgar información institucional, financiera, estratégica, personal o cualquier otra información reservada, aun después de finalizar su colaboración con el CRPJ.</p>
</section>
<section id="proteccion-datos">
<h2>8. Protección de Datos Personales</h2>
<p>El voluntario autoriza al CRPJ a recopilar, almacenar y tratar sus datos personales exclusivamente para fines relacionados con:</p>
<ul>
<li>la administración del programa de voluntariado;</li>
<li>la comunicación institucional;</li>
<li>la organización de actividades;</li>
<li>el cumplimiento de obligaciones legales;</li>
<li>la seguridad de los participantes.</li>
</ul>
</section>
<section id="uso-imagen">
<h2>9. Uso de Imagen</h2>
<p>El voluntario autoriza al CRPJ a utilizar fotografías, grabaciones de audio, videos e imágenes obtenidas durante las actividades para fines institucionales, educativos, informativos, promocionales y de recaudación de fondos, salvo manifestación expresa y escrita en caso contrario.</p>
</section>
<section id="propiedad-intelectual">
<h2>10. Propiedad Intelectual</h2>
<p>Todo documento, fotografía, video, material audiovisual, presentación, publicación, contenido o trabajo desarrollado por el voluntario dentro de las actividades institucionales será propiedad exclusiva del CRPJ, salvo acuerdo escrito en caso contrario.</p>
</section>
<section id="uso-bienes">
<h2>11. Uso y Cuidado de Bienes</h2>
<p>El voluntario deberá utilizar responsablemente los bienes, equipos y materiales del CRPJ, comprometiéndose a conservarlos y devolverlos cuando le sean requeridos o al finalizar su participación.</p>
</section>
<section id="terminacion-voluntariado">
<h2>12. Terminación del Voluntariado</h2>
<p>El CRPJ podrá suspender o finalizar la participación de cualquier voluntario cuando exista incumplimiento del presente Reglamento, conducta incompatible con los valores institucionales, riesgos para la organización o cualquier otra causa justificada.</p>
<p>El voluntario podrá retirarse libremente notificándolo con una anticipación razonable.</p>
</section>
<section id="limitacion-responsabilidad">
<h2>13. Limitación de Responsabilidad</h2>
<p>El voluntario reconoce que participa libremente en las actividades del CRPJ y acepta los riesgos normales inherentes a las mismas.</p>
<p>En la medida permitida por la legislación aplicable, el CRPJ, sus directivos, empleados, representantes, colaboradores y demás voluntarios no serán responsables por daños derivados de la participación del voluntario, salvo en casos de dolo o negligencia grave.</p>
</section>
<section id="declaracion-riesgos">
<h2>14. Declaración de Asunción de Riesgos</h2>
<p>El voluntario declara conocer que determinadas actividades pueden implicar riesgos derivados de desplazamientos, trabajo comunitario, asistencia humanitaria, eventos públicos, visitas institucionales u otras actividades propias del programa.</p>
<p>El voluntario acepta participar bajo su propia responsabilidad y asume voluntariamente dichos riesgos, salvo cuando exista dolo o negligencia grave imputable al CRPJ.</p>
</section>
<section id="conducta-institucional">
<h2>15. Conducta Institucional</h2>
<p>El voluntario se compromete a mantener una conducta acorde con los principios y valores del CRPJ.</p>
<p>Queda prohibido:</p>
<ul>
<li>realizar actos de violencia física o verbal;</li>
<li>discriminar o acosar a cualquier persona;</li>
<li>consumir drogas ilegales o presentarse bajo sus efectos;</li>
<li>portar armas sin autorización legal y expresa;</li>
<li>solicitar donaciones o administrar recursos económicos en nombre del CRPJ sin autorización escrita;</li>
<li>utilizar el nombre del CRPJ para fines personales, políticos o comerciales.</li>
</ul>
</section>
<section id="proteccion-menores">
<h2>16. Protección de Menores y Personas Vulnerables</h2>
<p>Cuando las actividades involucren menores de edad o personas en situación de vulnerabilidad, el voluntario deberá cumplir estrictamente los protocolos de protección establecidos por el CRPJ y la legislación aplicable.</p>
</section>
<section id="conflicto-intereses">
<h2>17. Conflicto de Intereses</h2>
<p>El voluntario deberá informar cualquier situación personal, profesional, económica o familiar que pudiera generar un conflicto de interés con las actividades del CRPJ.</p>
</section>
<section id="cumplimiento-normativo">
<h2>18. Cumplimiento Normativo</h2>
<p>El voluntario se compromete a cumplir toda la legislación aplicable relacionada con derechos humanos, protección de datos personales, anticorrupción, prevención del lavado de dinero, igualdad, no discriminación y demás normas aplicables.</p>
</section>
<section id="uso-imagen-institucional">
<h2>19. Uso del Nombre e Imagen Institucional</h2>
<p>El nombre, logotipo, marcas, imagen corporativa y demás signos distintivos del CRPJ únicamente podrán utilizarse con autorización previa y escrita.</p>
</section>
<section id="redes-sociales">
<h2>20. Redes Sociales y Comunicaciones</h2>
<p>El voluntario no podrá emitir declaraciones públicas, entrevistas, comunicados o publicaciones en representación del CRPJ sin autorización previa.</p>
<p>Asimismo, se compromete a utilizar responsablemente las redes sociales evitando publicaciones que puedan afectar la imagen institucional.</p>
</section>
<section id="donaciones">
<h2>21. Donaciones</h2>
<p>La condición de voluntario no otorga derecho alguno sobre los bienes, recursos, proyectos o donaciones administrados por el CRPJ.</p>
<p>Toda campaña de recaudación de fondos deberá contar con autorización previa y escrita.</p>
</section>
<section id="fuerza-mayor">
<h2>22. Fuerza Mayor</h2>
<p>El CRPJ podrá suspender, modificar o cancelar cualquier actividad debido a causas de fuerza mayor, razones de seguridad, conflictos armados, emergencias sanitarias, desastres naturales o cualquier otra circunstancia fuera de su control, sin que ello genere responsabilidad alguna.</p>
</section>
<section id="legislacion-jurisdiccion">
<h2>23. Legislación Aplicable y Jurisdicción</h2>
<p>El presente Reglamento se regirá por la legislación vigente del país donde se desarrollen las actividades del voluntariado.</p>
<p>Toda controversia será sometida a la jurisdicción de los tribunales competentes de dicho país.</p>
</section>
<section id="codigo-etica">
<h2>Código de Ética del Voluntario</h2>
<p>Todo voluntario se compromete a:</p>
<ul>
<li>Actuar con honestidad, integridad y transparencia.</li>
<li>Respetar la dignidad y los derechos de todas las personas.</li>
<li>Promover una cultura de paz, justicia y solidaridad.</li>
<li>Mantener absoluta confidencialidad.</li>
<li>Evitar conflictos de interés.</li>
<li>Representar al CRPJ con respeto y profesionalismo.</li>
<li>Cumplir la legislación aplicable y las políticas institucionales.</li>
<li>Proteger la reputación y los valores del CRPJ.</li>
<li>Actuar siempre con espíritu de servicio.</li>
</ul>
</section>
<section id="politica-privacidad">
<h2>Política de Privacidad y Tratamiento de Datos Personales</h2>
<p>El CRPJ reconoce la importancia de proteger la privacidad de sus voluntarios y se compromete a tratar toda información personal conforme a la legislación aplicable.</p>
<p>Los datos personales serán utilizados exclusivamente para:</p>
<ul>
<li>Administración del programa de voluntariado.</li>
<li>Organización de actividades y eventos.</li>
<li>Comunicación institucional.</li>
<li>Cumplimiento de obligaciones legales.</li>
<li>Protección y seguridad de los participantes.</li>
<li>Elaboración de estadísticas e informes institucionales.</li>
</ul>
<p>El CRPJ adoptará medidas técnicas, administrativas y organizativas razonables para proteger la información personal contra pérdida, acceso no autorizado, alteración, divulgación o uso indebido.</p>
<p>Los voluntarios podrán ejercer los derechos que les otorgue la legislación aplicable respecto del acceso, rectificación, actualización o eliminación de sus datos personales.</p>
</section>

View File

@ -1,187 +0,0 @@
<h1>Regulamento Geral do Programa de Voluntariado</h1>
<p>Termos, Condições e Código de Ética para Voluntários</p>
<section id="introduccion">
<h2>Introdução</h2>
<p>O Centro do Reino de Paz e Justiça (CRPJ) tem como missão promover a paz, a justiça, a liderança, a educação, a ajuda humanitária, a responsabilidade social e a cooperação entre comunidades e nações.</p>
<p>O presente Regulamento estabelece o marco jurídico, ético e institucional que disciplina a participação dos voluntários, definindo seus direitos, deveres e princípios de atuação, com o objetivo de assegurar que todas as atividades de voluntariado sejam desenvolvidas em conformidade com os valores do CRPJ e com a legislação aplicável.</p>
</section>
<section id="objeto-voluntariado">
<h2>1. Objeto do Voluntariado</h2>
<p>O voluntário participa de forma livre, por desejo próprio e pessoal, das atividades do CRPJ com o propósito de contribuir para o cumprimento da missão institucional nas áreas de educação, desenvolvimento comunitário, assistência humanitária, liderança, diplomacia pública, promoção da paz, da justiça e serviço à sociedade.</p>
<p>Todas as atividades deverão ser desenvolvidas com espírito de serviço, responsabilidade, integridade, respeito, cooperação e compromisso com o bem comum.</p>
</section>
<section id="naturaleza-voluntariado">
<h2>2. Natureza do Voluntariado</h2>
<p>A participação do voluntário possui caráter exclusivamente voluntário e não constitui, em hipótese alguma, vínculo empregatício, contratual, societário, de representação, de mandato ou de subordinação com o CRPJ.</p>
<p>A participação nas atividades não gera direito a salário, benefícios trabalhistas, previdência social, indenizações nem qualquer outra forma de remuneração, salvo mediante autorização expressa e por escrito do CRPJ para reembolso de despesas.</p>
</section>
<section id="requisitos-voluntario">
<h2>3. Requisitos para ser Voluntário</h2>
<p>O voluntário declara que:</p>
<ul>
<li>As informações fornecidas são verdadeiras, completas e atualizadas.</li>
<li>Encontra-se física e mentalmente apto para participar das atividades.</li>
<li>Não possui qualquer impedimento legal para sua participação.</li>
<li>Cumprirá as políticas, os regulamentos e os procedimentos estabelecidos pelo CRPJ.</li>
</ul>
</section>
<section id="seguro">
<h2>4. Seguro</h2>
<p>Salvo comunicação expressa e por escrito do CRPJ, cada voluntário será responsável por possuir cobertura médica, seguro contra acidentes e quaisquer outros seguros que considere necessários para sua participação.</p>
<p>A contratação de qualquer seguro pelo CRPJ não substitui a responsabilidade pessoal do voluntário.</p>
</section>
<section id="responsabilidad-medica">
<h2>5. Responsabilidade Médica</h2>
<p>O voluntário declara que seu estado de saúde lhe permite participar das atividades e compromete-se a informar prontamente qualquer condição médica que possa afetar sua segurança ou a de terceiros.</p>
</section>
<section id="cumplimiento-normas">
<h2>6. Cumprimento das Normas</h2>
<p>O voluntário compromete-se a cumprir as instruções dos responsáveis pelo CRPJ, respeitar as normas de segurança e atuar sempre com responsabilidade, profissionalismo e respeito para com todas as pessoas.</p>
</section>
<section id="confidencialidad">
<h2>7. Confidencialidade</h2>
<p>Todas as informações às quais o voluntário tiver acesso durante sua participação serão consideradas confidenciais.</p>
<p>O voluntário compromete-se a não divulgar informações institucionais, financeiras, estratégicas, pessoais ou quaisquer outras informações confidenciais, mesmo após o término de sua colaboração com o CRPJ.</p>
</section>
<section id="proteccion-dados">
<h2>8. Proteção de Dados Pessoais</h2>
<p>O voluntário autoriza o CRPJ a coletar, armazenar e tratar seus dados pessoais exclusivamente para as seguintes finalidades:</p>
<ul>
<li>administração do Programa de Voluntariado;</li>
<li>comunicação institucional;</li>
<li>organização de atividades;</li>
<li>cumprimento de obrigações legais;</li>
<li>segurança dos participantes.</li>
</ul>
</section>
<section id="uso-imagen">
<h2>9. Uso de Imagem</h2>
<p>O voluntário autoriza o CRPJ a utilizar fotografias, gravações de áudio, vídeos e imagens obtidos durante as atividades para fins institucionais, educacionais, informativos, promocionais e de captação de recursos, salvo manifestação expressa e por escrito em sentido contrário.</p>
</section>
<section id="propiedad-intelectual">
<h2>10. Propriedade Intelectual</h2>
<p>Todo documento, fotografia, vídeo, material audiovisual, apresentação, publicação, conteúdo ou trabalho desenvolvido pelo voluntário no âmbito das atividades institucionais será de propriedade exclusiva do CRPJ, salvo acordo em contrário formalizado por escrito.</p>
</section>
<section id="uso-bienes">
<h2>11. Uso e Conservação dos Bens</h2>
<p>O voluntário deverá utilizar os bens, equipamentos e materiais do CRPJ de forma responsável, comprometendo-se a conservá-los e devolvê-los sempre que solicitado ou ao término de sua participação.</p>
</section>
<section id="terminacion-voluntariado">
<h2>12. Encerramento do Voluntariado</h2>
<p>O CRPJ poderá suspender ou encerrar a participação de qualquer voluntário em caso de descumprimento do presente Regulamento, conduta incompatível com os valores institucionais, riscos para a organização ou qualquer outra causa devidamente justificada.</p>
<p>O voluntário poderá desligar-se do Programa a qualquer momento, mediante comunicação com antecedência razoável.</p>
</section>
<section id="limitacion-responsabilidad">
<h2>13. Limitação de Responsabilidade</h2>
<p>O voluntário reconhece que participa das atividades do CRPJ de forma livre e voluntária e aceita os riscos normais inerentes a elas.</p>
<p>Na medida permitida pela legislação aplicável, o CRPJ, seus dirigentes, empregados, representantes, colaboradores e demais voluntários não serão responsáveis por danos decorrentes da participação do voluntário, salvo nos casos de dolo ou culpa grave.</p>
</section>
<section id="declaracion-riesgos">
<h2>14. Declaração de Assunção de Riscos</h2>
<p>O voluntário declara estar ciente de que determinadas atividades podem envolver riscos decorrentes de deslocamentos, trabalho comunitário, assistência humanitária, eventos públicos, visitas institucionais ou outras atividades próprias do Programa.</p>
<p>O voluntário aceita participar sob sua própria responsabilidade e assume voluntariamente tais riscos, salvo quando houver dolo ou culpa grave imputável ao CRPJ.</p>
</section>
<section id="conducta-institucional">
<h2>15. Conduta Institucional</h2>
<p>O voluntário compromete-se a manter conduta compatível com os princípios e valores do CRPJ.</p>
<p>É proibido ao voluntário:</p>
<ul>
<li>praticar atos de violência física ou verbal;</li>
<li>discriminar ou assediar qualquer pessoa;</li>
<li>consumir drogas ilícitas ou apresentar-se sob seus efeitos;</li>
<li>portar armas sem autorização legal e expressa;</li>
<li>solicitar doações ou administrar recursos financeiros em nome do CRPJ sem autorização por escrito;</li>
<li>utilizar o nome do CRPJ para fins pessoais, políticos ou comerciais.</li>
</ul>
</section>
<section id="proteccion-menores">
<h2>16. Proteção de Menores e Pessoas em Situação de Vulnerabilidade</h2>
<p>Quando as atividades envolverem menores de idade ou pessoas em situação de vulnerabilidade, o voluntário deverá cumprir rigorosamente os protocolos de proteção estabelecidos pelo CRPJ e a legislação aplicável.</p>
</section>
<section id="conflicto-intereses">
<h2>17. Conflito de Interesses</h2>
<p>O voluntário deverá comunicar qualquer situação de natureza pessoal, profissional, econômica ou familiar que possa gerar conflito de interesses em relação às atividades do CRPJ.</p>
</section>
<section id="cumplimiento-normativo">
<h2>18. Cumprimento Normativo</h2>
<p>O voluntário compromete-se a cumprir toda a legislação aplicável relacionada aos direitos humanos, à proteção de dados pessoais, ao combate à corrupção, à prevenção da lavagem de dinheiro, à igualdade, à não discriminação e às demais normas aplicáveis.</p>
</section>
<section id="uso-imagen-institucional">
<h2>19. Uso do Nome e da Identidade Institucional</h2>
<p>O nome, o logotipo, as marcas, a identidade institucional e os demais sinais distintivos do CRPJ somente poderão ser utilizados mediante autorização prévia e por escrito.</p>
</section>
<section id="redes-sociales">
<h2>20. Redes Sociais e Comunicações</h2>
<p>O voluntário não poderá conceder declarações públicas, entrevistas, comunicados ou realizar publicações em nome do CRPJ sem autorização prévia.</p>
<p>Da mesma forma, compromete-se a utilizar as redes sociais de forma responsável, evitando publicações que possam prejudicar a imagem institucional.</p>
</section>
<section id="donaciones">
<h2>21. Doações</h2>
<p>A condição de voluntário não confere qualquer direito sobre os bens, recursos, projetos ou doações administrados pelo CRPJ.</p>
<p>Toda campanha de captação de recursos deverá ser previamente autorizada por escrito.</p>
</section>
<section id="fuerza-mayor">
<h2>22. Caso Fortuito ou Força Maior</h2>
<p>O CRPJ poderá suspender, alterar ou cancelar qualquer atividade em razão de caso fortuito ou força maior, motivos de segurança, conflitos armados, emergências sanitárias, desastres naturais ou quaisquer outras circunstâncias alheias ao seu controle, sem que isso gere qualquer responsabilidade.</p>
</section>
<section id="legislacion-jurisdiccion">
<h2>23. Legislação Aplicável e Jurisdição</h2>
<p>O presente Regulamento será regido pela legislação vigente do país onde forem desenvolvidas as atividades de voluntariado.</p>
<p>Qualquer controvérsia será submetida à jurisdição dos tribunais competentes desse país.</p>
</section>
<section id="codigo-etica">
<h2>Código de Ética do Voluntário</h2>
<p>Todo voluntário compromete-se a:</p>
<ul>
<li>Atuar com honestidade, integridade e transparência.</li>
<li>Respeitar a dignidade e os direitos de todas as pessoas.</li>
<li>Promover uma cultura de paz, justiça e solidariedade.</li>
<li>Manter absoluto sigilo.</li>
<li>Evitar conflitos de interesses.</li>
<li>Representar o CRPJ com respeito e profissionalismo.</li>
<li>Cumprir a legislação aplicável e as políticas institucionais.</li>
<li>Preservar a reputação e os valores do CRPJ.</li>
<li>Atuar sempre com espírito de serviço.</li>
</ul>
</section>
<section id="politica-privacidad">
<h2>Política de Privacidade e Tratamento de Dados Pessoais</h2>
<p>O CRPJ reconhece a importância de proteger a privacidade de seus voluntários e compromete-se a tratar todas as informações pessoais em conformidade com a legislação aplicável.</p>
<p>Os dados pessoais serão utilizados exclusivamente para:</p>
<ul>
<li>Administração do Programa de Voluntariado;</li>
<li>Organização de atividades e eventos;</li>
<li>Comunicação institucional;</li>
<li>Cumprimento de obrigações legais;</li>
<li>Proteção e segurança dos participantes;</li>
<li>Elaboração de estatísticas e relatórios institucionais.</li>
</ul>
<p>O CRPJ adotará medidas técnicas, administrativas e organizacionais razoáveis para proteger as informações pessoais contra perda, acesso não autorizado, alteração, divulgação ou uso indevido.</p>
<p>Os voluntários poderão exercer os direitos assegurados pela legislação aplicável em relação ao acesso, à retificação, à atualização ou à exclusão de seus dados pessoais.</p>
</section>

View File

@ -1,172 +0,0 @@
{
"name": "📊 Reporte de Traducciones - cdrdpyj",
"nodes": [
{
"id": "webhook-1",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1.2,
"position": [250, 300],
"parameters": {
"path": "news-summary",
"httpMethod": "POST",
"authentication": "headerAuth",
"responseMode": "onReceived",
"responseData": "{{ $json }}",
"options": {}
},
"credentials": {
"httpHeaderAuth": {
"id": null,
"name": "crpj-summary-key"
}
}
},
{
"id": "code-1",
"name": "Formatear datos",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [480, 300],
"parameters": {
"language": "javaScript",
"code": "const langNames = {\n es: 'Español',\n en: 'English',\n fr: 'Français',\n pt: 'Português',\n rw: 'Kinyarwanda',\n he: 'עברית',\n uk: 'Українська',\n ru: 'Русский',\n kr: 'Kreyòl',\n};\n\nconst ORDER = ['es', 'en', 'fr', 'pt', 'rw', 'he', 'uk', 'ru', 'kr'];\nconst payload = $input.first().json.body;\n\nconst summaryRows = [];\nfor (const code of ORDER) {\n const s = payload.summary[code];\n if (!s) continue;\n summaryRows.push({\n json: {\n language: langNames[code] || code,\n code,\n totalEs: payload.totals.spanishArticles,\n translated: s.translated,\n missing: s.missing,\n percent: s.percent,\n },\n });\n}\n\nconst detailRows = [];\nconst orphanCount = payload.orphaned?.length || 0;\n\nif (orphanCount > 0) {\n const warnRow = { json: { date: '', spanishTitle: `⚠️ ${orphanCount} archivo(s) huérfano(s) — sin versión en español`, spanishUrl: '' } };\n for (const lang of ORDER) warnRow.json[lang] = '';\n detailRows.push(warnRow);\n}\n\nfor (const art of payload.articles) {\n const row = { json: { date: art.date, spanishTitle: art.spanishTitle, spanishUrl: art.spanishUrl || '' } };\n for (const lang of ORDER) row.json[lang] = art.files[lang] ? '✅' : '❌';\n detailRows.push(row);\n}\n\nfor (const orphan of payload.orphaned) {\n const row = { json: { date: orphan.groupId, spanishTitle: `⚠️ Huérfano: solo en ${orphan.languages.join(', ')}`, spanishUrl: orphan.urls?.[orphan.languages[0]] || '' } };\n for (const lang of ORDER) row.json[lang] = orphan.languages.includes(lang) ? '⚠️' : '—';\n detailRows.push(row);\n}\n\nreturn [summaryRows, detailRows];\n",
"mode": "raw"
},
"nodesOnOutput": {
"main": [
{
"type": "n8n-nodes-base.googleSheets",
"index": [
0
]
},
{
"type": "n8n-nodes-base.googleSheets",
"index": [
1
]
}
]
}
},
{
"id": "sheets-summary",
"name": "Sheets - Resumen",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4,
"position": [720, 180],
"parameters": {
"operation": "append",
"documentId": {
"__rl": true,
"value": "",
"mode": "id"
},
"sheetName": "Resumen",
"columns": {
"mappingMode": "defineBelow",
"value": {
"A": "={{ $json.language }}",
"B": "={{ $json.code }}",
"C": "={{ $json.totalEs }}",
"D": "={{ $json.translated }}",
"E": "={{ $json.missing }}",
"F": "={{ $json.percent }}"
}
},
"options": {
"cellFormat": "USER_ENTERED",
"dataLocationOnSheet": "A:F"
},
"handshake": false
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": null,
"name": "Google Sheets"
}
}
},
{
"id": "sheets-detail",
"name": "Sheets - Detalle",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4,
"position": [720, 420],
"parameters": {
"operation": "append",
"documentId": {
"__rl": true,
"value": "",
"mode": "id"
},
"sheetName": "Detalle",
"columns": {
"mappingMode": "defineBelow",
"value": {
"A": "={{ $json.date }}",
"B": "={{ $json.spanishTitle }}",
"C": "={{ $json.spanishUrl }}",
"D": "={{ $json.es }}",
"E": "={{ $json.en }}",
"F": "={{ $json.fr }}",
"G": "={{ $json.pt }}",
"H": "={{ $json.rw }}",
"I": "={{ $json.he }}",
"J": "={{ $json.uk }}",
"K": "={{ $json.ru }}",
"L": "={{ $json.kr }}"
}
},
"options": {
"cellFormat": "USER_ENTERED",
"dataLocationOnSheet": "A:L"
},
"handshake": false
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": null,
"name": "Google Sheets"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Formatear datos",
"type": "main",
"index": 0
}
]
]
},
"Formatear datos": {
"main": [
[
{
"node": "Sheets - Resumen",
"type": "main",
"index": 0
}
],
[
{
"node": "Sheets - Detalle",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"staticData": null,
"tags": [],
"versionId": "1.0"
}

View File

@ -1,230 +0,0 @@
import '@dotenvx/dotenvx/config';
import { readFileSync, readdirSync, existsSync } from 'fs';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
import { google } from 'googleapis';
const __dirname = dirname(fileURLToPath(import.meta.url));
const ROOT = join(__dirname, '..');
const NEWS_DIR = join(ROOT, 'src', 'content', 'news');
const LANGUAGES = ['es', 'en', 'fr', 'pt', 'rw', 'he', 'uk', 'ru', 'kr'];
function extractField(fm, field) {
const re = new RegExp(`^${field}:\\s*(.*)$`, 'm');
const m = fm.match(re);
if (!m) return '';
let val = m[1].trim();
if ((val.startsWith("'") && val.endsWith("'")) ||
(val.startsWith('"') && val.endsWith('"'))) {
val = val.slice(1, -1);
}
return val;
}
const ROUTE_TRANSLATIONS = {
es: "noticias", en: "news", fr: "informations",
he: "\u05d7\u05d3\u05e9\u05d5\u05ea", uk: "noticias", pt: "noticias",
ru: "\u043d\u043e\u0432\u043e\u0441\u0442\u0438", rw: "amakuru", kr: "nouvel",
};
function articleUrl(locale, slug) {
const route = ROUTE_TRANSLATIONS[locale] || 'news';
return `https://www.centrodelreinodepazyjusticia.com/${locale}/${route}/${slug}`;
}
async function clearSheet(sheetName) {
const saEmail = process.env.GOOGLE_SERVICE_ACCOUNT_EMAIL;
const pk = process.env.GOOGLE_PRIVATE_KEY;
const sid = process.env.GOOGLE_SHEET_ID;
if (!saEmail || !pk || !sid) {
console.log(`[send-to-n8n] Skipping sheet clear — missing Google credentials`);
return;
}
const auth = new google.auth.GoogleAuth({
credentials: {
client_email: saEmail,
private_key: pk.replace(/\\n/g, '\n'),
},
scopes: ['https://www.googleapis.com/auth/spreadsheets'],
});
const sheets = google.sheets({ version: 'v4', auth });
await sheets.spreadsheets.values.clear({
spreadsheetId: sid,
range: `${sheetName}!A:Z`,
});
console.log(`[send-to-n8n] Cleared sheet: ${sheetName}`);
}
function parseMeta(filePath) {
const raw = readFileSync(filePath, 'utf-8');
const m = raw.match(/^---\r?\n([\s\S]*?)\r?\n---/);
if (!m) return {};
const fm = m[1];
return {
locale: extractField(fm, 'locale'),
title: extractField(fm, 'title'),
date: extractField(fm, 'date'),
draft: extractField(fm, 'draft'),
slug: extractField(fm, 'slug'),
};
}
function normFilename(fileName) {
const name = fileName.replace(/\.md$/, '');
return name.replace(/^(\d{4}-\d{2}-\d{2})-0(\d)$/, '$1-$2');
}
async function main() {
const groups = {};
for (const lang of LANGUAGES) {
const dir = join(NEWS_DIR, lang);
if (!existsSync(dir)) continue;
for (const file of readdirSync(dir).filter(f => f.endsWith('.md'))) {
const meta = parseMeta(join(dir, file));
if (meta.draft === 'true') continue;
const key = normFilename(file);
if (!groups[key]) groups[key] = {};
groups[key][lang] = {
file,
title: meta.title || '',
date: meta.date || '',
slug: meta.slug || '',
};
}
}
const allKeys = Object.keys(groups).sort();
const esKeys = allKeys.filter(k => groups[k].es);
const summary = Object.fromEntries(LANGUAGES.map(l => {
const matches = esKeys.filter(k => groups[k][l]).length;
return [l, {
total: allKeys.filter(k => groups[k][l]).length,
translated: matches,
missing: esKeys.length - matches,
percent: esKeys.length > 0 ? Math.round((matches / esKeys.length) * 100) : 0,
}];
}));
const articles = esKeys.map(k => {
const es = groups[k].es;
const files = Object.fromEntries(LANGUAGES.map(l => [l, groups[k][l]?.file || null]));
const slugs = Object.fromEntries(LANGUAGES.map(l => [l, groups[k][l]?.slug || null]));
const urls = Object.fromEntries(LANGUAGES.map(l => {
const entry = groups[k][l];
return [l, entry?.slug ? articleUrl(l, entry.slug) : null];
}));
return {
groupId: k,
date: es?.date || '',
spanishTitle: es?.title || '',
spanishFile: es?.file || '',
spanishSlug: es?.slug || '',
spanishUrl: es?.slug ? articleUrl('es', es.slug) : '',
files,
slugs,
urls,
};
});
const orphaned = allKeys.filter(k => !groups[k].es).map(k => {
const langs = Object.keys(groups[k]);
const files = Object.fromEntries(langs.map(l => [l, groups[k][l].file]));
const slugs = Object.fromEntries(langs.map(l => [l, groups[k][l].slug]));
const urls = Object.fromEntries(langs.map(l => {
const entry = groups[k][l];
return [l, entry?.slug ? articleUrl(l, entry.slug) : null];
}));
return {
groupId: k,
languages: langs,
files,
slugs,
urls,
};
});
const payload = {
timestamp: new Date().toISOString(),
source: 'cdrdpyj-postbuild',
site: 'centrodelreinodepazyjusticia.com',
summary,
articles,
orphaned,
totals: {
spanishArticles: esKeys.length,
totalGroups: allKeys.length,
orphanedArticles: orphaned.length,
languages: Object.fromEntries(LANGUAGES.map(l => {
const c = allKeys.filter(k => groups[k][l]).length;
return [l, c];
})),
},
};
const orphanCount = orphaned.length;
if (orphanCount > 0) {
console.log(`[send-to-n8n] ⚠️ ${orphanCount} orphaned article(s) — missing Spanish version`);
orphaned.forEach(o => {
console.log(` ⚠️ ${o.groupId} solo en: ${o.languages.join(', ')}`);
Object.entries(o.urls).forEach(([l, u]) => console.log(` ${l}: ${u}`));
});
}
const url = process.env.N8N_WEBHOOK_URL;
if (!url) {
console.log('[send-to-n8n] N8N_WEBHOOK_URL not set — showing sample payload');
console.log('Summary:', JSON.stringify(payload.summary, null, 2));
console.log('Sample articles (first 5):');
payload.articles.slice(0, 5).forEach(a => {
console.log(` ${a.groupId} | ${a.date} | ${a.spanishTitle.slice(0, 60)}...`);
console.log(` → ES: ${a.spanishUrl}`);
const langs = Object.entries(a.urls).filter(([_, v]) => v).map(([k]) => k).join(', ');
console.log(` → Present in: ${langs || 'ES only'}`);
});
if (orphanCount) {
console.log('Orphaned articles:');
payload.orphaned.forEach(o => {
console.log(` ${o.groupId}`);
Object.entries(o.urls).forEach(([l, u]) => console.log(` ${l}: ${u}`));
});
}
console.log(`[send-to-n8n] Total: ${articles.length} ES articles, ${orphanCount} orphans`);
return;
}
if (process.env.GOOGLE_SERVICE_ACCOUNT_EMAIL && process.env.GOOGLE_SHEET_ID) {
try {
await clearSheet('Resumen');
await clearSheet('Detalle');
} catch (e) {
console.error(`[send-to-n8n] Warning: could not clear sheets (${e.message})`);
}
}
const apiKey = process.env.N8N_API_KEY;
const apiKeyHeader = process.env.N8N_API_KEY_HEADER || 'X-API-Key';
const headers = { 'Content-Type': 'application/json' };
if (apiKey) headers[apiKeyHeader] = apiKey;
fetch(url, {
method: 'POST',
headers,
body: JSON.stringify(payload),
})
.then(r => {
if (!r.ok) throw new Error(`HTTP ${r.status} ${r.statusText}`);
console.log(`[send-to-n8n] OK — ${articles.length} ES articles, ${orphanCount} orphans`);
})
.catch(e => {
console.error(`[send-to-n8n] Warning: n8n unreachable (${e.message}) — build continues`);
});
}
main().catch(e => {
console.error(`[send-to-n8n] Fatal error: ${e.message}`);
process.exit(1);
});

View File

@ -1,18 +1,15 @@
---
import { ClientRouter } from "astro:transitions";
import { GoogleAnalytics } from "astro-google-analytics";
import { GoogleAnalytics } from 'astro-google-analytics';
const {
title = "Centro del Reino de Paz y Justicia",
description = "",
image = null,
url = null,
date = null,
noindex = false,
} = Astro.props;
const imageUrl = image ? new URL(image, Astro.site).toString() : null;
const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
---
<head>
@ -21,7 +18,6 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="generator" content={Astro.generator} />
{noindex && <meta name="robots" content="noindex, nofollow" />}
<GoogleAnalytics id="G-26KM3HWW9J" />
<title>{title}</title>
@ -34,28 +30,10 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<meta property="og:type" content="article" />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<link rel="canonical" href={canonicalURL} />
<meta name="telegram:channel" content="@CentroRPJ" />
{imageUrl && <meta property="og:image" content={imageUrl} />}
<meta property="og:image:width" content="1200" />
<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
}
/>
)
}
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Twitter -->
@ -64,5 +42,6 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<meta name="twitter:description" content={description} />
{imageUrl && <meta name="twitter:image" content={imageUrl} />}
{url && <meta name="twitter:url" content={url} />}
</head>
<ClientRouter />

View File

@ -2,10 +2,9 @@
const { props } = Astro.props;
import { Icon } from "astro-icon/components";
import Button from "./ui/Button.astro";
import { getLocalizedRoute } from '@/i18n';
import RegisterModal from "../components/RegisterModal.vue";
const background = props.bgImage || props.bgColor;
const formUrl = `/${Astro.currentLocale}/${getLocalizedRoute("formulario", Astro.currentLocale)}`;
---
<div style={{ background: props.bgImage ? `url('${props.bgImage}') center no-repeat; background-size:contain;` : props.bgColor }} class={`aspect-auto xl:aspect-square py-8 px-8 xl:px-16 flex flex-col justify-evenl`}>
@ -29,7 +28,7 @@ const formUrl = `/${Astro.currentLocale}/${getLocalizedRoute("formulario", Astro
{props.hasInput && (
<div class="flex gap-2 w-full mt-5">
<Button class="px-6 py-3 uppercase bg-[#22523F]" url={formUrl} variant="secondary" title={props.buttonLabel} />
<RegisterModal client:load locale={Astro.currentLocale} />
</div>
)}
</div>

View File

@ -2,228 +2,74 @@
import Button from "./ui/Button.astro";
import { Icon } from "astro-icon/components";
import { getCollection } from "astro:content";
import { createTranslator, routeTranslations } from "../i18n/index.ts";
const allNews = await getCollection("news");
const allEditorial = await getCollection("editorial");
import { createTranslator } from "../i18n/index.ts";
const tl = createTranslator(Astro.currentLocale);
const currentLocale = Astro.currentLocale;
const currentPath = Astro.url.pathname;
const { locale } = Astro.params;
const languages = [
{ code: "es", icon: "icon_flag_es", label: "Español" },
{ code: "en", icon: "icon_flag_uk", label: "English" },
{ code: "he", icon: "flagpack--il", label: "עברית" },
{ code: "pt", icon: "flagpack--br", label: "Português" },
{ code: "fr", icon: "flagpack--fr", label: "Français" },
{ code: "ru", icon: "flagpack--ru", label: "Русский" },
{ code: "rw", icon: "flagpack--rw", label: "Kinyarwanda" },
{ code: "kr", icon: "flagpack--ht", label: "Kreole" },
];
const navItems = [
{ href: "#somos", key: "nav.about" },
{ href: "#programs", key: "nav.programs" },
{ href: "#news", key: "nav.news" },
{ href: "#editorial", key: "nav.editorial" },
];
const sidebarNavItems = [
{ href: `/`, key: "nav.home" },
{ href: "#somos", key: "nav.about" },
{ href: "#programs", key: "nav.programs" },
{ href: "#news", key: "nav.news" },
{ href: "#editorial", key: "nav.editorial" },
];
function translatePath(newLocale: string) {
const segments = currentPath.split("/").filter(Boolean);
if (segments.length === 0) return `/${newLocale}`;
const remainingSegments = segments.slice(1);
const allRouteNames = Object.values(routeTranslations).flatMap(r => Object.values(r));
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;
});
if (segments.length >= 2 && allRouteNames.includes(segments[1])) {
if (segments.length >= 3) {
const currentId = segments[segments.length - 1];
const baseId = currentId.split("/").pop();
const existsInNews = allNews.some(
(post) =>
post.data.slug === baseId && post.data.locale === newLocale,
);
const existsInEditorial = allEditorial.some(
(post) =>
post.data.slug === baseId && post.data.locale === newLocale,
);
if (!existsInNews && !existsInEditorial) return `/${newLocale}/${translatedSegments[0]}`;
return `/${newLocale}/${translatedSegments[0]}/${baseId}`;
}
}
return `/${[newLocale, ...translatedSegments].join("/")}`;
}
---
<div>
<div class="flex justify-between px-8 md:px-0 md:py-4">
<div class="border-l-4 border-colorPrimary pl-4">
<p
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-2xl md:text-lg"
>
<a href={`/${currentLocale}`}
>{tl("nav.logo_line1")}<br />{tl("nav.logo_line2")}</a
>
<p class="font-secondary text-colorPrimary font-bold leading-none py-2 text-2xl md:text-lg">
<a href={`/${currentLocale}`}>{tl("nav.logo_line1")}<br/>{tl("nav.logo_line2")}</a>
</p>
</div>
<nav
class="flex justify-end md:justify-evenly gap-4 md:gap-6 lg: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-4 lg:gap-8 font-primary font-bold">
{
navItems.map((item) => (
<a
class="hover:text-colorPrimary transition"
href={`/${currentLocale}${item.href}`}
>
{tl(item.key)}
</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 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}#programs`>{tl("nav.programs")}</a>
<a class="hover:text-colorPrimary transition" href=`/${currentLocale}#news`>{tl("nav.news")}</a>
</div>
<div class="drawer md:hidden">
<div class="drawer lg:hidden">
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
<div class="drawer-content">
<label for="my-drawer-1" class="btn-ghost drawer-button">
<Icon
name="ph:list"
class="text-white text-4xl font-bold"
/>
</label>
<!-- Page content here -->
<label for="my-drawer-1" class="btn-ghost drawer-button"><Icon name="ph:list" class="text-white text-4xl font-bold" /></label>
</div>
<div class="drawer-side">
<label
for="my-drawer-1"
aria-label="close sidebar"
class="drawer-overlay"></label>
<ul
class="menu min-h-full w-80 p-4 bg-[url(/img/opacity-logo.png)] bg-no-repeat bg-contain bg-center bg-[#22523F] text-white"
>
<div
class="flex gap-2 justify-center items-center mb-8 mt-8"
>
<img
class="w-1/3 object-contain"
src="/img/logo-metalico.webp"
alt="Logo Centro del Reino de Paz y Justicia"
/>
<p
class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg"
>
<a href="/"
>{tl("nav.logo_line1")}<br />{
tl("nav.logo_line2")
}</a
>
<label for="my-drawer-1" aria-label="close sidebar" class="drawer-overlay"></label>
<ul class="menu min-h-full w-80 p-4 bg-[url(/img/opacity-logo.png)] bg-no-repeat bg-contain bg-center bg-[#22523F] text-white">
<!-- Sidebar content here -->
<div class="flex gap-2 justify-center items-center mb-8 mt-8">
<img class="w-1/3 object-contain" src="/img/logo-metalico.webp" alt="Logo Centro del Reino de Paz y Justicia" />
<p class="font-secondary text-colorPrimary font-bold leading-none py-2 text-lg ">
<a href="/">{tl("nav.logo_line1")}<br/>{tl("nav.logo_line2")}</a>
</p>
</div>
<div class="font-primary font-bold flex flex-col gap-1 text-lg p-0">
<li><a><a class="hover:text-colorPrimary transition" href="#somos">{tl("nav.about")}</a></a></li>
<li><a><a class="hover:text-colorPrimary transition" href="#programs">{tl("nav.programs")}</a></a></li>
<li><a><a class="hover:text-colorPrimary transition" href="#news">{tl("nav.news")}</a></a></li>
</div>
<ul
class="font-primary font-bold flex flex-col gap-1 text-lg p-0"
>
{
sidebarNavItems.map((item) => (
<li>
<a
class="hover:text-colorPrimary transition"
href={`/${currentLocale}${item.href}`}
>
{tl(item.key)}
</a>
</li>
))
}
</ul>
<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 class="dropdown mt-10">
<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"
>
{
languages.map((lang) => (
<li>
<a href={translatePath(lang.code)}>
{lang.icon && (
<Icon name={lang.icon} />
)}{" "}
{lang.label}
</a>
</li>
))
}
<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">
<li><a href="/es">🇪🇸 Español</a></li>
<li><a href="/en">🇬🇧 English</a></li>
</ul>
</div>
</ul>
</div>
</div>
<div class="w-50 hidden md:block">
<Button
class="px-4 py-2 uppercase"
title={tl("nav.contact")}
url="#contact"
variant="primary"
/>
<Button class="px-4 py-2 uppercase" title={tl("nav.contact")} url="#contact" variant="primary" />
</div>
<div class="dropdown dropdown-end md:block hidden">
<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"
>
{
languages.map((lang) => (
<li>
<a href={translatePath(lang.code)}>
{lang.icon && <Icon name={lang.icon} />}{" "}
{lang.label}
</a>
</li>
))
}
<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>
<ul tabindex="-1" class="dropdown-content text-tertiary text-lg bg-colorPrimary menu z-1 w-52 p-2 shadow-sm">
<li><a href="/es"><Icon name="icon_flag_es" /> Español</a></li>
<li><a href="/en"><Icon name="icon_flag_uk" /> English</a></li>
<li><a href="/he"><Icon name="icon_flag_uk" /> עברית</a></li>
</ul>
</div>
</nav>

View File

@ -13,7 +13,7 @@ const tl = createTranslator(Astro.currentLocale);
<div class="h-screen pb-20 max-h-[700px] sm:max-h-[900px] md:max-h-[1080px] container bg-[url(/img/DRJBP-1.webp)] bg-no-repeat bg-contain bg-bottom mx-auto mt-16">
<div class="grid md:grid-cols-2 h-full px-6">
<div class="gap-8 md:flex flex-col justify-end mt-14 md:mt-0">
<div class="gap-8 md:flex flex-col justify-end">
<img
src="/img/logo-metalico.webp"
alt="Logo Metalico"

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">
<li class="border-b pb-3">
<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>
</li>
<li class="border-b pb-3">
<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>
</li>
<li class="border-b pb-3">
<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>
</li>
<li class="border-b pb-3">
<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>
</li>
<li>
<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>
</li>
</ul>

View File

@ -29,7 +29,7 @@ const imageUrl = props.image || ''
{ props.type === 'imgText' && (
<div class={`flex flex-col justify-between h-full bg-[${props.bgColor}]`}>
<div class="grid grid-cols-1 gap-0 p-8 font-bold">
<div class="md:px-10 md:py-10">
<div class="px-12 py-10">
<Icon name={props.icon} class="text-3xl" />
<p class={`font-primary text-xl text-[${textColor}]`}>{props.text}</p>
</div>

View File

@ -2,23 +2,15 @@
import { Image } from "astro:assets"
import { Icon } from "astro-icon/components";
import "dayjs/locale/es";
import "dayjs/locale/fr";
import "dayjs/locale/he";
import "dayjs/locale/uk";
import "dayjs/locale/pt";
import "dayjs/locale/ru";
import "dayjs/locale/rw";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import { getLocalizedRoute, createTranslator } from "../../i18n";
const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
const locale = Astro.currentLocale || "es";
const tl = createTranslator(locale);
const regionNames = new Intl.DisplayNames([locale], { type: 'region' });
const locale = Astro.currentLocale;
dayjs.extend(utc);
dayjs.locale(locale);
const { data, routeKey = "news" } = Astro.props;
const { data } = Astro.props;
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
@ -27,36 +19,18 @@ locationArray.filter(Boolean).join(', ');
---
<div class="bg-[#EBE5D0] text-[#003421] p-10">
<div class="flex md:flex-col items-center content-center md:items-baseline">
<Icon name="ph:arrow-circle-down-thin" class="md:text-8xl text-7xl mb-0 md:mb-8" />
{nicedate ? (
<p class="font-light md:text-2xl text-lg ml-2 md:ml-0 md:mb-8 mb-3">
<Icon name="ph:arrow-circle-down-thin" class="text-8xl mb-8" />
<p class="font-light text-2xl mb-8">
{locationArray.filter(Boolean).join(', ')}<br />
({nicedate}):
</p>
) : (
<p class="font-light md:text-2xl text-lg md:mb-8 mb-3">
{locationArray.filter(Boolean).join(', ')}:
</p>
)}
</div>
<h3 class="md:text-2xl text-lg mb-4 font-bold md:mb-8 hover:underline"><a href={`/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`}>{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 class="overflow-hidden">
<a href={`/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`}>
<div>
<Image
src={data.data.thumbnail}
alt={data.data.title}
class="aspect-square object-cover transition-transform duration-300 hover:scale-110"
class="aspect-square object-cover"
/>
</a>
</div>
<div class="mt-8">
<a href={`/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`} class="inline-flex items-center gap-2 px-6 py-3 bg-white text-[#22523F] hover:bg-[#22523F] hover:text-[#EBE6D2] hover:underline font-bold transition text-sm rounded-none uppercase">
{tl(routeKey + ".fullnew")}
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
</a>
</div>
</div>

View File

@ -1,68 +1,30 @@
---
import { Image } from "astro:assets";
import { Image } from "astro:assets"
import { Icon } from "astro-icon/components";
import "dayjs/locale/es";
import "dayjs/locale/fr";
import "dayjs/locale/he";
import "dayjs/locale/uk";
import "dayjs/locale/pt";
import "dayjs/locale/ru";
import "dayjs/locale/rw";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
const locale = Astro.currentLocale || "es";
const regionNames = new Intl.DisplayNames([locale], { type: "region" });
import { createTranslator, getLocalizedRoute } from "@/i18n";
const tl = createTranslator(locale);
const locale = Astro.currentLocale;
dayjs.extend(utc);
dayjs.locale(locale);
const { data, content, routeKey = "news" } = Astro.props;
const { data } = Astro.props;
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
const location = [data.data.city, data.data.state, countryName].filter(Boolean).join(", ");
const newsUrl = `/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`;
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 ? "..." : "");
const locationArray = [data.data.city,countryName]
locationArray.filter(Boolean).join(', ');
---
<a href={newsUrl} class="block group">
<article 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>
<h3 class="text-2xl font-bold mb-1 font-secondary text-tertiary"><a href={`/${locale}/news/${data.id}`}>{data.data.title}</a></h3>
<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>
{
data.data.city && <span class="font-normal font-primary text-lg text-tertiary/70">
{locationArray.filter(Boolean).join(', ')} | </span>
}
<span class="font-normal font-primary text-lg text-tertiary/70">{nicedate}</span>
<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 && (
<div class="flex flex-nowrap md:flex-wrap gap-2 overflow-x-auto md:overflow-visible pb-2 md:pb-0 mb-4">
{data.data.tags.map((tag: string) => (
<span class="badge rounded-none bg-[#EBE6D2] border-none text-[#003421] whitespace-nowrap">{tag}</span>
))}
</div>
)}
<div class="mt-auto">
<span class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline">
{tl(routeKey + ".seemore")}
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
</span>
</div>
</div>
</article>
</a>

File diff suppressed because it is too large Load Diff

View File

@ -1,36 +1,30 @@
---
import { Image } from "astro:assets";
import "swiper/css";
import "swiper/css/navigation";
import "swiper/css/pagination";
import { Icon } from "astro-icon/components";
const isHebrew = Astro.currentLocale === "he";
const { images, class: className, imgClass } = Astro.props;
const { images, class: className } = Astro.props;
---
<div class={`bg-white ${className || ''}`}>
<div class="bg-white">
<div class="mx-auto">
<div class="swiper">
<div class="swiper lg:h-200 md:h-150 h-62">
<div class="swiper-wrapper">
{
images.map((image) => (
<div class="swiper-slide">
<div class="relative">
<div class="swiper-slide h-full">
<div class="flex! h-full flex-col items-center justify-center relative">
{image.text && (
<div class="uppercase lg:text-9xl md:text-5xl text-4xl text-white text-shadow-lg absolute inset-0 flex items-center justify-center font-secondary z-10">
<div class="uppercase lg:text-9xl md:text-5xl text-4xl text-white text-shadow-lg absolute font-secondary">
{image.text}
</div>
)}
<img
class={`w-full ${imgClass || ''}`}
class="w-full h-full object-cover object-center"
src={image.image}
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 z-10">
{image.text_alt}
</div>
)}
</div>
</div>
))
@ -42,28 +36,10 @@ const { images, class: className, imgClass } = Astro.props;
<!-- If we need navigation buttons -->
<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" />
)
}
</div>
<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" />
)
}
</div>
</div>
</div>

View File

@ -7,38 +7,38 @@ const tl = createTranslator(Astro.currentLocale);
const { props } = Astro.props;
---
<div class="container mx-auto">
<div class="grid md:grid-cols-2 min-w-0">
<div class="bg-[#EBE5D0] p-6 md:p-12 lg:p-24 grid lg:grid-cols-2 min-w-0">
<div class="flex flex-col justify-between min-h-full min-w-0">
<h2 class="text-3xl lg:text-2xl xl:text-3xl 2xl:text-5xl font-secondary text-tertiary font-bold wrap-break-word">{tl("values.justice.title")}</h2>
<p class="text-lg text-tertiary break-words">{tl("values.justice.text")}</p>
<div class="grid md:grid-cols-2 min-h-100">
<div class="bg-[#EBE5D0] p-12 md:p-24 grid lg:grid-cols-2">
<div class="leftcol flex justify-between flex-col min-h-full">
<h2 class="text-5xl font-secondary text-tertiary font-bold">{tl("values.justice.title")}</h2>
<p class="text-lg text-tertiary">{tl("values.justice.text")}</p>
</div>
<div class="flex items-end justify-end min-h-full min-w-0 max-w-full">
<Icon name="icon_justice_1" class="text-6xl md:text-9xl text-tertiary max-w-full h-auto" />
<div class="rightcol flex justify-end align-bottom min-h-full ">
<Icon name="icon_justice_1" class="text-9xl text-tertiary self-end" />
</div>
</div>
<div class="bg-tertiary p-6 md:p-12 lg:p-24 grid lg:grid-cols-2 min-w-0">
<div class="flex flex-col justify-between min-h-full min-w-0 max-w-full">
<h2 class="text-3xl lg:text-2xl xl:text-3xl 2xl:text-5xl font-secondary font-bold text-[#CBA16A] wrap-break-word">{tl("values.integrity.title")}</h2>
<p class="text-[#CBA16A] text-lg break-words">{tl("values.integrity.text")}</p>
<div class="bg-tertiary p-12 md:p-24 grid lg:grid-cols-2">
<div class="leftcol flex justify-between flex-col min-h-full">
<h2 class="text-5xl font-secondary font-bold text-[#CBA16A]">{tl("values.integrity.title")}</h2>
<p class="text-[#CBA16A] text-lg">{tl("values.integrity.text")}</p>
</div>
<div class="flex items-end justify-end min-h-full min-w-0 max-w-full">
<Icon name="icon_justice_2" class="text-[#EBE5D0] text-6xl md:text-9xl max-w-full h-auto" />
<div class="rightcol flex justify-end align-bottom min-h-full ">
<Icon name="icon_justice_2" class="text-[#EBE5D0] text-9xl self-end" />
</div>
</div>
</div>
<div class="grid lg:grid-cols-3">
<div class="bg-tertiary p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square min-w-0">
<h2 class="text-3xl 2xl:text-5xl font-secondary font-bold text-white wrap-break-word">{tl("values.service.title")}</h2>
<p class="text-xl text-[#EBE5D0] wrap-break-word">{tl("values.service.text")}</p>
<div class="bg-tertiary p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square">
<h2 class="text-3xl xl:text-5xl font-secondary font-bold text-white">{tl("values.service.title")}</h2>
<p class="text-xl text-[#EBE5D0]">{tl("values.service.text")}</p>
</div>
<div class="bg-[#BEA48D] p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square min-w-0">
<h2 class="text-3xl 2xl:text-5xl font-secondary font-bold text-tertiary wrap-break-word">{tl("values.excellence.title")}</h2>
<p class="text-xl text-tertiary wrap-break-word">{tl("values.excellence.text")}</p>
<div class="bg-[#BEA48D] p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square">
<h2 class="text-3xl xl:text-5xl font-secondary font-bold text-tertiary">{tl("values.excellence.title")}</h2>
<p class="text-xl text-tertiary">{tl("values.excellence.text")}</p>
</div>
<div class="bg-[#22523F] p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square min-w-0">
<h2 class="text-3xl 2xl:text-5xl font-secondary font-bold text-white wrap-break-word">{tl("values.dialogue.title")}</h2>
<p class="text-white text-xl wrap-break-word">{tl("values.dialogue.text")}</p>
<div class="bg-[#22523F] p-12 xl:p-20 2xl:p-24 flex justify-between flex-col min-h-full lg:aspect-square">
<h2 class="text-3xl xl:text-5xl font-secondary font-bold text-white">{tl("values.dialogue.title")}</h2>
<p class="text-white text-xl">{tl("values.dialogue.text")}</p>
</div>
</div>
</div>

View File

@ -1,63 +0,0 @@
---
import { getCollection } from "astro:content";
import { Image } from "@unpic/astro";
import Button from "../ui/Button.astro";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
import { createTranslator, getLocalizedRoute } from '../../i18n';
const currentLocale = Astro.currentLocale;
const tl = createTranslator(currentLocale);
const items = await getCollection("editorial", (post)=>{
return post.data.locale == currentLocale
});
const sorted = [...items]
.sort((a, b) => {
const dateDiff = new Date(b.data.date).getTime() - new Date(a.data.date).getTime()
if (dateDiff !== 0) return dateDiff
return (a.data.order ?? 0) - (b.data.order ?? 0)
})
.slice(0, 6);
dayjs.extend(utc);
dayjs.locale(currentLocale || "es");
---
<div id="editorial" class="bg-[#EBE5D0] py-10 lg:py-14">
<div class="container mx-auto px-4 md:px-0 max-w-4xl">
<div class="flex flex-col items-center mb-8">
<h4 class="text-[#003421] text-2xl uppercase font-bold text-center font-primary">{tl("editorial.title")}</h4>
<h2 class="text-[#003421] text-3xl md:text-4xl font-bold text-center font-secondary mt-1">{tl("editorial.text")}</h2>
</div>
<div class="divide-y divide-[#003421]/10">
{
sorted.map((item) => {
const date = dayjs.utc(item.data.date).format("D MMMM YYYY");
const url = `/${currentLocale}/${getLocalizedRoute("editorial", currentLocale)}/${item.data.slug}`;
const thumb = item.data.thumbnail_square || item.data.thumbnail;
return (
<a href={url} class="flex gap-5 py-5 group hover:bg-[#003421]/5 transition-colors -mx-3 px-3 rounded-sm">
<div class="w-20 h-20 md:w-24 md:h-24 shrink-0 overflow-hidden rounded-sm bg-[#003421]/10">
{thumb && (
<Image src={thumb} alt={item.data.title} class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300" />
)}
</div>
<div class="min-w-0 flex-1">
<p class="text-sm md:text-base font-primary font-semibold text-[#22523F]">Dr. José Benjamín Pérez Matos</p>
<p class="text-sm text-[#003421]/50 font-primary mt-0.5">{date}</p>
<h3 class="text-base md:text-lg font-secondary font-bold text-[#003421] group-hover:text-[#003421]/60 transition-colors mt-1 leading-snug line-clamp-2">{item.data.title}</h3>
</div>
</a>
)
})
}
</div>
<div class="flex justify-center mt-8">
<Button class="px-6 py-2.5 uppercase text-sm" url={`/${currentLocale}/${getLocalizedRoute('editorial', currentLocale)}`} variant="primary" title={tl("editorial.buttonLable")} />
</div>
</div>
</div>

View File

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

View File

@ -87,11 +87,40 @@ const handleSubmit = async (e) => {
:placeholder="tl('footer.form.mesagge')"
rows="5"
required
class="bg-[#EBE5D0] w-full py-2 px-4 mb-2 text-[#303335] placeholder:text-[#303335] focus:outline-none resize-none"
class="bg-[#EBE5D0] w-full py-2 px-4 mb-2 text-[#303335] placeholder:text-[#303335] focus:outline-none"
></textarea>
</fieldset>
<div class="flex flex-row justify-between items-center mt-4">
<!-- Social Icons -->
<ul class="flex flex-row gap-2">
<li class="border-r pr-2">
<a href="https://x.com/CRPazYJusticia" target="_blank">
<Icon icon="ph:x-logo-thin" class="text-3xl" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.instagram.com/centrodelreinodepazyjusticia/" target="_blank">
<Icon icon="ph:instagram-logo-thin" class="text-3xl" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.facebook.com/Centrodelreinodepazyjusticia" target="_blank">
<Icon icon="ph:facebook-logo-thin" class="text-3xl" />
</a>
</li>
<li>
<a href="https://www.youtube.com/@CentrodelReinodePazyJusticia" target="_blank">
<Icon icon="ph:youtube-logo-thin" class="text-3xl" />
</a>
</li>
</ul>
<!-- Submit -->
<button
type="submit"
@ -120,41 +149,6 @@ const handleSubmit = async (e) => {
</span>
</button>
<div class="flex flex-row justify-between items-center mt-4">
<!-- Social Icons -->
<ul class="flex flex-row gap-2">
<li class="border-r pr-2">
<a href="https://x.com/CRPazYJusticia" target="_blank">
<Icon icon="ph:x-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.instagram.com/centrodelreinodepazyjusticia/" target="_blank">
<Icon icon="ph:instagram-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.facebook.com/Centrodelreinodepazyjusticia" target="_blank">
<Icon icon="ph:facebook-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li class="border-r pr-2">
<a href="https://www.youtube.com/@CentrodelReinodePazyJusticia" target="_blank">
<Icon icon="ph:youtube-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
<li>
<a href="https://t.me/CentroRPJ" target="_blank">
<Icon icon="ph:telegram-logo-thin" class="text-3xl hover:text-[#D4C7A1] transition-all hover:transform hover:scale-115" />
</a>
</li>
</ul>
</div>
</form>
</template>

View File

@ -10,37 +10,37 @@ const tl = createTranslator(Astro.currentLocale);
<h2 class="text-3xl lg:text-5xl text-center font-bold font-secondary my-8 text-[#003421]">{tl("formation.title")}</h2>
<p class="text-lg w-2/3 mx-auto mb-20 text-[#003421] text-justify" set:html={tl("formation.text")}></p>
<div class="grid xl:grid-cols-3 text-[#003421] md:gap-20 gap-10 md:p-0 p-5">
<div class="bg-[#EBE5D0] p-12 relative pb-32 md:pb-52">
<div class="grid xl:grid-cols-3 text-[#003421] gap-20">
<div class="bg-[#EBE5D0] p-12 relative pb-40">
<Icon name="ph:arrow-circle-down-thin" class="text-6xl mb-12 text-[#003421]" />
<h4 class="text-[#003421] text-2xl mb-12">{tl("formation.area.title")}</h4>
<ul class="text-lg list-disc font-normal list-inside leading-8" set:html={tl("formation.area.text")}></ul>
<div class="bottom-8 right-8 md:bottom-12 md:right-12 absolute">
<Icon name="icon_formation_1" class="text-8xl md:text-9xl text-[#003421]" />
<div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_1" class="text-8xl text-[#003421]" />
</div>
</div>
<div class="bg-[#EBE5D0] p-12 relative pb-32 md:pb-52">
<div class="bg-[#EBE5D0] text-[#003421] p-12 relative pb-40">
<Icon name="ph:arrow-circle-down-thin" class="text-6xl mb-12 text-[#003421]" />
<h4 class="text-[#003421] text-2xl mb-12">{tl("formation.consulting.title")}</h4>
<p class="text-lg font-normal">{tl("formation.consulting.text")}</p>
<div class="bottom-8 right-8 md:bottom-12 md:right-12 absolute">
<Icon name="icon_formation_2" class="text-8xl md:text-9xl text-[#003421]" />
<div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_2" class="text-8xl" />
</div>
</div>
<div class="bg-[#EBE5D0] p-12 relative pb-32 md:pb-52">
<div class="bg-[#EBE5D0] text-[#003421] p-12 relative pb-40">
<Icon name="ph:arrow-circle-down-thin" class="text-6xl mb-12 text-[#003421]" />
<h4 class="text-[#003421] text-2xl mb-12" set:html={tl("formation.action.title")}></h4>
<p class="text-lg font-normal" set:html={tl("formation.action.text")}></p>
<div class="bottom-8 right-8 md:bottom-12 md:right-12 absolute">
<Icon name="icon_formation_3" class="text-8xl md:text-9xl text-[#003421]" />
<div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_3" class="text-8xl" />
</div>
</div>
</div>

View File

@ -34,7 +34,7 @@ const cards = [
{
type: 'text',
icon: 'ph:arrow-circle-up-thin',
text: 'Enseñanza de las escrituras aplicada al análisis del mundo contemporáneo.',
text: 'Enseñanza bíblica aplicada al análisis del mundo contemporáneo.',
textColor: '#EBE5D0',
bgColor: '#003421'
},

View File

@ -27,7 +27,7 @@ const tl = createTranslator(Astro.currentLocale);
<div class="col-span-1 h-full bg-[#CBA16A]">
<BoxContainer props={tl("info.endbox")} />
</div>
<div class="col-span-1 py-10 lg:px-24 bg-[#21523F]">
<div class="col-span-1 py-38 lg:px-24 bg-[#21523F]">
<img src="/img/logo-new-white.png" alt="Logo del Centro del Reino de Paz y Justicia (CRPJ)" class="w-1/3 lg:w-100 mx-auto">
</div>
</div>

View File

@ -1,30 +1,31 @@
---
import { getCollection } from "astro:content";
import { getCollection, getEntry } from "astro:content";
import NewsCard from "../cards/NewsCard.astro";
import Button from "../ui/Button.astro";
const { routeKey = "news", anchorId = "news", titlePrefix = "news" } = Astro.props;
const { props } = Astro.props;
const currentLocale = Astro.currentLocale;
const items = await getCollection(routeKey, (post)=>{
const newsItems = await getCollection("news", (post)=>{
const currentLocale = Astro.currentLocale;
return post.data.locale == currentLocale
});
import { createTranslator, getLocalizedRoute } from '../../i18n';
import { createTranslator, t } from '../../i18n';
const tl = createTranslator(Astro.currentLocale);
---
<div id={anchorId} class="bg-[#22523F] py-12 lg:py-20">
<div id="news" class="bg-[#22523F] py-12 lg:py-20">
<div class="container mx-auto">
<div class="flex flex-col lg:w-1/2 items-center mx-auto py-8">
<h4 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary">{tl(titlePrefix + ".title")}</h4>
<h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl(titlePrefix + ".text")}</h2>
<p class="text-white text-xl text-center">{tl(titlePrefix + ".text2")}</p>
<Button class="px-6 py-3 uppercase mt-4" url={`/${currentLocale}/${getLocalizedRoute(routeKey, currentLocale)}`} variant="primary" title={tl(titlePrefix + ".buttonLable")} />
<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>
<p class="text-white text-xl text-center">{tl("news.text2")}</p>
<Button class="px-6 py-3 uppercase mt-4" url=`/${currentLocale}/news` variant="primary" title={tl("news.buttonLable")} />
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 md:gap-10 gap-20">
{
[...items]
[...newsItems]
.sort((a, b) => {
const dateDiff =
new Date(b.data.date).getTime() - new Date(a.data.date).getTime()
@ -35,7 +36,7 @@ const tl = createTranslator(Astro.currentLocale);
})
.slice(0,6)
.map((item) => (
<NewsCard data={item} routeKey={routeKey} />
<NewsCard data={item} />
))
}
</div>

View File

@ -5,8 +5,8 @@ const { title } = Astro.props;
---
<div class="md:py-16 p-4 bg-white">
<div class="container mx-auto">
<div class="flex justify-between px-4 align-center items-center">
<h2 id="article-title" class="text-tertiary font-secondary text-xl sm:text-2xl md:text-3xl lg:text-5xl font-bold">{title}</h2>
<div class="flex justify-between px-4">
<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">
</div>
</div>

View File

@ -3,15 +3,10 @@ import { glob, file } from 'astro/loaders';
import { z } from 'astro/zod';
const news = defineCollection({
loader: glob({
pattern: "**/*.md",
base: "./src/content/news",
generateId: ({ data, entry }) => `${data.locale}/${data.slug ?? entry.replace(/\.md$/, "")}`,
}),
loader: glob({ pattern: "**/*.md", base: "./src/content/news" }),
schema: ({ image }) => z.object({
locale: z.string().describe("News main language"),
title: z.string(),
slug: z.string(),
date: z.date(),
draft: z.boolean().optional(),
place: z.string().optional(),
@ -20,40 +15,12 @@ const news = defineCollection({
state: z.string().optional(),
country: z.string().optional(),
thumbnail: image().optional().describe("Main news thumbnail image"),
thumbnail_square: image().optional().describe("Main news thumbnail square image"),
youtube: z.string().optional(),
tags: z.array(z.string()).optional().describe("News tags"),
gallery: z.array(z.object({
image: image().optional(),
text: z.string().optional(),
text_alt: z.string().optional(),
text: z.string().optional()
})).optional().nullable()
}),
});
const editorial = defineCollection({
loader: glob({ pattern: "**/*.md", base: "./src/content/editorial" }),
schema: ({ image }) => z.object({
locale: z.string().describe("Editorial main language"),
title: z.string(),
slug: z.string(),
date: z.date(),
draft: z.boolean().optional(),
place: z.string().optional(),
order: z.number().optional(),
city: z.string().optional(),
state: z.string().optional(),
country: z.string().optional(),
thumbnail: image().optional().describe("Main editorial thumbnail image"),
thumbnail_square: image().optional().describe("Main editorial thumbnail square image"),
youtube: z.string().optional(),
tags: z.array(z.string()).optional().describe("Editorial tags"),
gallery: z.array(z.object({
image: image().optional(),
text: z.string().optional(),
text_alt: z.string().optional(),
})).optional().nullable()
}),
});
export const collections = { news, editorial };
export const collections = { news };

View File

@ -1,69 +0,0 @@
import { defineCollection } from 'astro:content';
import { glob, file } from 'astro/loaders';
import { z } from 'astro/zod';
const news = defineCollection({
//loader: glob({ pattern: "**/*.md", base: "./src/content/news" }),
loader: async () => {
const response = await fetch("http://localhost:3000/api/news?depth=1&draft=false&locale=es&trash=false");
const rawData = await response.json();
return rawData.docs.map((item: any) => {
item.id = item.id.toString()
return item
});
},
schema: ({ image }) => z.object({
locale: z.string().describe("News main language"),
title: z.string(),
date: z.string(),
slug: z.string(),
draft: z.boolean().optional().nullable(),
place: z.string().optional().nullable(),
order: z.number().optional().nullable(),
city: z.string().optional().nullable(),
state: z.string().optional().nullable(),
country: z.string().optional().nullable(),
thumbnail: z.object({
image: image().optional().nullable(),
url: z.string().optional().nullable()
}).optional().nullable().describe("Main news thumbnail image"),
//thumbnail_square: image().optional().describe("Main news thumbnail square image"),
youtube: z.string().optional(),
tags: z.array(z.string()).optional().describe("News tags"),
gallery: z.array(z.object({
image: z.object({
url: z.string().optional().nullable()
}).optional().nullable()
})).optional().nullable(),
body: z.string().nullable().optional()
}),
});
const editorial = defineCollection({
loader: glob({ pattern: "**/*.md", base: "./src/content/editorial" }),
schema: ({ image }) => z.object({
locale: z.string().describe("Editorial main language"),
title: z.string(),
date: z.date(),
slug: z.string(),
draft: z.boolean().optional(),
place: z.string().optional(),
order: z.number().optional(),
city: z.string().optional(),
state: z.string().optional(),
country: z.string().optional(),
thumbnail: image().optional().describe("Main editorial thumbnail image"),
thumbnail_square: image().optional().describe("Main editorial thumbnail square image"),
youtube: z.string().optional(),
tags: z.array(z.string()).optional().describe("Editorial tags"),
gallery: z.array(z.object({
image: image().optional(),
text: z.string().optional(),
text_alt: z.string().optional(),
})).optional().nullable()
}),
});
export const collections = { news, editorial };

View File

@ -1,42 +0,0 @@
---
locale: en
title: 'The True Nature of Ideas'
date: 2026-06-29
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-29-the-true-nature-of-ideas
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# The True Nature of Ideas
Election campaigns are often filled with promises, slogans, and carefully crafted speeches designed to win the citizens vote. However, once the political race is over, the moment comes when ideas leave the theoretical realm and begin to manifest themselves in reality. I firmly believe that the true nature of an ideology can be discerned precisely at that moment: not by what it promises, but by the behavior it inspires in its leaders, its supporters, and those who act on its behalf.
Ideologies should not be judged by the beauty of their rhetoric, but by their concrete results.
From this perspective, one of the clearest indicators is to observe how different political sectors react when they lose power or when the outcome of an election is unfavorable to them. In various Latin American countries—such as Chile, Bolivia, Honduras, and Ecuador—a frequently recurring phenomenon can be observed: when a left-wing government is replaced by a right-wing one, the response is not institutional acceptance, but rather unrest, riots, and actions aimed at disrupting public order. In contrast, when election results favor the left, normality prevails. The vast majority of the right accepts the results and respects order without resorting to violence as a tool of political pressure; the few isolated incidents of unrest stem from reckless individuals or provocateurs infiltrated to sow destabilization.
This profound difference and moral asymmetry is clearly evident in the security measures surrounding leaders during political races.
I remember perfectly well the harsh criticism directed at the Colombian president for attending his rallies surrounded by strict security measures and armored protection, which was used to portray him as someone who was afraid. However, that leader had to protect his life because there were specific death threats against him. In contrast, the left-wing candidate walked freely and without fear. The explanation is purely logical: his supporters would never attack their own leader, and those of us on the right are not murderers, nor do we use the physical elimination of our adversaries as a tool of political action. It is in this need for protection that it becomes clear which side harbors a propensity for harm and evil.
This is not about making absolute generalizations; I recognize that not everyone who identifies with the left engages in such behavior. Many citizens support these movements in good faith, convinced that they represent a path toward a more just society. However, they are misled by ideological positions that promise social justice, but they are completely unaware of their real consequences.
The examples in the region are painful, obvious, and indisputable.
Cuba, which was once one of the most prosperous and advanced islands in the continent, is now sinking into deep economic and social decline, lacking even basic services such as electricity. Nicaragua and Venezuela have followed the same path of institutional and economic destruction.
This latter nation is currently undergoing a crucial transition; and it is my fervent hope that this process may come to full completion so that the Venezuelan people may break their chains, restore their democratic institutions, and once again live in absolute and total freedom.
Recent history provides ample examples with which to evaluate each model; therefore, I reaffirm my conviction that the defense of freedom, the Rule of Law, and peaceful coexistence are the indispensable pillars for building truly prosperous societies.
**Dr. José Benjamín Pérez Matos**<br>
President<br>

View File

@ -1,112 +0,0 @@
---
locale: en
title: 'Temporary Peace or the Beginning of a Global Realignment in the Middle East?'
date: 2026-07-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-07-26-temporary-peace-or-the-beginning-of-a-global-realignment-in-the-middle-east
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# Temporary Peace or the Beginning of a Global Realignment in the Middle East?
The events of recent weeks in the Middle East have once again placed the region at the center of international attention. The recent pause in U.S. bombings on Iranian territory, after nearly two weeks of continuous hostilities, has opened a waiting period that many analysts are presenting as a possible step toward an instance of strategic diplomacy.
The technical talks held in Oman and the efforts aimed at stabilizing transit through the Strait of Hormuz, appear to reflect the intention to reduce tension and avoid an escalation that would further jeopardize regional stability and international trade.
However, for **Dr. José Benjamín Pérez Matos**, behind these diplomatic efforts lies a much deeper and more transcendent reality that cannot be understood solely from the perspective of international politics.
Referring to the moment the region is going through, he stated:
**"Now, these days, the United States is still at war with Iran; and the latest thing I heard: it seems they are going to leave it at that, when they should completely exterminate the problem at its root! If they keep dropping a couple of little bombs and then withdraw, later on they will do the same thing. See? These are seemingly temporary peace processes, but evil remains there."**
These words invite us to distinguish between a circumstantial peace and the definitive elimination of the causes that give rise to the conflict. From this perspective, a temporary interruption of military operations does not necessarily constitute the resolution of the problem, but merely a pause within a process that still remains open.
The very evolution of international events confirms the fragility of the current scenario.
While the United States military suspended its airstrikes after 13 consecutive nights of bombings, uncertainty continues to prevail in the international community. The outlook remains open, and the major powers continue to evaluate their next steps in a region whose stability remains decisive for the global geopolitical balance.
In this context, the President of the United States, Donald Trump, has maintained a position that combines diplomatic pressure with the possibility of reaching an understanding with Tehran.
On the one hand, he has issued severe warnings to the Iranian regime; on the other, he has publicly fueled expectations of a negotiation; stating, before the media gathered in the Oval Office:
“We can negotiate with them, which were also doing right now.”
However, the president himself also tempered those expectations by stating that he does not believe Iran is “ready” yet to reach a final agreement.
At the same time, he acknowledged:
“I think theyre getting more and more serious as the days go by, for maybe the obvious reason.”
The statements of the U.S. president reflect a scenario in which military pressure, diplomatic negotiation, and uncertainty over the definitive outcome of the conflict continue to coexist.
## The Prophetic Background of the Crisis
For **Dr. José Benjamín Pérez Matos**, fully understanding what is taking place between Washington and Tehran requires looking beyond a simple journalistic account and analyzing events from a broader perspective.
In this regard, he maintained that it is necessary to observe the geopolitical map through the lens of the biblical prophecies contained in chapter 2 of the book of Daniel.
In that context, he stated:
**“That kingdom of Persia, that kingdom of Iran, must be completely removed, so that only the kingdom of Rome remains; that is, the kingdom of the feet of iron and clay.”**
From this theological perspective, the final world order does not contemplate the coexistence of different geopolitical blocs developing simultaneously as parallel structures of power.
As **Dr. José Benjamín Pérez Matos** explained:
**"There can't also be a kingdom running parallel to that last kingdom of the legs of iron and clay; only that one must remain. Therefore, those remnants that remain of that Persian empire: Iran, must be removed. And that will be a very great sign when it happens. Which will mark a definitive prophetic milestone in these days."**
From this interpretation, current events transcend the strictly political and military realm, to become part of a broader historical process whose development, according to **Dr. José Benjamín Pérez Matos**, forms part of the progressive fulfillment of biblical prophecies.
## High-Pressure Diplomacy at the White House
It is precisely in this scenario of maximum tension that the visit of the Prime Minister of the State of Israel, Benjamin Netanyahu, to the United States takes on particular relevance.
Although the official reason for the trip is to participate in the funeral services of the late Senator Lindsey Graham —described by the Prime Ministers Office as “a friend of Israel”— the scheduled meetings between the highest authorities of both countries will focus on the immediate future of the Middle East and the strategic challenges facing the region.
Referring to these meetings, **Dr. José Benjamín Pérez Matos** stated:
**"Now, we hope that... They have a meeting these days in Washington, or in New York. The Prime Minister of Israel, Benjamin Netanyahu, is going to be there, and they are going to talk about all of that as well."**
The importance of these conversations lies in the fact that Israel has cautiously observed the development of the U.S. attacks, fully aware that this crisis involves control of a strategic maritime route through which approximately twenty percent of the oil traded in the world passes.
Consequently, the reactivation of bilateral contacts between Washington and Jerusalem seeks to align stances against a common enemy and coordinate the next strategic steps in a scenario marked by the ongoing volatility of the Persian Gulf.
## The Race Against the Electoral Clock
In addition to the military and diplomatic components, the time factor appears as one of the most sensitive elements of the current situation.
The proximity of upcoming electoral processes introduces a political variable that could significantly modify the geopolitical scenario.
Domestically in the United States, President Donald Trump has downplayed speculation regarding the potential electoral impact of rising fuel prices.
Before the press, he stated:
“Despite what everyone says about the election, Im not in a hurry… Elections take care of themselves.”
However, **Dr. José Benjamín Pérez Matos** drew attention to another electoral process that, from his perspective, is of even greater importance for the immediate future of the Middle East: the elections scheduled in Israel.
On this point, he said:
**“But look at what is happening in Israel: now there are going to be elections in October. They have to hurry. Because if a prime minister comes along who is not in favor (and aligned with that line of thought) of the religious world, of the Orthodox, and someone else comes along and wins the elections in October, things are going to get difficult for Israel. In other words, they should instead take advantage of the time remaining in his term, just in case there is a surprise in October.”**
These words reflect the importance that **Dr. José Benjamín Pérez Matos** attributes to the Israeli political calendar within the regional context. From this perspective, the time available to consolidate certain strategic decisions is limited and could be conditioned by the outcome of the upcoming elections.
As **Dr. José Benjamín Pérez Matos** himself noted: “The window to consolidate positions of strength is extremely narrow. Political actors must act swiftly in the face of the possibility of an electoral reversal or a surprise at the polls.”
This warning constitutes the natural conclusion of the geopolitical analysis developed throughout this reflection. However, for **Dr. José Benjamín Pérez Matos**, international events cannot be understood solely from the perspective of human decisions, diplomacy, or military strategy.
Above all those factors, there exists a higher purpose whose fulfillment, he states, continues to unfold according to the prophetic program revealed in the Scriptures.
For this reason, he concluded his statement with a reminder:
**“But remember that everything is, and everything will be fulfilled, according to the prophecies. None of this rests in human hands.”**
From the perspective presented by **Dr. José Benjamín Pérez Matos**, the events currently unfolding in the Middle East transcend the international situation and constitute part of a broader historical process. Beyond diplomatic negotiations, military decisions, or political changes that may occur in the various countries involved, the definitive outcome will be determined by the fulfillment of the prophetic purpose which, according to the Scriptures, will lead to the establishment of the final order announced in the book of Daniel.

View File

@ -1,43 +0,0 @@
---
locale: es
title: 'La verdadera naturaleza de las ideas'
date: 2026-06-29
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-29-la-verdadera-naturaleza-de-las-ideas
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# La verdadera naturaleza de las ideas
Las campañas electorales suelen estar cargadas de promesas, consignas y discursos cuidadosamente elaborados para conquistar el voto ciudadano. Sin embargo, una vez finalizada la contienda política, llega el momento en que las ideas abandonan el plano teórico y comienzan a manifestarse en la realidad. Sostengo firmemente que es precisamente en ese momento cuando resulta posible conocer la verdadera naturaleza de una ideología: no por lo que promete, sino por la conducta que inspira en sus dirigentes, en sus militantes y en quienes actúan en su nombre.
Las ideologías no deben ser juzgadas por la belleza de sus discursos, sino por sus resultados concretos.
Desde esta perspectiva, uno de los indicadores más claros consiste en observar cómo reaccionan los distintos sectores políticos cuando pierden el poder o cuando el resultado de una elección les resulta adverso. En diversos países de América Latina —como Chile, Bolivia, Honduras y Ecuador— se advierte un fenómeno que se repite con frecuencia: cuando un gobierno de izquierda es reemplazado por uno de derecha, la respuesta no es la aceptación institucional, sino la agitación, los disturbios y las acciones destinadas a alterar el orden público. En contraste, cuando los resultados electorales favorecen a la izquierda, la normalidad prevalece. La derecha, en su gran mayoría, asume los resultados y respeta el orden sin recurrir a la violencia como instrumento de presión política; los pocos desmanes aislados provienen de individuos torpes o de provocadores infiltrados para generar desestabilización.
Esta profunda diferencia y asimetría moral se manifiesta con total claridad en la seguridad de los líderes durante las contiendas políticas.
Recuerdo perfectamente las duras críticas hacia el presidente de Colombia por asistir a sus mítines rodeado de estrictas medidas de protección y blindajes, utilizándolo para presentarlo como alguien temeroso. Sin embargo, ese dirigente debía proteger su vida porque existían amenazas concretas de muerte en su contra. Por el contrario, el candidato de izquierda caminaba libremente y sin temores. La explicación es de pura lógica: sus seguidores jamás atentarían contra su propio líder, y los sectores de derecha no somos asesinos ni utilizamos la eliminación física del adversario como herramienta de acción política. Es en esa necesidad de protección donde se evidencia de qué lado se encuentra la inclinación hacia el daño y el mal.
No se trata de generalizar de forma absoluta; reconozco que no todos quienes se identifican con la izquierda participan de esas conductas. Muchos ciudadanos apoyan estos movimientos de buena fe, convencidos de que representan un camino hacia una sociedad más justa. Sin embargo, marchan engañados por planteamientos ideológicos que prometen justicia social, pero cuyas consecuencias reales ignoran por completo.
Los espejos de la región son dolorosos, evidentes y no admiten discusión.
Cuba, que en su momento fue una de las islas más prósperas y adelantadas del continente, hoy se hunde en un profundo deterioro económico y social, careciendo incluso de servicios básicos, como el suministro de energía eléctrica.
El mismo libreto de destrucción institucional y económica lo han seguido Nicaragua y Venezuela.
Esta última nación se encuentra hoy en una transición crucial; y mi deseo ferviente es que este proceso culmine plenamente para que el pueblo venezolano rompa sus cadenas, recupere sus instituciones democráticas y vuelva a vivir en absoluta y total libertad.
La historia reciente ofrece ejemplos suficientes para evaluar cada modelo; por ello, reafirmo mi convicción de que la defensa de la libertad, el Estado de Derecho y la convivencia pacífica son los pilares indispensables para construir sociedades verdaderamente prósperas.
**Dr. José Benjamín Pérez Matos**<br>
Presidente<br>

View File

@ -1,114 +0,0 @@
---
locale: es
title: '¿Paz temporal o el inicio de un reordenamiento global en Oriente Medio?'
date: 2026-07-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-07-26-paz-temporal-o-el-inicio-de-un-reordenamiento-global-en-oriente-medio
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# ¿Paz temporal o el inicio de un reordenamiento global en Oriente Medio?
Los acontecimientos de las últimas semanas en Oriente Medio han vuelto a colocar a la región en el centro de la atención internacional. La reciente pausa en los bombardeos estadounidenses sobre territorio iraní, tras casi dos semanas de hostilidades continuas, ha abierto un compás de espera que numerosos analistas presentan como un posible avance hacia una instancia de diplomacia estratégica.
Las conversaciones técnicas desarrolladas en Omán, y los esfuerzos orientados a estabilizar el tránsito por el estrecho de Ormuz, parecen reflejar la intención de reducir la tensión y evitar una escalada que comprometa aún más la estabilidad regional y el comercio internacional.
Sin embargo, para el **Dr. José Benjamín Pérez Matos**, detrás de esos movimientos diplomáticos existe una realidad mucho más profunda y trascendente que no puede ser comprendida únicamente desde la perspectiva de la política internacional.
Al referirse al momento que atraviesa la región, expresó:
**«Ahora, en estos días tiene Estados Unidos esa guerra ahí con Irán todavía; y lo último que escuché: que parece que hasta ahí van a dejarlo, ¡cuando deben exterminar por completo, de raíz, el problema! Si siguen tirando dos bombitas y se retiran, van ellos, más adelante, a hacer lo mismo. ¿Ven? Son procesos aparentemente de paz temporal, pero sigue el mal allí»**.
Estas palabras invitan a distinguir entre una paz circunstancial y la eliminación definitiva de las causas que originan el conflicto. Desde esta perspectiva, una interrupción temporal de las operaciones militares no constituye necesariamente la resolución del problema, sino apenas una pausa dentro de un proceso que todavía permanece abierto.
La propia evolución de los acontecimientos internacionales confirma la fragilidad del escenario actual.
Mientras el ejército de los Estados Unidos suspendió sus ataques aéreos tras trece noches consecutivas de bombardeos, la incertidumbre continúa predominando en la comunidad internacional. El panorama permanece abierto, y las principales potencias siguen evaluando los próximos pasos, en una región cuya estabilidad continúa siendo determinante para el equilibrio geopolítico mundial.
En este contexto, el presidente de los Estados Unidos, Donald Trump, ha mantenido una postura que combina la presión diplomática con la posibilidad de alcanzar un entendimiento con Teherán.
Por un lado, ha formulado severas advertencias al régimen iraní; por el otro, ha alimentado públicamente las expectativas de una negociación; al afirmar, ante los medios reunidos en la Oficina Oval:
«Podemos negociar con ellos, que es lo que también estamos haciendo ahora mismo».
Sin embargo, el propio mandatario también moderó esas expectativas al declarar que no considera que Irán esté “ready (o listo) todavía” para alcanzar un acuerdo definitivo.
Al mismo tiempo, reconoció que:
«Creo que se están poniendo cada vez más serios a medida que pasan los días; quizá por la razón obvia».
Las declaraciones del presidente estadounidense reflejan un escenario en el que continúan coexistiendo la presión militar, la negociación diplomática y la incertidumbre sobre el desenlace definitivo del conflicto.
## El trasfondo profético de la crisis
Para el **Dr. José Benjamín Pérez Matos**, comprender plenamente lo que ocurre entre Washington y Teherán exige levantar la mirada por encima de la simple crónica periodística y analizar los acontecimientos desde una perspectiva más amplia.
En ese sentido sostuvo que resulta necesario observar el mapa geopolítico a través del lente de las profecías bíblicas contenidas en el capítulo 2 del libro de Daniel.
En ese contexto afirmó:
**«Ese reino de Persia, ese reino de Irán, tiene que ser quitado completamente, para que solamente quede el reino de Roma; o sea, el reino de los pies de hierro y barro cocido»**.
Bajo esta perspectiva teológica, el orden mundial final no contempla la coexistencia de distintos bloques geopolíticos desarrollándose simultáneamente como estructuras paralelas de poder.
Como explicó el **Dr. José Benjamín Pérez Matos**:
**«No puede haber un reino también, corriendo paralelo a ese reino último de las piernas de hierro y barro cocido; solamente tiene que quedar ese. Por lo tanto, esos residuos que están quedando de ese imperio de Persia: Irán, tiene que ser quitado. Y eso es una señal muy grande, cuando eso suceda. Lo cual marcará un hito profético definitivo en estos días»**.
Desde esta interpretación, los acontecimientos actuales trascienden el ámbito estrictamente político y militar, para insertarse dentro de un proceso histórico de mayor alcance, cuyo desarrollo, según el **Dr. José Benjamín Pérez Matos**, forma parte del cumplimiento progresivo de las profecías bíblicas.
## Diplomacia de alta presión en la Casa Blanca
Es precisamente en este escenario de máxima tensión donde adquiere una relevancia particular la visita del primer ministro del Estado de Israel, Benjamín Netanyahu, a los Estados Unidos.
Aunque el motivo oficial del viaje es participar de las honras fúnebres del fallecido senador Lindsey Graham —descrito por la Oficina del Primer Ministro como “un amigo de Israel”—, las reuniones previstas entre las máximas autoridades de ambos países tendrán como eje el futuro inmediato de Oriente Medio y los desafíos estratégicos que enfrenta la región.
Al referirse a esos encuentros, el **Dr. José Benjamín Pérez Matos** manifestó:
**«Ahora, esperemos que… tienen una reunión en estos días en Washington, o en Nueva York. El primer ministro de Israel, Benjamín Netanyahu, va a estar allá; y van a hablar sobre todo eso también»**.
La importancia de estas conversaciones radica en que Israel ha observado con cautela el desarrollo de los ataques estadounidenses, plenamente consciente de que en esta crisis se encuentra comprometido el control de una vía marítima estratégica por la que circula aproximadamente el veinte por ciento del petróleo que se comercializa en el mundo.
En consecuencia, la reactivación de los contactos bilaterales entre Washington y Jerusalén busca unificar criterios frente a un enemigo común y coordinar los próximos pasos estratégicos en un escenario marcado por la permanente volatilidad del golfo Pérsico.
## La carrera contra el reloj electoral
Además del componente militar y diplomático, el factor tiempo aparece como uno de los elementos más sensibles de la coyuntura actual.
La proximidad de los próximos procesos electorales introduce una variable política que puede modificar significativamente el escenario geopolítico.
En el plano interno de los Estados Unidos, el presidente Donald Trump ha restado importancia a las especulaciones sobre el eventual impacto electoral del aumento de los precios de los combustibles.
Ante la prensa afirmó:
«A pesar de lo que todo el mundo dice sobre las elecciones, no tengo prisa... Las elecciones se resuelven solas».
Sin embargo, el **Dr. José Benjamín Pérez Matos** llamó la atención sobre otro proceso electoral que, desde su perspectiva, reviste una importancia todavía mayor para el futuro inmediato de Oriente Medio: las elecciones previstas en Israel.
Sobre este punto expresó:
**«Pero miren lo que pasa en Israel: ahora van a haber elecciones, en octubre. Tienen que apurarse. Porque si les cae allí un primer ministro que no esté en favor (y en esa línea de pensamiento) del mundo religioso, de los ortodoxos, y cae otro y gana las elecciones en octubre, se le van a poner las cosas difíciles a Israel. O sea, más bien debe de aprovechar este término que queda, por si acaso pasa una sorpresa ahí en octubre»**.
Estas palabras reflejan la importancia que el **Dr. José Benjamín Pérez Matos** atribuye al calendario político israelí dentro del contexto regional. Desde esta perspectiva, el tiempo disponible para consolidar determinadas decisiones estratégicas resulta limitado y podría verse condicionado por el resultado de los próximos comicios.
Como señaló el propio **Dr. José Benjamín Pérez Matos**:
**«el margen de maniobra para consolidar las posiciones de fuerza es sumamente estrecho. Los actores políticos deben actuar con presteza ante la posibilidad de un vuelco electoral o una sorpresa en las urnas»**.
Esta advertencia constituye el cierre natural del análisis geopolítico desarrollado a lo largo de esta reflexión. Sin embargo, para el **Dr. José Benjamín Pérez Matos**, los acontecimientos internacionales no pueden comprenderse únicamente desde la perspectiva de las decisiones humanas, de la diplomacia o de la estrategia militar.
Por encima de todos esos factores existe un propósito superior cuyo cumplimiento, afirma, continúa desarrollándose conforme al programa profético revelado en las Escrituras.
Por ello concluyó su exposición recordando:
**«Pero recuerden que todo es, y todo se cumplirá, conforme a las profecías. Nada de esto queda en manos humanas»**.
Desde la perspectiva presentada por el **Dr. José Benjamín Pérez Matos**, los acontecimientos que hoy se desarrollan en Oriente Medio trascienden la coyuntura internacional y constituyen parte de un proceso histórico de mayor alcance. Más allá de las negociaciones diplomáticas, de las decisiones militares o de los cambios políticos que puedan producirse en los distintos países involucrados, el desenlace definitivo responderá al cumplimiento del propósito profético que, según las Escrituras, habrá de conducir al establecimiento del orden final anunciado en el libro de Daniel.

View File

@ -1,42 +0,0 @@
---
locale: fr
title: 'La véritable nature des idées'
date: 2026-06-29
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-29-la-veritable-nature-des-idees
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# La véritable nature des idées
Les campagnes électorales sont souvent chargées de promesses, de slogans et de discours soigneusement élaborés pour conquérir le vote des citoyens. Cependant, une fois la lutte politique terminée, vient le moment où les idées quittent le plan théorique et commencent à se manifester dans la réalité. Je soutiens fermement que c'est précisément à ce moment-là qu'il devient possible de connaître la véritable nature d'une idéologie : non pas par ce qu'elle promet, mais par la conduite qu'elle inspire chez ses dirigeants, ses militants et ceux qui agissent en son nom.
Les idéologies ne doivent pas être jugées par la beauté de leurs discours, mais par leurs résultats concrets.
Dans cette perspective, l'un des indicateurs les plus clairs consiste à observer comment réagissent les différents secteurs politiques lorsqu'ils perdent le pouvoir ou lorsque le résultat d'une élection leur est défavorable. Dans divers pays d'Amérique latine —comme le Chili, la Bolivie, le Honduras et l'Équateur— on observe un phénomène qui se répète fréquemment : lorsquun gouvernement de gauche est remplacé par un gouvernement de droite, la réponse n'est pas l'acceptation institutionnelle, mais l'agitation, les troubles et les actions destinées à altérer l'ordre public. En revanche, lorsque les résultats électoraux favorisent la gauche, la normalité prévaut. La droite, dans sa grande majorité, accepte les résultats et respecte l'ordre sans recourir à la violence comme instrument de pression politique ; les rares débordements isolés proviennent d'individus malavisés ou de provocateurs infiltrés pour générer de la déstabilisation.
Cette profonde différence et asymétrie morale se manifeste avec une clarté totale dans la sécurité des dirigeants pendant les campagnes politiques.
Je me souviens parfaitement des vives critiques envers le président de la Colombie pour avoir assisté à ses réunions publiques entouré dun important dispositif de sécurité, l'utilisant pour le présenter comme quelqu'un de craintif. Cependant, ce dirigeant devait protéger sa vie car il existait des menaces concrètes de mort à son encontre. Au contraire, le candidat de gauche marchait librement et sans crainte. L'explication est purement logique : ses partisans n'attaqueraient jamais leur propre leader, et nous, dans les secteurs de droite, ne sommes pas des assassins et n'avons pas recours à l'élimination physique de l'adversaire comme outil d'action politique. C'est dans ce besoin de protection que se révèle de quel côté se trouve l'inclination vers le mal et la violence.
Il ne s'agit pas de généraliser de manière absolue ; je reconnais que tous ceux qui s'identifient à la gauche ne participent pas à ces comportements. Beaucoup de citoyens soutiennent ces mouvements de bonne foi, convaincus qu'ils représentent un chemin vers une société plus juste. Cependant, ils sont guides par des idées trompeuses qui promettent la justice sociale, mais dont ils ignorent complètement les conséquences réelles.
Les exemples de la région son éloquents, douloureux et ne souffrent aucune discussion.
Cuba, qui à l'époque était l'une des îles les plus prospères et avancées du continent, sombre aujourd'hui dans un profond déclin économique et social, manquant même de services de base, comme l'approvisionnement en électricité. Le même scénario de destruction institutionnelle et économique a été suivi par le Nicaragua et le Venezuela.
Cette dernière nation se trouve aujourd'hui dans une transition cruciale ; et mon ardent désir est que ce processus aboutisse pleinement afin que le peuple vénézuélien rompe ses chaînes, récupère ses institutions démocratiques et vive à nouveau en liberté totale.
L'histoire récente offre des exemples suffisants pour évaluer chaque modèle ; c'est pourquoi je réaffirme ma conviction que la défense de la liberté, l'État de droit et la coexistence pacifique sont les piliers indispensables pour construire des sociétés véritablement prospères.
**Dr. José Benjamín Pérez Matos**<br>
Président<br>

View File

@ -1,111 +0,0 @@
---
locale: fr
title: Paix temporaire ou le début d'un réaménagement global au Moyen-Orient ?
date: 2026-07-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-07-26-paix-temporaire-ou-le-debut-dun-reamenagement-global-au-moyen-orient
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# Paix temporaire ou le début d'un réaménagement global au Moyen-Orient ?
Les événements des dernières semaines au Moyen-Orient ont remis la région au centre de l'attention internationale. La récente pause dans les bombardements américains sur le territoire iranien, après près de deux semaines d'hostilités continues, a ouvert une période d'attente que de nombreux analystes présentent comme une possible avancée diplomatique.
Les conversations techniques menées à Oman, et les efforts visant à stabiliser le transit par le détroit d'Ormuz, semblent refléter l'intention de réduire les tensions régionales et d'éviter une escalade qui compromettrait encore plus la stabilité régionale et le commerce international.
Cependant, pour le **Dr. José Benjamín Pérez Matos**, derrière ces mouvements diplomatiques se cache une réalité bien plus profonde et transcendante qui ne peut être comprise uniquement depuis la perspective de la politique internationale.
En se référant au moment que traverse la région, il a exprimé :
**«Maintenant, ces jours-ci, les États-Unis ont encore cette guerre avec l'Iran ; et la dernière chose que j'ai entendue : il semble qu'ils vont s'arrêter là, alors qu'ils devraient éradiquer le problème à la racine, le problème ! S'ils continuent à lancer deux bombes et à se retirer, eux, plus tard, ils vont faire la même chose. Vous voyez ? Ce sont des processus apparemment de paix temporaire, mais le mal démure ».**
Ces mots invitent à distinguer entre une paix circonstancielle et l'élimination définitive les causes à l'origine du conflit. Dans cette perspective, une interruption temporaire des opérations militaires ne constitue pas nécessairement la résolution du problème, mais seulement une pause dans un processus qui reste ouvert.
L'évolution même des événements internationaux confirme la fragilité du scénario actuel.
Alors que larmée américaine a suspendu ses frappes aériennes après treize nuits consécutives de bombardements, l'incertitude continue de prédominer dans la communauté internationale. Le panorama reste ouvert, et les principales puissances continuent d'évaluer les prochaines étapes, dans une région dont la stabilité demeure déterminante pour l'équilibre géopolitique mondial.
Dans ce contexte, le président des États-Unis, Donald Trump, a maintenu une position qui combine la pression diplomatique avec la possibilité d'atteindre un accord avec Téhéran.
D'une part, il a formulé de sévères avertissements au régime iranien ; d'autre part, il a alimenté publiquement les attentes d'une négociation ; en affirmant, devant les médias réunis dans le Bureau ovale :
«Nous pouvons négocier avec eux, ce que nous faisons en ce moment même.»
Cependant, le président lui-même a également tempéré ces attentes en déclarant qu'il ne considère pas que l'Iran soit « prêt » (ready) pour parvenir à un accord définitif.
En même temps, il a reconnu que :
«Je pense qu'ils deviennent de plus en plus sérieux au fil des jours; peut-être pour la raison évidente.»
Les déclarations du président américain reflètent un scénario dans lequel continuent de coexister la pression militaire, la négociation diplomatique et l'incertitude quant à l'issue définitive du conflit.
## Le contexte prophétique de la crise
Pour le **Dr. José Benjamín Pérez Matos**, comprendre pleinement ce qui se passe entre Washington et Téhéran exige d'aller au-delà de la simple chronique journalistique et d'analyser les événements d'une perspective plus large.
En ce sens, il a soutenu qu'il est nécessaire d'observer la carte géopolitique à travers le prisme des prophéties bibliques contenues dans le chapitre 2 du livre de Daniel. Dans ce contexte, il a affirmé :
**«Ce royaume de Perse, ce royaume d'Iran, doit être complètement supprimé, afin qu'il ne reste que le royaume de Rome ; c'est-à-dire, le royaume des pieds de fer et d'argile cuite».**
Dans cette perspective théologique, l'ordre mondial final ne prévoit pas la coexistence de différents blocs géopolitiques se développant simultanément comme des structures parallèles de pouvoir.
Comme l'a expliqué le **Dr. José Benjamín Pérez Matos** :
**«Il ne peut pas y avoir un royaume parallèle à ce dernier royaume des jambes de fer et d'argile cuite ; il ne doit rester que celui-là. Par conséquent, ces résidus qui restent de cet empire de Perse : L'Iran doit être éliminé. Et c'est un très grand signe, quand cela arrivera. Ce qui marquera un jalon prophétique définitif en ces jours».**
Selon cette interprétation, les événements actuels transcendent le domaine strictement politique et militaire, pour s'inscrire dans un processus historique de plus grande envergure, dont le développement, selon le **Dr. José Benjamín Pérez Matos**, fait partie de l'accomplissement progressif des prophéties bibliques.
## Diplomatie de haute pression à la Maison Blanche
C'est précisément dans ce contexte de tension maximale que la visite du Premier ministre de l'État d'Israël, Benjamin Netanyahu, aux États-Unis revêt une importance particulière.
Bien que le motif officiel du voyage soit de participer aux funérailles du sénateur décédé Lindsey Graham —décrit par le Bureau du Premier ministre comme « un ami d'Israël »—, les réunions prévues entre les plus hautes autorités des deux pays auront pour principal sujet l'avenir immédiat du Moyen-Orient et les défis stratégiques auxquels la région est confrontée.
En se référant à ces rencontres, le **Dr. José Benjamín Pérez Matos** a déclaré :
**«Maintenant, espérons que… ils ont une réunion ces jours-ci à Washington, ou à New York. Le Premier ministre israélien, Benyamin Netanyahou, va être là-bas ; et ils vont parler de tout cela aussi».**
L'importance de ces conversations réside dans le fait qu'Israël a observé avec prudence le développement des attaques américaines, pleinement conscient que dans cette crise est engagé le contrôle d'une voie maritime stratégique par laquelle circule environ vingt pour cent du pétrole commercialisé dans le monde.
En conséquence, la réactivation des contacts bilatéraux entre Washington et Jérusalem vise à harmoniser les positions face à un ennemi commun et à coordonner les prochaines étapes stratégiques dans un scénario marqué par la volatilité permanente du golfe Persique.
## La course contre la montre électorale
En plus du composant militaire et diplomatique, le facteur temps apparaît comme l'un des éléments les plus sensibles de la conjoncture actuelle.
La proximité des prochaines élections introduit une variable politique qui peut modifier significativement le paysage géopolitique.
Sur le plan interne des États-Unis, le président Donald Trump a minimisé les spéculations sur l'éventuel impact électoral de l'augmentation des prix des combustibles.
Devant la presse, il a affirmé :
«Malgré ce que tout le monde dit sur les élections, je ne suis pas pressé… Les élections se résolvent d'elles-mêmes.
Cependant, le **Dr. José Benjamín Pérez Matos** a attiré l'attention sur un autre processus électoral qui, de son point de vue, revêt une importance encore plus grande pour l'avenir immédiat du Moyen-Orient : les élections prévues en Israël.
À ce sujet, il a exprimé :
**«Mais regardez ce qui se passe en Israël : il va y avoir des élections, en octobre. Ils doivent se dépêcher. Parce que si un premier ministre qui ne soit pas favorable (et dans cette ligne de pensée) au monde religieux, des orthodoxes, arrive là-bas, et qu'un autre arrive au pouvoir et gagne les élections en octobre, les choses vont devenir difficiles pour Israël. C'est-à-dire, il doit plutôt profiter du temps restant, au cas où une surprise se produirait en octobre».**
Ces mots reflètent l'importance que le **Dr. José Benjamín Pérez Matos** attribue au calendrier politique israélien dans le contexte régional. Dans cette perspective, le temps disponible pour consolider certaines décisions stratégiques est limité et pourrait être conditionné par le résultat des prochaines élections.
Comme l'a souligné le **Dr. José Benjamín Pérez Matos** lui-même : « la marge de manœuvre pour consolider les positions de force est extrêmement étroite. » Les acteurs politiques doivent agir avec promptitude face à la possibilité d'un retournement électoral ou d'une surprise dans les urnes.
Cet avertissement constitue la conclusion naturelle de l'analyse géopolitique développée tout au long de cette réflexion. Cependant, pour le **Dr. José Benjamín Pérez Matos**, les événements internationaux ne peuvent pas être compris uniquement sous langle des décisions humaines, de la diplomatie ou de la stratégie militaire.
Au-delà de tous ces facteurs, il existe un dessein supérieur dont l'accomplissement, affirme-t-il, continue de saccomplir conformément au programme prophétique révélé dans les Écritures.
C'est pourquoi il a conclu son exposé en rappelant :
**«Mais rappelez-vous que tout est, et tout s'accomplira, conformément aux prophéties. Rien de tout cela ne reste entre les mains des hommes».**
Selon la perspective présentée par le **Dr. José Benjamín Pérez Matos**, les événements qui se déroulent aujourd'hui au Moyen-Orient transcendent la conjoncture internationale et constituent une part d'un processus historique de plus grande envergure. Au-delà des négociations diplomatiques, des décisions militaires ou des changements politiques qui peuvent se produire dans les différents pays impliqués, le dénouement définitif sera déterminé par l'accomplissement du dessein prophétique qui, selon les Écritures, conduira à l'établissement de l'ordre final annoncé dans le livre de Daniel.

View File

@ -1,41 +0,0 @@
---
locale: pt
title: 'A verdadeira natureza das ideias'
date: 2026-06-29
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-29-a-verdadeira-natureza-das-ideias
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# A verdadeira natureza das ideias
As campanhas eleitorais costumam estar carregadas de promessas, slogans e discursos cuidadosamente elaborados para conquistar o voto do cidadão. No entanto, uma vez encerrada a disputa política, chega o momento em que as ideias deixam o plano teórico e começam a se manifestar na realidade. Sustento firmemente que é exatamente nesse momento que se torna possível conhecer a verdadeira natureza de uma ideologia: não pelo que promete, mas pela conduta que desperta em seus dirigentes, em seus militantes e naqueles que atuam em seu nome.
As ideologias não devem ser julgadas pela beleza de seus discursos, e sim por seus resultados concretos.
Sob essa perspectiva, um dos indicadores mais claros consiste em observar como os diferentes setores políticos reagem quando perdem o poder ou quando o resultado de uma eleição lhes é desfavorável. Em diversos países da América Latina — como Chile, Bolívia, Honduras e Equador — observa-se um fenômeno que se repete com frequência: quando um governo de esquerda é substituído por um de direita, a resposta não é a aceitação institucional, e sim a agitação, os distúrbios e as ações destinadas a alterar a ordem pública. Em contrapartida, quando os resultados eleitorais favorecem a esquerda, a normalidade prevalece. A direita, em sua grande maioria, aceita os resultados e respeita a ordem sem recorrer à violência como instrumento de pressão política; os poucos distúrbios isolados provêm de indivíduos imprudentes ou de provocadores infiltrados com o objetivo de gerar desestabilização.
Essa profunda diferença e assimetria moral se manifesta com total clareza na segurança dos líderes durante as disputas políticas.
Recordo perfeitamente as duras críticas dirigidas ao presidente da Colômbia por comparecer a seus comícios cercado de rigorosas medidas de proteção e blindagem, utilizando isso para apresentá-lo como alguém medroso. No entanto, esse dirigente precisava proteger sua vida porque havia ameaças concretas de morte contra ele. Em contrapartida, o candidato de esquerda caminhava livremente e sem receios. A explicação é pura lógica: seus seguidores jamais atentariam contra seu próprio líder, e nós, dos setores da direita, não somos assassinos nem utilizamos a eliminação física do adversário como ferramenta de ação política. É nessa necessidade de proteção que se evidencia em que lado se encontra a inclinação para o dano e para o mal.
Não se trata de generalizar de forma absoluta; reconheço que nem todos os que se identificam com a esquerda participam dessas condutas. Muitos cidadãos apoiam esses movimentos de boa-fé, convencidos de que representam um caminho para uma sociedade mais justa. Contudo, marcham enganados por propostas ideológicas que prometem justiça social, mas ignoram por completo quais são suas consequências reais.
Os exemplos que a nossa região nos apresenta são dolorosos, evidentes e não deixam margem para discussão.
Cuba, que em seu tempo foi uma das ilhas mais prósperas e avançadas do continente, hoje afunda em uma profunda deterioração econômica e social, carecendo, inclusive, de serviços básicos, como o fornecimento de energia elétrica. O mesmo roteiro de destruição institucional e econômica foi seguido pela Nicarágua e pela Venezuela.
Esta última nação se encontra hoje em uma transição crucial, e meu desejo ardente é que esse processo se complete plenamente para que o povo venezuelano rompa suas correntes, recupere suas instituições democráticas e volte a viver em absoluta e total liberdade.
A história recente oferece exemplos suficientes para avaliar cada modelo; por isso, reafirmo minha convicção de que a defesa da liberdade, do Estado de Direito e da convivência pacífica são pilares indispensáveis para construir sociedades verdadeiramente prósperas.
**Dr. José Benjamín Pérez Matos**<br>
Presidente<br>

View File

@ -1,113 +0,0 @@
---
locale: pt
title: 'Paz temporária ou o início de uma reconfiguração global no Oriente Médio?'
date: 2026-07-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-07-26-paz-temporaria-ou-o-inicio-de-uma-reconfiguracao-global-no-oriente-medio
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# Paz temporária ou o início de uma reconfiguração global no Oriente Médio?
Os acontecimentos das últimas semanas no Oriente Médio voltaram a colocar a região no centro da atenção internacional. A recente pausa nos bombardeios dos Estados Unidos sobre o território iraniano, após quase duas semanas de hostilidades contínuas, abriu um compasso de espera que muitos analistas apresentam como um possível avanço rumo a uma etapa de diplomacia estratégica.
As conversas técnicas realizadas em Omã e os esforços voltados para estabilizar o trânsito pelo Estreito de Ormuz parecem refletir a intenção de reduzir a tensão e evitar uma escalada que comprometa ainda mais a estabilidade regional e o comércio internacional.
No entanto, para o **Dr. José Benjamín Pérez Matos**, por trás desses movimentos diplomáticos existe uma realidade muito mais profunda e transcendente, que não pode ser compreendida apenas sob a perspectiva da política internacional.
Ao referir-se ao momento vivido pela região, expressou:
**«Agora, nestes dias, os Estados Unidos ainda têm essa guerra aí com o Irã; e a última coisa que ouvi: que parece que vão parar por aí, quando deveriam exterminar por completo, pela raiz, o problema! Se continuarem lançando duas bombinhas e recuarem, eles vão, mais adiante, fazer o mesmo. Veem? São processos aparentemente de paz temporária, mas o mal continua lá»**.
Essas palavras convidam a distinguir entre uma paz circunstancial e a eliminação definitiva das causas que dão origem ao conflito. Sob essa perspectiva, uma interrupção temporária das operações militares não constitui necessariamente a resolução do problema, mas apenas uma pausa dentro de um processo que ainda permanece em aberto.
A própria evolução dos acontecimentos internacionais confirma a fragilidade do cenário atual.
Enquanto o Exército dos Estados Unidos suspendeu seus ataques aéreos após treze noites consecutivas de bombardeios, a incerteza continua predominando na comunidade internacional. O cenário permanece em aberto, e as principais potências seguem avaliando os próximos passos em uma região cuja estabilidade continua sendo determinante para o equilíbrio geopolítico mundial.
Nesse contexto, o presidente dos Estados Unidos, Donald Trump, tem mantido uma postura que combina a pressão diplomática com a possibilidade de alcançar um entendimento com Teerã.
Por um lado, fez severas advertências ao regime iraniano; por outro, alimentou publicamente as expectativas de uma negociação ao afirmar, diante da imprensa reunida no Salão Oval:
«Podemos negociar com eles, o que também estamos fazendo neste momento».
No entanto, o próprio mandatário também moderou essas expectativas ao declarar que não considera que o Irã ainda esteja “ready (ou pronto)” para alcançar um acordo definitivo.
Ao mesmo tempo, reconheceu:
«Acho que eles estão ficando cada vez mais sérios com o passar dos dias, talvez por uma razão óbvia».
As declarações do presidente norte-americano refletem um cenário em que continuam coexistindo a pressão militar, a negociação diplomática e a incerteza quanto ao desfecho definitivo do conflito.
## O pano de fundo profético da crise
Para o **Dr. José Benjamín Pérez Matos**, compreender plenamente o que ocorre entre Washington e Teerã exige elevar o olhar acima da simples cobertura jornalística e analisar os acontecimentos sob uma perspectiva mais ampla.
Nesse sentido, sustentou que é necessário observar o mapa geopolítico por meio da lente das profecias bíblicas contidas no capítulo 2 do livro de Daniel. Nesse contexto, afirmou:
**«Esse reino da Pérsia, esse reino do Irã, tem que ser removido completamente, para que permaneça somente o reino de Roma; ou seja, o reino dos pés de ferro e barro cozido»**.
Sob essa perspectiva teológica, a ordem mundial final não contempla a coexistência de diferentes blocos geopolíticos que se desenvolvam simultaneamente como estruturas paralelas de poder.
Como explicou o **Dr. José Benjamín Pérez Matos**:
**«Não pode haver também um reino correndo em paralelo com esse último reino das pernas de ferro e barro cozido; somente esse tem que permanecer. Portanto, esses resíduos que estão ficando desse império da Pérsia: Irã, têm que ser removidos. E isso é um sinal muito grande, quando isso acontecer. Será um marco profético definitivo nestes dias».**
A partir dessa interpretação, os acontecimentos atuais transcendem o âmbito estritamente político e militar para inserir-se em um processo histórico de maior alcance, cujo desenvolvimento, segundo o **Dr. José Benjamín Pérez Matos**, faz parte do cumprimento progressivo das profecias bíblicas.
## Diplomacia de alta pressão na Casa Branca
É precisamente nesse cenário de máxima tensão que a visita do primeiro-ministro do Estado de Israel, Benjamin Netanyahu, aos Estados Unidos adquire especial relevância.
Embora o motivo oficial da viagem seja participar das homenagens fúnebres ao falecido senador Lindsey Graham — descrito pelo Gabinete do Primeiro-Ministro como “um amigo de Israel” —, as reuniões previstas entre as mais altas autoridades de ambos os países terão como eixo o futuro imediato do Oriente Médio e os desafios estratégicos enfrentados pela região.
Ao referir-se a esses encontros, o **Dr. José Benjamín Pérez Matos** declarou:
**«Agora, esperemos que... eles têm uma reunião nestes dias em Washington, ou em Nova York. O primeiro-ministro de Israel, Benjamin Netanyahu, vai estar lá; e também vão falar sobre tudo isso».**
A importância dessas conversas reside no fato de que Israel tem acompanhado com cautela o desenvolvimento dos ataques norte-americanos, plenamente consciente de que, nessa crise, está em jogo o controle de uma via marítima estratégica pela qual transita aproximadamente vinte por cento do petróleo comercializado no mundo.
Consequentemente, a retomada dos contatos bilaterais entre Washington e Jerusalém busca unificar critérios diante de um inimigo comum e coordenar os próximos passos estratégicos em um cenário marcado pela permanente volatilidade do golfo Pérsico.
## A corrida contra o relógio eleitoral
Além do componente militar e diplomático, o fator tempo aparece como um dos elementos mais sensíveis da conjuntura atual.
A proximidade dos próximos processos eleitorais introduz uma variável política que pode modificar significativamente o cenário geopolítico.
No plano interno dos Estados Unidos, o presidente Donald Trump minimizou as especulações sobre o eventual impacto eleitoral do aumento dos preços dos combustíveis.
Diante da imprensa, afirmou:
«Apesar do que todos dizem sobre a eleição, não tenho pressa... As eleições se resolvem por si mesmas».
No entanto, o **Dr. José Benjamín Pérez Matos** chamou a atenção para outro processo eleitoral que, sob sua perspectiva, reveste-se de importância ainda maior para o futuro imediato do Oriente Médio: as eleições previstas em Israel.
Sobre esse ponto, expressou:
**«Mas vejam o que acontece em Israel: agora vai haver eleições, em outubro. Eles têm que se apressar. Porque, se cair ali um primeiro-ministro que não esteja a favor (e nessa linha de pensamento) do mundo religioso, dos ortodoxos, e cair outro e ganhar as eleições em outubro, as coisas vão se tornar difíceis para Israel. Ou seja, é melhor aproveitar este período que ainda resta, caso aconteça alguma surpresa ali em outubro»**.
Essas palavras refletem a importância que o **Dr. José Benjamín Pérez Matos** atribui ao calendário político israelense dentro do contexto regional. Sob essa perspectiva, o tempo disponível para consolidar determinadas decisões estratégicas é limitado e poderá ser condicionado pelo resultado das próximas eleições.
Como apontou o próprio **Dr. José Benjamín Pérez Matos**:
**«A margem de manobra para consolidar as posições de força é extremamente estreita. Os atores políticos devem agir com rapidez diante da possibilidade de uma reviravolta eleitoral ou de uma surpresa nas urnas».**
Essa advertência constitui o encerramento natural da análise geopolítica desenvolvida ao longo desta reflexão. No entanto, para o **Dr. José Benjamín Pérez Matos**, os acontecimentos internacionais não podem ser compreendidos apenas sob a perspectiva das decisões humanas, da diplomacia ou da estratégia militar.
Acima de todos esses fatores existe um propósito superior, cujo cumprimento, afirma, continua desenvolvendo-se conforme o programa profético revelado nas Escrituras.
Por isso, concluiu sua exposição recordando:
**«Mas recordem que tudo é, e tudo se cumprirá, conforme as profecias. Nada disso fica nas mãos humanas».**
Sob a perspectiva apresentada pelo **Dr. José Benjamín Pérez Matos**, os acontecimentos que hoje se desenvolvem no Oriente Médio transcendem a conjuntura internacional e constituem parte de um processo histórico de maior alcance. Para além das negociações diplomáticas, das decisões militares ou das mudanças políticas que possam ocorrer nos diferentes países envolvidos, o desfecho definitivo corresponderá ao cumprimento do propósito profético que, segundo as Escrituras, conduzirá ao estabelecimento da ordem final anunciada no livro de Daniel.

View File

@ -1,111 +0,0 @@
---
locale: rw
title: Amahoro y'igihe gito cyangwa intangiriro yo kongera gutunganya gahunda y'Isi mu Burasirazuba bwo Hagati?
date: 2026-07-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-07-26-amahoro-y-igihe-gito-cyangwa-intangiriro-yo-kongera-gutunganya-gahunda-y-isi-mu-burasirazuba-bwo-hagati
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/comunicado-1.webp'
# tags: [Comunicado, Venezuela, Estados Unidos]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/comunicado-1.webp',
},
]
---
# Amahoro y'igihe gito cyangwa intangiriro yo kongera gutunganya gahunda y'Isi mu Burasirazuba bwo Hagati?
Mu byumweru bishize, ibyabaye mu Burasirazuba bwo Hagati byongeye gushyira ako karere mu rwego rw'ibiri kwitabwaho cyane ku rwego mpuzamahanga. Guhagarara by'agateganyo kw'ibitero bya Leta Zunze Ubumwe za Amerika ku butaka bwa Irani, nyuma y'ibyumweru hafi bibiri by'imirwano idahagarara, byafunguye igihe cyo gutegereza, aho abasesenguzi benshi babibona nk'intambwe ishobora kuganisha ku rwego rw'ububanyi n'amahanga bushingiye ku ngamba z'igihe kirekire.
Ibiganiro bya tekiniki byabereye muri Oman, hamwe n'imbaraga zigamije gushimangira umutekano w'ubwikorezi bunyura mu muhora wa Ormuz, bigaragara ko bigamije kugabanya umwuka mubi no kwirinda ko amakimbirane yarushaho gukaza umurego, ibintu byarushaho guhungabanya umutekano w'akarere ndetse n'ubucuruzi mpuzamahanga.
Ariko, kuri **Dr. José Benjamín Pérez Matos**, inyuma y'izo ngamba z'ububanyi n'amahanga hari ukuri kwimbitse kandi kw'ingirakamaro kurushaho, kudashobora gusobanurwa gusa hashingiwe ku miterere ya politiki mpuzamahanga.
Agaruka ku bihe ako karere karimo kunyuramo, yagize ati:
**«None rero, muri iyi minsi Leta Zunze Ubumwe za Amerika iracyafite iyo ntambara na Irani; kandi icyo numvise bwa nyuma ni uko bigaragara ko bazabihagararaho. Nyamara bagombaga kurandura burundu icyo kibazo, bagihereye mu mizi! Nibakomeza kujugunya ibisasu bibiri gusa hanyuma bakikuramo, nyuma bazongera gukora nk'ibyo. Murabona? Bigaragara nk'ibikorwa by'amahoro y'igihe gito, ariko ikibi kiracyariho.»**
Aya magambo aduhamagarira gutandukanya amahoro y'igihe gito n'ikorwa ryo gukuraho burundu impamvu zitera amakimbirane. Dukurikije iyo myumvire, guhagarika ibikorwa bya gisirikare by'agateganyo ntibivuze byanze bikunze ko ikibazo cyakemutse, ahubwo ni ikiruhuko cy'igihe gito mu nzira y'ibikorwa bitararangira.
Imigendekere ubwayo y'ibyabaye ku rwego mpuzamahanga yemeza uburyo uko ibintu bimeze ubu bidafite gihamya yo kuramba.
Mu gihe ingabo za Leta Zunze Ubumwe za Amerika zahagaritse ibitero byazo byo mu kirere nyuma y'amajoro cumi n'atatu akurikirana y'ibisasu, ugushidikanya gukomeje kwiganje mu muryango mpuzamahanga. Imiterere y'ibintu iracyafunguye, kandi ibihugu bikomeye bikomeje gusuzuma intambwe zikurikira, mu karere umutekano wako ugikomeje kugira uruhare rukomeye mu kuringaniza imbaraga za politiki y'Isi.
Muri uru rwego, Perezida wa Leta Zunze Ubumwe za Amerika, Donald Trump, yakomeje gufata umwanya uhuza igitutu cya dipolomasi n'icyizere cyo kugera ku bwumvikane na Tehran.
Ku ruhande rumwe, yatanze imiburo ikomeye ku butegetsi bwa Irani; ku rundi ruhande, yeruye yagaragaje icyizere cy'uko hashobora kubaho ibiganiro, ubwo yabwiraga itangazamakuru ryari ryateraniye mu Biro bya Oval ati:
«Dushobora kugirana ibiganiro na bo, kandi ni na byo turimo gukora muri aka kanya.»
Ariko kandi, uwo muyobozi ubwe yagabanyije icyo cyizere avuga ko atabona ko Irani “yiteguye” kugeza ubu kugera ku masezerano ya nyuma.
Muri icyo gihe kandi, yemeye ko:
«Ntekereza ko bagenda barushaho gukomera ku cyemezo uko iminsi igenda ishira; wenda kubera impamvu igaragara.»
Amagambo ya Perezida wa Leta Zunze Ubumwe za Amerika agaragaza imiterere y'ibintu aho igitutu cya gisirikare, ibiganiro bya dipolomasi, ndetse no kudasobanuka ku iherezo ry'amakimbirane bikomeje kubana hamwe.
Imvano y'ubuhanuzi y'ikibazo
Kuri **Dr. José Benjamín Pérez Matos**, gusobanukirwa neza ibiri kuba hagati ya Washington na Tehran bisaba kureba birenze amakuru asanzwe atangwa n'itangazamakuru, ahubwo hakigwa ibyabaye hifashishijwe imyumvire yagutse kurushaho.
Muri ubwo buryo, yavuze ko ari ngombwa kureba ikarita ya geopolitiki binyuze mu ndorerwamo y'ubuhanuzi bwa Bibiliya buboneka mu gice cya 2 cy'igitabo cya Daniyeli. Muri urwo rwego yagize ati:
**«Uwo bwami bw'u Buperesi, ubwo bwami bwa Irani, bugomba gukurwaho burundu, kugira ngo hasigare gusa ubwami bw'i Roma; ni ukuvuga ubwami bw'amaguru y'icyuma n'ibumba ryokeje.»**
Muri iyi myumvire ishingiye ku by'iyobokamana, gahunda y'Isi ya nyuma ntiteganya ko habaho ibice bitandukanye bya geopolitiki bizakomeza kubaho icyarimwe nk'imyubakire y'imbaraga zigereranywa.
Nk'uko **Dr. José Benjamín Pérez Matos** yabisobanuye:
**«Nta bundi bwami bushobora kubaho kandi ngo bugendere hamwe n'ubwo bwami bwa nyuma bw'amaguru y'icyuma n'ibumba ryokeje; bugomba gusigara ari bwo bwonyine. Ni yo mpamvu ibisigazwa bisigaye by'ubwo bwami bw'u Buperesi: Irani, bigomba gukurwaho. Kandi ibyo ni ikimenyetso gikomeye cyane, igihe ibyo bizaba bibaye. Ibyo bizashyiraho ikimenyetso gikomeye cya nyuma mu buhanuzi muri iyi minsi.»**
Dukurikije ubu busobanuro, ibyabaye muri iki gihe birenze urwego rwa politiki n'igisirikare gusa, ahubwo biri mu murongo w'amateka manini kurushaho, aho, nk'uko **Dr. José Benjamín Pérez Matos** abivuga, iterambere ryabyo rigize igice cyo gusohora buhoro buhoro k'ubuhanuzi bwa Bibiliya.
## Dipolomasi y'igitutu gikomeye muri White House
Ni muri uru rwego rw'ubushyamirane bukabije ni ho uruzinduko rwa Minisitiri w'Intebe wa Leta ya Isirayeli, Benjamín Netanyahu, muri Leta Zunze Ubumwe za Amerika ruboneramo umwanya wihariye.
Nubwo impamvu yatangajwe ku mugaragaro y'urwo rugendo ari ukwitabira umuhango wo gushyingura no gusezera kuri senateri witabye Imana Lindsey Graham — wasobanuwe n'Ibiro bya Minisitiri w'Intebe nk “inshuti ya Isirayeli” — ibiganiro biteganyijwe hagati y'abayobozi bakuru b'ibihugu byombi bizibanda ku hazaza hihuse h'Uburasirazuba bwo Hagati ndetse n'ibibazo by'ingamba akarere gahura na byo.
Agaruka kuri ibyo biganiro, **Dr. José Benjamín Pérez Matos** yagize ati:
**«Noneho, reka dutegereze ko… muri iyi minsi hari inama izabera i Washington cyangwa i New York. Minisitiri wIntebe wa Isirayeli, Benjamín Netanyahu, azaba ahari; kandi bazaganira kuri ibyo byose na byo.»**
Iby'ingenzi muri ibi biganiro ni uko Isirayeli yakurikiranye yitonze uko ibitero bya Leta Zunze Ubumwe za Amerika byagenze, izi neza ko muri iki kibazo harimo kugenzura inzira y'ingenzi y'ubwikorezi bwo mu nyanja inyuramo hafi makumyabiri ku ijana bya peteroli icuruzwa ku isi.
Kubera iyo mpamvu, kongera gutangiza ibiganiro hagati ya Washington na Yerusalemu bigamije guhuza imyumvire ku birebana n'umwanzi bahuriyeho, no guhuza ingamba zizakurikiraho mu rwego rw'ubutabazi n'umutekano, mu bihe birangwa n'ihindagurika ridahoraho mu Karere k'Ikigobe cy'u Buperesi.
## Irushanwa ryo guhangana n'igihe mbere y'amatora.
Uretse ibijyanye n'igisirikare n'ububanyi n'amahanga, ikintu cy'igihe na cyo kigaragara nk'imwe mu ngingo zikomeye kandi zifite uburemere muri ibi bihe.
Kuba amatora ateganyijwe yegereje byinjiza indi ngingo ya politiki ishobora guhindura ku buryo bugaragara imiterere y'ibibera mu rwego rwa geopolitiki.
Muri Leta Zunze Ubumwe za Amerika, Perezida Donald Trump yagaragaje ko adaha agaciro ibitekerezo bivuga ko izamuka ry'ibiciro by'ibikomoka kuri peteroli rishobora kugira ingaruka ku matora ari imbere.
Imbere y'itangazamakuru, yagize ati:
"N'ubwo abantu bose bavuga iby'amatora, ntabwo nihuta... Amatora azikemurira ubwayo."
Nyamara, **Dr. José Benjamín Pérez Matos** yagaragaje ko hari indi gahunda y'amatora, nk'uko abibona, ifite akamaro karenze ako ku hazaza ha vuba h'Uburasirazuba bwo Hagati: amatora ateganyijwe muri Isirayeli.
Kuri iyo ngingo yagize ati:
**"Ariko nimurebe ibibera muri Isirayeli: ubu hagiye kuba amatora mu kwezi k'Ukwakira. Bagomba kwihutira gukora ibyo bagomba gukora. Kuko nihaza Minisitiri w'Intebe udashyigikiye (cyangwa udakurikiza uwo murongo w'ibitekerezo) w'itsinda ry'amadini n'Abayahudi b'aba-Orutodogisi, maze hakaza undi agatsinda ayo matora yo mu Ukwakira, ibintu bizakomera kuri Isirayeli. Ni ukuvuga ko bakwiriye kubyaza umusaruro iki gihe gisigaye cya manda, mu gihe haba havutse impinduka itunguranye muri ayo matora yo mu Ukwakira.”**
Aya magambo agaragaza akamaro **Dr. José Benjamín Pérez Matos** aha ingengabihe ya politiki ya Isirayeli mu rwego rw'ibibera mu karere. Dukurikije uko abibona, igihe gisigaye cyo gushimangira imyanzuro imwe n'imwe y'ingenzi mu rwego rw'ingamba ni gito cyane, kandi gishobora guterwa impinduka n'ibizava mu matora ateganyijwe.
Nk'uko **Dr. José Benjamín Pérez Matos** ubwe yabivuze:
"Igihe gisigaye cyo gushimangira imyanya y'imbaraga ni gito cyane. Abanyapolitiki bagomba gukora bihuse, bitewe n'uko hashobora kubaho ihinduka ritunguranye ry'ibyavuye mu matora cyangwa igitunguranye mu matora.”
Uyu muburo ni wo usoza mu buryo busanzwe isesengura rya geopolitiki ryatanzwe muri iki gitekerezo. Nyamara, kuri **Dr. José Benjamín Pérez Matos**, ibyabaye n'ibirimo kuba ku rwego mpuzamahanga ntibishobora gusobanurwa gusa hashingiwe ku byemezo by'abantu, ububanyi n'amahanga cyangwa ingamba za gisirikare.
Hejuru y'izo ngingo zose, avuga ko hari umugambi urenze byose, ukomeje gusohora nk'uko gahunda y'ubuhanuzi yahishuwe mu Byanditswe Byera ibiteganya.
Ni yo mpamvu yasoreje inyigisho ye yibutsa ati:
**"Ariko mwibuke ko ibintu byose ari, kandi byose bizasohora nk'uko ubuhanuzi buri. Nta na kimwe muri ibi kiri mu maboko y'abantu.”**
Dukurikije imyumvire yatanzwe na **Dr. José Benjamín Pérez Matos**, ibibera muri iki gihe mu Burasirazuba bwo Hagati birenze ibibazo by'igihe gito byo ku rwego mpuzamahanga, ahubwo biri mu bigize inzira y'amateka ifite urugero runini kurushaho. Uretse ibiganiro by'ububanyi n'amahanga, ibyemezo bya gisirikare cyangwa impinduka za politiki zishobora kubaho mu bihugu bitandukanye birebwa n'ibi bibazo, iherezo rizasubiza ku isohozwa ry'umugambi w'ubuhanuzi, nk'uko avuga ko Ibyanditswe bibigaragaza, uzageza ku gushyirwaho k'ubutegetsi bwa nyuma bwatangajwe mu gitabo cya Daniyeli.

View File

@ -2,11 +2,10 @@
locale: en
title: 'A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos'
slug: a-new-son-for-jacarei-the-tribute-to-dr-jose-benjamin-perez-matos
date: 2025-08-29
date: 2025-09-05
place: The basement
city: Jacareí
country: BR
tags: [Brazil]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2025-09-04-19.53.04.jpg?updatedAt=1770780193361
gallery: [
{
@ -15,10 +14,6 @@ gallery: [
]
---
# A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos
*Jacareí, Brazil August 29, 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.
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**
A few meters away, the second act awaited. The Municipal Chamber 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.”
@ -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.”
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
title: 'Awarding of decoration: Order of Democracy Simón Bolívar'
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á
country: CO
tags: ['Colombia', 'Decoration']
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/JBP-CONDECORACION-25.webp?updatedAt=1770780239998
gallery: [
{
@ -26,14 +25,14 @@ gallery: [
]
---
# Awarding of decoration: Order of Democracy Simón Bolívar
**Thursday, May 8, 2025
Bogotá, Colombia**
(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.]

View File

@ -1,42 +0,0 @@
---
locale: es
title: 'Signs of a Global Transformation: Warnings About Israel and the Climate in the Middle East'
date: 2023-07-27
slug: 2023-07-27-signs-of-a-global-transformation-warnings-about-israel-and-the-climate-in-the-middle-east
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/Lake-Urmia_NASA.-2.webp'
tags: [Iran, 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',
},
]
---
# Signs of a Global Transformation: Warnings About Israel and the Climate in the Middle East
*Cayey, Puerto Rico July 27, 2023*
As part of an in-depth analysis of the current international situation, Dr. José Benjamín Pérez Matos discussed a series of events that, in his view, reflect a large-scale transformation in the history of mankind. His statements focused both on the internal situation in Israel and on the extreme weather events affecting the Middle East, drawing a connection between the two as signs of a larger process currently underway.
Dr. Pérez Matos pointed out that these changes should not be viewed as isolated events, but rather as part of a phase that is beginning gradually, and is destined to evolve into situations of even greater magnitude.
As for Israel, the analysis highlighted the level of social instability the country is currently experiencing, marked by protests and internal tensions that, according to the statements, are unprecedented in recent times:
**“Israel, on the other hand, look at all the things that are happening there in Israel, all those protests and everything, which have never happened there in Israel in recent times.”**
The assessment also included a direct reference to the climate crisis, particularly to the extreme temperatures recorded in Iran, which were interpreted as a warning of even more severe conditions in the future:
**“The sun as well, in Iran, they are saying it has already reached a certain temperature: 150 °F (I think it is), which is about the limit a human being can endure, something like that; the heat is already reaching those levels. But remember that the Scripture says that the sun will give off, will become about seven times hotter. So, imagine, if the sun is like that now, what will it be like in the time of tribulation?! What will come upon the human race is something terrible.”**
These statements offer a holistic assessment of the present, in which political, social, and environmental events are interconnected under a single interpretive framework. In this regard, Dr. Pérez Matos emphasizes the need to monitor these processes carefully, recognizing that they are part of a broader structural shift that will affect all of mankind.

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/photo_2026-05-08_12-15-10.jpg'
tags: [Israel, Puerto Rico, Bolivia, Chile, Colombia]
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',
},
]
---
# 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, Iran]
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,34 +0,0 @@
---
locale: en
title: 'Message to Israel in Decisive Times: Support, and a Call to Wisdom'
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',
},
]
---
# Message to Israel in Decisive Times: Support, and a Call to Wisdom
*Cayey, Puerto Rico april 15, 2024*
In an international context marked by growing tensions in the Middle East, **Dr. José Benjamín Pérez Matos** issued a message of support and blessing addressed to the people of Israel, highlighting the importance of decision-making at what he described as a key moment for the future of the region.
From Cayey, Puerto Rico, **Dr. José Benjamín Pérez Matos** addressed both the leaders and the Hebrew people, emphasizing the need to act with wisdom and responsibility in a highly complex environment:
**“May God bless Israel, may God bless the Hebrew people, and may they make the right decisions.”**
The message not only conveyed support, but also a perspective of hope connected to future events. In that regard, **Dr. José Benjamín Pérez Matos** expressed his desire that the people of Israel may receive with clarity and without delay that which, according to his vision, is drawing near:
**“May God place in their hearts that which they will soon receive.”**
These statements are part of a consistent message of support, in which faith and the spiritual dimension are presented as central elements of unity and guidance. Within this framework, the community that follows **Dr. José Benjamín Pérez Matos** reaffirms its support for Israel, emphasizing the role of prayer and conviction as factors that transcend borders.
The message issued from Puerto Rico thus joins a series of public statements underscoring the significance of the present moment, reinforcing a clear position of support and close attention to the development of events on the international stage.

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,34 +0,0 @@
---
locale: en
title: 'International Call for Israel and Venezuela: Faith, Freedom, and Warnings of a Global Shift'
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',
},
]
---
# International Call for Israel and Venezuela: Faith, Freedom, and Warnings of a Global Shift
*Cayey, Puerto Rico August 3, 2024*
In a global context marked by ongoing sociopolitical conflicts, **Dr. José Benjamín Pérez Matos** issued a statement linking the spiritual dimension with the current geopolitical reality, calling for prayer for two nations in crisis: Israel and Venezuela.
The message, marked by a sense of urgency, emphasized the need to restore order and stability in key regions, highlighting the impact these developments have on fundamental rights and the well-being of their populations:
**“May God bless Israel, may God also bless Venezuela, which are the countries currently going through difficult situations; and the other countries as well, because one way or another the kingdoms of this world will soon become the Kingdoms of the Messiah.”**
One of the central topics of the message focused on the situation in Venezuela, where **Dr. José Benjamín Pérez Matos** referred to the prolonged suffering of the people and the need for a structural change that would make it possible to restore freedom and dignity:
**“The cry of the children of God is that they may be free from that condition which has been oppressing them for so many years.”**
The statement also incorporated a broader perspective on the conflicts in the Middle East, interpreting current events as part of a transformation process of greater scope. Within this framework, the “difficult situations” affecting different nations were presented as signs of a transition toward a new order.
The event concluded with a blessing extended to other countries and a call to maintain an attitude of vigilance and prayer in the face of the ongoing changes, within an international landscape that continues to evolve rapidly and with great complexity.

View File

@ -1,37 +0,0 @@
---
locale: en
title: 'Global Warning from Puerto Rico: Israel in a State of Emergency and a Renewed Call for Freedom in 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',
},
]
---
# Global Warning from Puerto Rico: Israel in a State of Emergency and a Renewed Call for Freedom in Venezuela
*Cayey, Puerto Rico August 25, 2024*
At a large-scale conference with international reach via satellite broadcast, **Dr. José Benjamín Pérez Matos** delivered a message with strong geopolitical and spiritual content, focused on the critical situation in the Middle East and the ongoing crisis in Venezuela.
Before thousands of attendees, **Dr. José Benjamín Pérez Matos** addressed the 48-hour state of emergency declared in Israel following the launch of hundreds of rockets from Lebanon, an episode that heightened tensions in the region and set off alarms internationally. In his remarks, he placed these events within a broader interpretive framework:
**“For Israel, there will be a very, very great promise that is crystallizing”**.
Far from limiting himself to a reading of crisis, the message emphasized a perspective of an unfolding process, pointing to a scenario of transformation that reaches beyond the immediate events. In that sense, **Dr. José Benjamín Pérez Matos** noted that the current events should be viewed as part of a “global awakening” tied to the future course of Israel.
The address also gave central attention to the situation in Venezuela, where the leader made a public appeal for the nations freedom, citing the conditions impacting its population:
**“May God hear the cry of His children”**.
The message reinforced the idea that the Venezuelan situation represents a critical point within the regional landscape, highlighting the need for change that would restore conditions of freedom and dignity for its people.
In the last part of the conference, **Dr. José Benjamín Pérez Matos** broadened his message to Latin America, calling for unity and preparation in the face of what he called a period of transition. In this context, he emphasized that, beyond the difficulties expected ahead, faith and prayer serve as key elements for meeting the challenges to come.
This address reaffirms a consistent line of analysis, one that combines a reading of international events with a long-term perspective, set against a global backdrop marked by increasing complexity and uncertainty.

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, Israel]
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, Israel]
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: [United States, 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. José Benjamín 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. José Benjamín 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. José Benjamín 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,38 +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, Puerto Rico, Venezuela]
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',
},
]
---
# 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.
It reaffirms a line of constant support, where the spiritual dimension and the reading of international events converge in the same narrative.

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, Puerto Rico]
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,39 +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'
city: 'Cayey'
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*
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,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: 'Capital District'
country: 'CO'
tags: ['Colombia', 'India', 'Pakistan']
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 May 7, 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: [Mexico, 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, Iran]
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-49.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-49.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. José Benjamín 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. José Benjamín 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,54 +0,0 @@
---
locale: en
title: 'Mission in a Conflict Zone: Dr. José Benjamín Pérez Matos announces a strategic trip to Israel with a high-level agenda'
country: 'US'
city: 'Austin'
state: Texas
date: 2025-06-29
slug: 2025-06-29-mision-en-zona-de-conflicto-el-dr-jose-benjamin-perez-matos-anuncia-viaje-estrategico-a-israel-con-agenda-de-alto-nivel
tags: [United States]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-06_11-36-44.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-06_11-36-44.jpg',
},
]
---
# Mission in a Conflict Zone: Dr. José Benjamín Pérez Matos announces a strategic trip to Israel with a high-level agenda
_Austin, Texas, United States June 29, 2025_
In an announcement that redefines the scope of his international agenda, **Dr. José Benjamín Pérez Matos** confirmed on June 29, 2025, his immediate departure for Israel, on a mission that will be carried out **at the epicenter of a highly tense scenario** and will include meetings with political leaders, religious authorities, and military commanders.
The decision comes amid the fragility of recent agreements in the region, where —as the leader himself warned— stability remains precarious. In that regard, he stated: **“They go back and sign again, and those treaties get broken again”**, pointing to the volatile nature of the diplomatic landscape in the Middle East.
## His presence in directly affected areas
**Dr. José Benjamín Pérez Matos** detailed that his agenda includes visits to areas that were recently impacted by attacks, where he will maintain direct contact with armed forces and local authorities. The mission, far from being limited to a mere formality, aims to establish an active presence on the ground.
In that framework, he held: **“The army is also waiting for us”**, confirming that his arrival has been coordinated with official channels, underscoring the strategic character of the trip.
His presence in these spaces responds, as he explained, to the need of directly standing alongside the events unfolding in what he calls as key within the current context.
## Diplomacy from the field
One of the central objectives of the mission will be to strengthen the ties between Israel and the Western world, positioning himself as an active channel of communication in both directions.
**Dr. José Benjamín Pérez Matos** indicated that, during his stay, he will seek to carry out the message: **“From there, we will also be speaking back this way, toward the West”**, establishing a role of intermediary in the international narrative surrounding the conflict.
This course of action reinforces his strategy of influence, which combines territorial presence with the construction of discourse on the global stage.
## A trip under risky conditions
The trip takes place in a context where the Israeli civilian population continues to face threats requiring the repeated use of shelters and protective measures. In response to questions about the safety of the mission, **Dr. José Benjamín Pérez Matos** responded with an unequivocal statement.
In his words, he affirmed: **“When one is led by the Lord, I go wherever He sends me”**, reaffirming that his decision is not based solely on operational considerations, but on a personal conviction about the moment that the region is going through.
## Projected impact
The mission, expected to be brief but intense, is presented as a significant step in consolidating his international presence, especially in a scenario where those who manage to establish themselves on the ground gain greater capacity for influence.
With this announcement, **Dr. José Benjamín Pérez Matos** deepens his strategy of direct engagement in the Middle East, combining **active diplomacy, presence in a conflict zone, and the building of international standing.**
Amid a climate of high uncertainty, his trip is shaping up as an action aimed at influencing both the unfolding of events and their global interpretation.

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: 'Jerusalem'
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, Panama]
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
*Jerusalem, 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,57 +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: 'Jerusalem'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/vlcsnap-2026-05-10-18h34m43s731.webp'
tags: [Israel]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-10-18h34m43s731.webp',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-10-18h36m35s756.webp',
},
]
---
# Meeting in Jerusalem: Rabbi Eliahu Birnbaum Highlights the Spiritual Dimension of Dr. José Benjamín Pérez Matos Mission Amid War
*Jerusalem, 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,45 +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: “The time to work for peace is now”
*Cayey, Puerto Rico July 9, 2025*
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, **Dr. José Benjamín Pérez Matos** 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,”** **Dr. José Benjamín Pérez Matos** 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 world's 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,”** **Dr. José Benjamín Pérez Matos** 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 **Dr. José Benjamín Pérez Matos**, 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/photo_2026-05-04_09-59-20.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-04_09-59-20.jpg',
},
]
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,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, Iran]
---
# 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,55 +0,0 @@
---
locale: en
title: 'Warning to Governments: Dr. José Benjamín Pérez Matos warns about consequences for those who oppose Israel'
country: 'PR'
city: 'Cayey'
date: 2025-09-13
slug: 2025-09-13-warning-to-governments-dr-jose-benjamin-perez-matos-warns-about-consequences-for-those-who-oppose-israel
tags: [Puerto Rico, Israel, Spain]
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',
},
]
---
# Warning to Governments: Dr. José Benjamín Pérez Matos warns about consequences for those who oppose Israel
*Cayey, Puerto Rico September 13, 2025*
In a new statement centered on an analysis of the international landscape, **Dr. José Benjamín Pérez Matos** issued a warning to leaders and governments, urging them to **thoroughly reconsider their foreign policy decisions regarding Israel**, in order to avoid consequences that, in his view, could prove gravely harmful to their nations.
The message, released on September 13, 2025, is grounded on a reading of Old Testament texts and presents a direct connection between the position states take toward Israel and their future stability.
## Jerusalem as An Axis of Protection and Conflict
**Dr. José Benjamín Pérez Matos** centered his analysis on chapter 12 of the book of Zechariah, which describes a scene of confrontation surrounding Jerusalem. Drawing on that reference, he maintained that the destiny of nations would be shaped by their actions toward the Israeli State.
In that context, he stated: **“All nations need to know these prophecies so they dont make a mistake, so they dont end up regretting it afterward”**, stressing the need to incorporate this kind of analysis into political decision-making.
He also warned about the impact that a lack of awareness on these subjects can have on the way states are governed: **“Due to the decisions made by these leaders and presidents who dont know the Scriptures… they say things that end up hurting the people”**, drawing a direct connection between leadership, knowledge, and collective consequences.
## A Critique of International Positions
The message included specific references to recent decisions on the international stage. In particular, **Dr. José Benjamín Pérez Matos** questioned statements made by certain countries, noting that they reflect an insufficient understanding of the conflict.
In that regard, he said: **“Like Spain, which has said something it shouldnt have said. They speak about things without knowing”**, extending his criticism to government advisory teams.
He further urged political advisors to incorporate new sources of analysis: **“Instead, those same people behind the scenes (the advisors) should search, search the Scriptures… that is what God has always commanded: search the Scriptures, so as not to make a mistake”**, emphasizing the need to reassess decision-making processes.
## Action and Consequences in the International Stage
One of the main points of his argument is that the consequences nations face are not random, but the direct result of their own actions.
Within that framework, he explained: **“For divine judgment to come upon a nation, upon a government…: it has to carry out an act to earn it”**, introducing a cause-and-effect logic between political decisions and long-term outcomes.
**Dr. José Benjamín Pérez Matos** also warned about the current context, stating: **“There is a great judgment upon all those nations that have been against Israel, and those that at this time will be against Israel. And they are against Israel! or they are turning against Israel”**, in a statement that reinforces the cautionary tone of his message.
## Somewhere Between Warning and Outcome
The closing of his address presents a clear duality: just as unfavorable decisions can lead to negative consequences, to be aligned with Israel is presented as a path toward stability and prosperity.
In this sense, his message forms part of a sustained line of narrative that seeks to influence the foreign policy of states and public opinion, combining **strategic analysis, international positioning, and long-term projection.**
In a global landscape marked by tensions and shifting power dynamics, **Dr. José Benjamín Pérez Matos** reiterates one central point: a nations position toward Israel is not a secondary matter, but a determining factor in its destiny.

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,60 +0,0 @@
---
locale: en
title: 'Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel'
date: 2025-09-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, Iran]
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 September 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,53 +0,0 @@
---
locale: en
title: 'A Democratic Gala: Colombias Congress Honors Dr. José Benjamín Pérez Matos'
date: 2025-09-18
slug: 2025-09-18-a-democratic-gala-colombia-s-congress-honors-dr-jose-benjamin-perez-matos
place: Congress of Colombia
city: Bogotá
country: CO
tags: [Colombia]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/Condecoracion-JBP-congreso-18-sep-2025_-15-scaled.jpg
gallery: [
{
image: https://ik.imagekit.io/crpy/tr:w-900/Condecoracion-JBP-congreso-18-sep-2025_-15-scaled.jpg,
}
]
---
# A Democratic Gala: Colombias Congress Honors Dr. José Benjamín Pérez Matos
*Bogotá, Colombia September 18, 2025*
In the great Elliptical Hall of the National Capitol, one of the most emblematic spaces of Colombian institutional life, a solemn and symbolic day of public recognition was held on September 18. In that chamber, where the most relevant affairs of the Republic have historically been debated and defined, two of the highest distinctions granted by the Senate and the House of Representatives were conferred upon Dr. José Benjamín Pérez Matos, pastor and international conference speaker.
The ceremony took place around 10:00 a.m., beneath the dome of the Capitol that houses the seat of Colombian legislative power, in a ceremony that brought together authorities, special guests and representatives of various communities.
The honoree, born in Canóvanas, Puerto Rico, received from the Congress the the Order of Merit for Democracy in the rank of Grand Commander, as well as the Award of the Order, Dignity, and Homeland Distinction in the rank of Grand Commitment, distinctions that honor his lifelong trajectory of service, leadership and teaching of universal values.
The ceremony began with the performance of the national anthems of Colombia and Puerto Rico, in a gesture that symbolizes the union between both nations and reinforced the international character of the event. This moment established the solemn tone of the day, which was marked throughout by an atmosphere of respect, fraternity and dignity.
Among those in attendance were family members of the honoree, including his wife, Sara Meléndez, and his sons-in-law, as well as international Missionary Miguel Bermúdez Marín together with his family. Approximately 260 invited guests joined them for the occasion, in a ceremony rich in both institutional and spiritual significance.
The first distinction was presented by Senator María Fernanda Cabal, who, in addition to highlighting the importance of faith, the Bible and a life guided by principles, expressed her personal admiration for the honorees work. In her words, she expressed: “Congratulations, pastor. I am full of admiration for your work, your work at The Great Tent Cathedral. And I will surely go to Puerto Rico one day. I admire your work.”
Following this, House of Representative Jhon Jairo Berrío López, took the floor to elaborate on the meaning of the recognition, highlighting the need for leaders with a calling to service in todays world. During his remarks, he stressed that the world requires “more leaders that bring light, who care, who listen and walk alongside the people.”
He also underscored the international reach of Dr. José Benjamín Pérez Matos work, noting that “his work transcends borders: he has preached and held many important events of faith in different countries; not only across Latin America, but throughout the world. Colombia is among those countries.”
On a personal note, the legislator added: “Today, in conferring this distinction, I do so not only as a congressman, but as a citizen who recognizes that in people like you, Dr. José Benjamín, one sees faith at its very best, put into action. People who not only make promises, but keep them; who not only speak, but love; who not only receive momentary applause, but sow for generations to come.”
The National Capitol (typically the setting for political debates and decisions of great institutional impact), on this occasion was transformed into a space of recognition and gratitude. In that context, the presenter Yarith Barbosa, together with her family, made a symbolic gesture by placing the insignia of the Colombian flag upon the honoree, highlighting that Dr. José Benjamín Pérez Matos “has carried a message of union and hope that has crossed borders, strengthening ties and building bridges between nations. His leadership has inspired thousands of people.”
As the central moment of the event arrived, Dr. José Benjamín Pérez Matos took the floor to express his gratitude. With a calm and reflective tone, he delivered a message that resonated throughout the chamber, oriented toward the spiritual and social strengthening of the nation.
In his remarks, he expressed: **"I reiterate my desire and purpose: that the true Light, which enlightens the soul and understanding of every human being, impacts every Colombian, so that they may continue edifying themselves, that they be a blessing to their families, and thus, be able to build a better society, a better country every day."**
He also added a message of blessing and reflection addressed to the country: **"May God bless beautiful Colombia. And may God guide all the people to choose the best leader, so that he may lead beautiful Colombia to receive spiritual and material blessings as well."**
The ceremony, which lasted approximately 50 minutes, was followed both by those present and by thousands of viewers through the broadcast platforms of the Congress and of The Great Tent Cathedral, extending its reach well beyond the walls of the chamber.
The closing remarks were delivered by the head of Protocol, Plinio Enrique Ordóñez Villamizar, who offered a final reflection on the meaning of this type of recognition. In his words, he noted that distinctions “must be given in life (because it is in life): that our honoree feels the love of the people, of his family and of those around him…, in the very simple understanding that this decoration was received for a reason; and that reason is that things are being done right.”
Amid applause and in an atmosphere of institutional solemnity, the Congress of the Republic of Colombia left on record a recognition that transcends the merely symbolic, reaffirming that faith, when translated into action, service and commitment to values, holds a rightful place in the public life and in the institutional memory of the nation.

View File

@ -1,64 +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.
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.

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