Compare commits

..

12 Commits

249 changed files with 14611 additions and 14700 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 # Archivo de variables de entorno para la configuración de envío de emails
EMAIL_API_KEY=9UShpS8oh5Iun92TJSfevElI3Lp99TCv 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. # 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. # 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. # 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 # 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 # 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 # 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. # one found in a remote Prisma Postgres URL, does not contain any sensitive information.
DATABASE_URL="file:./dev.db" 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: on: [push]
push:
branches: [staging, production]
jobs: jobs:
deploy: explore-gitea-actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Check out repository code
uses: actions/checkout@v4
- name: Set target dir & PM2 env - name: List files in the repository
run: | run: |
if [ "${{ gitea.ref_name }}" = "production" ]; then ls ${{ gitea.workspace }}
echo "TARGET_DIR=/var/www/node/cdrdpyj" >> $GITHUB_ENV - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
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

5
.gitignore vendored
View File

@ -25,11 +25,6 @@ pnpm-debug.log*
/generated/prisma /generated/prisma
prisma/*.db prisma/*.db
prisma/dev.db prisma/dev.db
data/
# opencode - agentes y scripts locales (no subir a producción) # opencode - agentes y scripts locales (no subir a producción)
opencode/ 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

@ -17,7 +17,10 @@
"fr", "fr",
"he", "he",
"pt", "pt",
"uk" "uk",
"kr",
"ru",
"rw"
], ],
"hiddenColumns": [] "hiddenColumns": []
} }

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 Adding gitea/workflows/deploy.yaml to test github ci/cd runner
Testing runner change spmeting v12 Testing runner

View File

@ -22,10 +22,6 @@ export default defineConfig({
i18n: { i18n: {
locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw", "kr"], locales: ["es", "en", "fr", "he", "uk", "pt", "ru", "rw", "kr"],
defaultLocale: "es", defaultLocale: "es",
routing: {
prefixDefaultLocale: true,
redirectToDefaultLocale: true,
},
}, },
image: { 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: "",
}
}
]
};

View File

@ -1,19 +1,18 @@
{ {
"name": "cdrdpyj", "name": "",
"type": "module", "type": "module",
"version": "0.0.1", "version": "0.0.1",
"scripts": { "scripts": {
"dev": "astro dev", "dev": "tinacms dev -c \"astro dev\"",
"build": "astro build", "build": "astro build",
"postbuild": "node scripts/send-to-n8n.js",
"preview": "astro preview", "preview": "astro preview",
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"@astrojs/markdoc": "^2.0.3", "@astrojs/markdoc": "^0.15.10",
"@astrojs/node": "^11.0.2", "@astrojs/node": "^9.5.3",
"@astrojs/react": "^6.0.1", "@astrojs/react": "^5.0.3",
"@astrojs/vue": "^7.0.1", "@astrojs/vue": "^5.1.4",
"@coreui/icons": "^3.0.1", "@coreui/icons": "^3.0.1",
"@dotenvx/dotenvx": "^1.52.0", "@dotenvx/dotenvx": "^1.52.0",
"@fontsource-variable/kameron": "^5.2.8", "@fontsource-variable/kameron": "^5.2.8",
@ -24,12 +23,12 @@
"@iconify/vue": "^5.0.0", "@iconify/vue": "^5.0.0",
"@prisma/client": "^6.19.2", "@prisma/client": "^6.19.2",
"@tailwindcss/vite": "^4.1.18", "@tailwindcss/vite": "^4.1.18",
"@tinacms/cli": "^2.2.2",
"@unpic/astro": "^1.0.2", "@unpic/astro": "^1.0.2",
"astro": "^7.0.6", "astro": "^5.17.1",
"astro-embed": "^0.12.0", "astro-embed": "^0.12.0",
"astro-google-analytics": "^1.0.3", "astro-google-analytics": "^1.0.3",
"astro-icon": "^1.1.5", "astro-icon": "^1.1.5",
"cloudflare": "^7.0.0",
"dayjs": "^1.11.19", "dayjs": "^1.11.19",
"googleapis": "^171.4.0", "googleapis": "^171.4.0",
"prisma": "^6.19.2", "prisma": "^6.19.2",
@ -38,6 +37,7 @@
"sharp": "^0.34.5", "sharp": "^0.34.5",
"swiper": "^12.1.0", "swiper": "^12.1.0",
"tailwindcss": "^4.1.18", "tailwindcss": "^4.1.18",
"tinacms": "^2.2.2",
"vue": "^3.5.28" "vue": "^3.5.28"
}, },
"devDependencies": { "devDependencies": {

File diff suppressed because it is too large Load Diff

2
public/admin/.gitignore vendored Normal file
View File

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

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

@ -8,7 +8,6 @@ const {
image = null, image = null,
url = null, url = null,
date = null, date = null,
noindex = false,
} = Astro.props; } = Astro.props;
const imageUrl = image ? new URL(image, Astro.site).toString() : null; const imageUrl = image ? new URL(image, Astro.site).toString() : null;
@ -21,7 +20,6 @@ const canonicalURL = new URL(url || Astro.url.pathname, Astro.site);
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
{noindex && <meta name="robots" content="noindex, nofollow" />}
<GoogleAnalytics id="G-26KM3HWW9J" /> <GoogleAnalytics id="G-26KM3HWW9J" />
<title>{title}</title> <title>{title}</title>

View File

@ -2,10 +2,9 @@
const { props } = Astro.props; const { props } = Astro.props;
import { Icon } from "astro-icon/components"; import { Icon } from "astro-icon/components";
import Button from "./ui/Button.astro"; import Button from "./ui/Button.astro";
import { getLocalizedRoute } from '@/i18n'; import RegisterModal from "../components/RegisterModal.vue";
const background = props.bgImage || props.bgColor; 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`}> <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 && ( {props.hasInput && (
<div class="flex gap-2 w-full mt-5"> <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>
)} )}
</div> </div>

View File

@ -6,7 +6,6 @@ import { getCollection } from "astro:content";
import { createTranslator, routeTranslations } from "../i18n/index.ts"; import { createTranslator, routeTranslations } from "../i18n/index.ts";
const allNews = await getCollection("news"); const allNews = await getCollection("news");
const allEditorial = await getCollection("editorial");
const tl = createTranslator(Astro.currentLocale); const tl = createTranslator(Astro.currentLocale);
const currentLocale = Astro.currentLocale; const currentLocale = Astro.currentLocale;
@ -21,14 +20,13 @@ const languages = [
{ code: "fr", icon: "flagpack--fr", label: "Français" }, { code: "fr", icon: "flagpack--fr", label: "Français" },
{ code: "ru", icon: "flagpack--ru", label: "Русский" }, { code: "ru", icon: "flagpack--ru", label: "Русский" },
{ code: "rw", icon: "flagpack--rw", label: "Kinyarwanda" }, { code: "rw", icon: "flagpack--rw", label: "Kinyarwanda" },
{ code: "kr", icon: "flagpack--ht", label: "Kreole" }, { code: "kr", icon: null, label: "Kreole" },
]; ];
const navItems = [ const navItems = [
{ href: "#somos", key: "nav.about" }, { href: "#somos", key: "nav.about" },
{ href: "#programs", key: "nav.programs" }, { href: "#programs", key: "nav.programs" },
{ href: "#news", key: "nav.news" }, { href: "#news", key: "nav.news" },
{ href: "#editorial", key: "nav.editorial" },
]; ];
const sidebarNavItems = [ const sidebarNavItems = [
@ -36,14 +34,13 @@ const sidebarNavItems = [
{ href: "#somos", key: "nav.about" }, { href: "#somos", key: "nav.about" },
{ href: "#programs", key: "nav.programs" }, { href: "#programs", key: "nav.programs" },
{ href: "#news", key: "nav.news" }, { href: "#news", key: "nav.news" },
{ href: "#editorial", key: "nav.editorial" },
]; ];
function translatePath(newLocale: string) { function translatePath(newLocale: string) {
const segments = currentPath.split("/").filter(Boolean); const segments = currentPath.split("/").filter(Boolean);
if (segments.length === 0) return `/${newLocale}`; if (segments.length === 0) return `/${newLocale}`;
const remainingSegments = segments.slice(1); const remainingSegments = segments.slice(1);
const allRouteNames = Object.values(routeTranslations).flatMap(r => Object.values(r)); const newsRouteNames = Object.values(routeTranslations.news);
const translatedSegments = remainingSegments.map((segment) => { const translatedSegments = remainingSegments.map((segment) => {
for (const key in routeTranslations) { for (const key in routeTranslations) {
const translations = const translations =
@ -57,20 +54,16 @@ function translatePath(newLocale: string) {
} }
return segment; return segment;
}); });
if (segments.length >= 2 && allRouteNames.includes(segments[1])) { if (segments.length >= 2 && newsRouteNames.includes(segments[1])) {
if (segments.length >= 3) { if (segments.length >= 3) {
const currentId = segments[segments.length - 1]; const currentId = segments[segments.length - 1];
const baseId = currentId.split("/").pop(); const baseId = currentId.split("/").pop();
const existsInNews = allNews.some( const exists = allNews.some(
(post) => (post) =>
post.data.slug === baseId && post.data.locale === newLocale, post.id.endsWith(baseId!) && post.data.locale === newLocale,
); );
const existsInEditorial = allEditorial.some( if (!exists) return `/${newLocale}/${translatedSegments[0]}`;
(post) => return `/${newLocale}/${translatedSegments[0]}/${newLocale}/${baseId}`;
post.data.slug === baseId && post.data.locale === newLocale,
);
if (!existsInNews && !existsInEditorial) return `/${newLocale}/${translatedSegments[0]}`;
return `/${newLocale}/${translatedSegments[0]}/${baseId}`;
} }
} }
return `/${[newLocale, ...translatedSegments].join("/")}`; return `/${[newLocale, ...translatedSegments].join("/")}`;
@ -89,9 +82,9 @@ function translatePath(newLocale: string) {
</p> </p>
</div> </div>
<nav <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"> <div class="hidden md:flex gap-8 font-primary font-bold">
{ {
navItems.map((item) => ( navItems.map((item) => (
<a <a
@ -105,7 +98,7 @@ function translatePath(newLocale: string) {
<!-- <a class="hover:text-colorPrimary transition" href={`/${currentLocale}/archive`}>{tl("nav.archive")}</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> --> <a class="hover:text-colorPrimary transition" href={`/${currentLocale}/nations`}>{tl("nav.nations")}</a> -->
</div> </div>
<div class="drawer md:hidden"> <div class="drawer lg:hidden">
<input id="my-drawer-1" type="checkbox" class="drawer-toggle" /> <input id="my-drawer-1" type="checkbox" class="drawer-toggle" />
<div class="drawer-content"> <div class="drawer-content">
<label for="my-drawer-1" class="btn-ghost drawer-button"> <label for="my-drawer-1" class="btn-ghost drawer-button">
@ -202,7 +195,7 @@ function translatePath(newLocale: string) {
variant="primary" variant="primary"
/> />
</div> </div>
<div class="dropdown dropdown-end md:block hidden"> <div class="dropdown dropdown-end lg:block hidden">
<div <div
tabindex="0" tabindex="0"
role="button" role="button"

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="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="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 <img
src="/img/logo-metalico.webp" src="/img/logo-metalico.webp"
alt="Logo Metalico" alt="Logo Metalico"

View File

@ -18,7 +18,7 @@ const regionNames = new Intl.DisplayNames([locale], { type: 'region' });
dayjs.extend(utc); dayjs.extend(utc);
dayjs.locale(locale); 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 nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
const countryName = data?.data?.country ? regionNames.of(data.data.country) : ""; const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
@ -27,23 +27,15 @@ locationArray.filter(Boolean).join(', ');
--- ---
<div class="bg-[#EBE5D0] text-[#003421] p-10"> <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="text-8xl mb-8" />
<Icon name="ph:arrow-circle-down-thin" class="md:text-8xl text-7xl mb-0 md:mb-8" /> <p class="font-light md:text-2xl text-lg md:mb-8 mb-3">
{nicedate ? ( {locationArray.filter(Boolean).join(', ')}<br />
<p class="font-light md:text-2xl text-lg ml-2 md:ml-0 md:mb-8 mb-3"> ({nicedate}):
{locationArray.filter(Boolean).join(', ')}<br /> </p>
({nicedate}): <h3 class="md:text-2xl text-lg mb-4 font-bold md:mb-8 hover:underline"><a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>{data.data.title}</a></h3>
</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>
<div class="overflow-hidden"> <div class="overflow-hidden">
<a href={`/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`}> <a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`}>
<Image <Image
src={data.data.thumbnail} src={data.data.thumbnail}
alt={data.data.title} alt={data.data.title}
@ -53,8 +45,8 @@ locationArray.filter(Boolean).join(', ');
</div> </div>
<div class="mt-8"> <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"> <a href={`/${locale}/${getLocalizedRoute('news', locale)}/${data.id}`} 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")} {tl("news.fullnew")}
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" /> <Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
</a> </a>
</div> </div>

View File

@ -19,13 +19,13 @@ const tl = createTranslator(locale);
dayjs.extend(utc); dayjs.extend(utc);
dayjs.locale(locale); dayjs.locale(locale);
const { data, content, routeKey = "news" } = Astro.props; const { data, content } = Astro.props;
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY"); const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
const countryName = data?.data?.country ? regionNames.of(data.data.country) : ""; const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
const location = [data.data.city, data.data.state, countryName].filter(Boolean).join(", "); const location = [data.data.city, data.data.state, countryName].filter(Boolean).join(", ");
const newsUrl = `/${locale}/${getLocalizedRoute(routeKey, locale)}/${data.data.slug}`; const newsUrl = `/${locale}/${getLocalizedRoute("news", locale)}/${data.id}`;
const rawContent = content?.body || ""; 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 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();
@ -59,7 +59,7 @@ const excerpt = words.join(" ") + (words.length === 40 ? "..." : "");
<div class="mt-auto"> <div class="mt-auto">
<span class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline"> <span class="inline-flex items-center gap-1 text-sm font-primary text-tertiary font-semibold group-hover:underline">
{tl(routeKey + ".seemore")} {tl("news.seemore")}
<Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" /> <Icon name="ph:arrow-right" class="transform group-hover:translate-x-1 transition-transform" />
</span> </span>
</div> </div>

View File

@ -0,0 +1,31 @@
---
import { Image } from "astro:assets"
import { Icon } from "astro-icon/components";
import "dayjs/locale/es";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
import { getLocalizedRoute } from "../../i18n";
const locale = Astro.currentLocale;
dayjs.extend(utc);
dayjs.locale(locale);
const { data } = Astro.props;
const nicedate = dayjs.utc(data.date).format("D MMMM YYYY");
---
<div class="aspect-square relative rounded-lg overflow-hidden">
{data.thumbnail && (
<Image
src={data.thumbnail}
alt={data.title}
class="object-cover w-full h-full"
/>
)}
<div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity">
<a href={data.video_yt} target="_blank" rel="noopener noreferrer" class="text-white text-lg font-bold">
{data.type === 'short' ? 'Ver Short' : 'Ver Video'}
</a>
</div>
</div>

View File

@ -0,0 +1,19 @@
---
import { Image } from "astro:assets";
import { Icon } from "astro-icon/components";
import "dayjs/locale/es";
import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";
const locale = Astro.currentLocale;
import { createTranslator, getLocalizedRoute } from "@/i18n";
const tl = createTranslator(Astro.currentLocale);
dayjs.extend(utc);
dayjs.locale(locale);
const { data, content } = Astro.props;
const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
---
<section>
</section>

File diff suppressed because it is too large Load Diff

View File

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

@ -8,7 +8,6 @@ import { createTranslator, t } from "../../i18n";
const tl = createTranslator(Astro.currentLocale); const tl = createTranslator(Astro.currentLocale);
const isHebrew = Astro.currentLocale === "he"; const isHebrew = Astro.currentLocale === "he";
const { hideContact } = Astro.props;
--- ---
<div id="contact" class="bg-[#22523F]"> <div id="contact" class="bg-[#22523F]">
@ -53,7 +52,7 @@ const { hideContact } = Astro.props;
> >
</p> </p>
{!hideContact && <FormContact client:load locale={Astro.currentLocale} />} <FormContact client:load locale={Astro.currentLocale} />
</div> </div>
<div <div

View File

@ -92,34 +92,6 @@ const handleSubmit = async (e) => {
</fieldset> </fieldset>
<!-- Submit -->
<button
type="submit"
:disabled="isLoading"
class="bg-[#003421] px-6 py-2 text-sm cursor-pointer transition duration-300"
:class="[
isLoading ? 'opacity-70 cursor-not-allowed' : 'hover:bg-[#EBE5D0] hover:text-[#003421]',
isError ? 'bg-red-600 text-white' : ''
]"
>
<span v-if="isLoading" class="flex items-center gap-2">
<span class="w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"></span>
Enviando...
</span>
<span v-else-if="isSuccess">
Enviado
</span>
<span v-else-if="isError">
Error
</span>
<span v-else>
{{ tl("footer.form.button") }}
</span>
</button>
<div class="flex flex-row justify-between items-center mt-4"> <div class="flex flex-row justify-between items-center mt-4">
<!-- Social Icons --> <!-- Social Icons -->
@ -155,6 +127,34 @@ const handleSubmit = async (e) => {
</li> </li>
</ul> </ul>
<!-- Submit -->
<button
type="submit"
:disabled="isLoading"
class="bg-[#003421] px-6 py-2 text-sm cursor-pointer transition duration-300"
:class="[
isLoading ? 'opacity-70 cursor-not-allowed' : 'hover:bg-[#EBE5D0] hover:text-[#003421]',
isError ? 'bg-red-600 text-white' : ''
]"
>
<span v-if="isLoading" class="flex items-center gap-2">
<span class="w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"></span>
Enviando...
</span>
<span v-else-if="isSuccess">
Enviado
</span>
<span v-else-if="isError">
Error
</span>
<span v-else>
{{ tl("footer.form.button") }}
</span>
</button>
</div> </div>
</form> </form>
</template> </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> <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> <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="grid xl:grid-cols-3 text-[#003421] gap-20">
<div class="bg-[#EBE5D0] p-12 relative pb-32 md:pb-52"> <div class="bg-[#EBE5D0] p-12 relative pb-40">
<Icon name="ph:arrow-circle-down-thin" class="text-6xl mb-12 text-[#003421]" /> <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> <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> <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"> <div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_1" class="text-8xl md:text-9xl text-[#003421]" /> <Icon name="icon_formation_1" class="text-8xl text-[#003421]" />
</div> </div>
</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]" /> <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> <h4 class="text-[#003421] text-2xl mb-12">{tl("formation.consulting.title")}</h4>
<p class="text-lg font-normal">{tl("formation.consulting.text")}</p> <p class="text-lg font-normal">{tl("formation.consulting.text")}</p>
<div class="bottom-8 right-8 md:bottom-12 md:right-12 absolute"> <div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_2" class="text-8xl md:text-9xl text-[#003421]" /> <Icon name="icon_formation_2" class="text-8xl" />
</div> </div>
</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]" /> <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> <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> <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"> <div class="bottom-12 right-12 absolute">
<Icon name="icon_formation_3" class="text-8xl md:text-9xl text-[#003421]" /> <Icon name="icon_formation_3" class="text-8xl" />
</div> </div>
</div> </div>
</div> </div>

View File

@ -34,7 +34,7 @@ const cards = [
{ {
type: 'text', type: 'text',
icon: 'ph:arrow-circle-up-thin', 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', textColor: '#EBE5D0',
bgColor: '#003421' bgColor: '#003421'
}, },

View File

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

View File

@ -3,15 +3,10 @@ import { glob, file } from 'astro/loaders';
import { z } from 'astro/zod'; import { z } from 'astro/zod';
const news = defineCollection({ const news = defineCollection({
loader: glob({ loader: glob({ pattern: "**/*.md", base: "./src/content/news" }),
pattern: "**/*.md",
base: "./src/content/news",
generateId: ({ data, entry }) => `${data.locale}/${data.slug ?? entry.replace(/\.md$/, "")}`,
}),
schema: ({ image }) => z.object({ schema: ({ image }) => z.object({
locale: z.string().describe("News main language"), locale: z.string().describe("News main language"),
title: z.string(), title: z.string(),
slug: z.string(),
date: z.date(), date: z.date(),
draft: z.boolean().optional(), draft: z.boolean().optional(),
place: z.string().optional(), place: z.string().optional(),
@ -31,29 +26,18 @@ const news = defineCollection({
}), }),
}); });
const editorial = defineCollection({ const videos = defineCollection({
loader: glob({ pattern: "**/*.md", base: "./src/content/editorial" }), loader: glob({ pattern: "**/*.md", base: "./src/content/videos" }),
schema: ({ image }) => z.object({ schema: ({ image }) => z.object({
locale: z.string().describe("Editorial main language"), locale: z.string().describe("Video main language"),
title: z.string(), title: z.string(),
slug: z.string(),
date: z.date(), date: z.date(),
duration: z.string().optional(),
draft: z.boolean().optional(), draft: z.boolean().optional(),
place: z.string().optional(), video_yt: z.string().optional(),
order: z.number().optional(), thumbnail: z.string().url().optional(),
city: z.string().optional(), type: z.enum(["video", "short"]).default("video").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, videos };

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,7 +2,7 @@
locale: en locale: en
title: 'A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos' 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 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 place: The basement
city: Jacareí city: Jacareí
country: BR country: BR
@ -17,7 +17,7 @@ gallery: [
# A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos # A New Son for Jacareí: The Tribute to Dr. José Benjamín Pérez Matos
*Jacareí, Brazil August 29, 2025* *Jacareí, Brazil September 5, 2025*
The city of Jacareí, in the state of São Paulo, Brazil, woke up with a different atmosphere, as if its streets—dressed in history, trees and palm trees—knew that someone special was coming to wander them, not as a tourist, but as a future adopted son. The city of Jacareí, in the state of São Paulo, Brazil, woke up with a different atmosphere, as if its streets—dressed in history, trees and palm trees—knew that someone special was coming to wander them, not as a tourist, but as a future adopted son.

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

@ -6,11 +6,11 @@ slug: 2023-11-01-diplomatic-alert-in-latin-america-warning-of-consequences-follo
place: '' place: ''
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-15-10.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
tags: [Israel, Puerto Rico, Bolivia, Chile, Colombia] tags: [Israel, Puerto Rico, Bolivia, Chile, Colombia]
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
}, },
] ]
--- ---

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,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

@ -7,7 +7,7 @@ place: ''
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_18-21-03.jpg'
tags: [Puerto Rico, Israel] tags: [Puerto Rico]
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_18-21-03.jpg',

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto' thumbnail: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto'
tags: [Puerto Rico, Israel] tags: [Puerto Rico]
gallery: [ gallery: [
{ {
image: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto', image: 'https://ik.imagekit.io/crpy/7K0B4402.webp?tr=w-1280,q-auto,f-auto',

View File

@ -6,11 +6,11 @@ slug: 2025-02-16-international-call-to-action-dr-jose-benjamin-perez-matos-calls
place: '' place: ''
country: 'PR' country: 'PR'
city: Cayey city: Cayey
tags: [Israel, Puerto Rico, Venezuela] tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-31.jpg'
gallery: [ gallery: [
{ {
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-31.jpg',
}, },
] ]
--- ---
@ -34,5 +34,3 @@ Finally, the message projected a vision of global transformation, highlighting t
**“Those who wish to enter the glorious Millennial Kingdom will have to align themselves with that government.”** **“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. 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

@ -6,7 +6,7 @@ slug: 2025-02-21-condemnation-of-violence-and-international-warning-dr-jose-benj
place: '' place: ''
country: 'PR' country: 'PR'
city: Cayey city: Cayey
tags: [Israel, Puerto Rico] tags: [Israel]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [ gallery: [
{ {

View File

@ -4,7 +4,7 @@ title: 'India and Pakistan on the Brink of Major Escalation: Global Alert Over a
date: 2025-05-07 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 slug: 2025-05-07-india-and-pakistan-on-the-brink-of-major-escalation-global-alert-over-a-conflict-reshaping-the-geopolitical-balance
city: 'Bogotá' city: 'Bogotá'
state: 'Capital District' state: 'Distrito Capital'
country: 'CO' country: 'CO'
tags: ['Colombia', 'India', 'Pakistan'] tags: ['Colombia', 'India', 'Pakistan']
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-08_21-54-54.jpg thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-08_21-54-54.jpg

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

@ -6,14 +6,11 @@ slug: 2025-07-07-meeting-in-jerusalem-rabbi-eliahu-birnbaum-highlights-the-spiri
place: '' place: ''
country: 'IL' country: 'IL'
city: 'Jerusalem' city: 'Jerusalem'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/vlcsnap-2026-05-10-18h34m43s731.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026-05-09 13.24.43.jpg'
tags: [Israel] tags: [Israel]
gallery: [ 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/2026-05-09 13.24.43.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/vlcsnap-2026-05-10-18h36m35s756.webp',
}, },
] ]
--- ---

View File

@ -18,28 +18,28 @@ tags: [Puerto Rico, Israel, Gaza]
*Cayey, Puerto Rico July 9, 2025* *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 July 9, after an intense tour through Israeli territory amid an atmosphere of active conflict, **Dr. José Benjamín Pérez Matos** shared **publicly, from Cayey**, the powerful testimonies and experiences gathered during his recent trip. In an account that combined the harsh reality of war with a profound prophetic vision, Pérez emphasized the resilience of the Hebrew people and the urgency of working toward a definitive Kingdom of Peace.
## On the Front Lines: Visit to the Gaza Border ## 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. 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. **“While we were talking, we could hear the roar of the fighting,”** Pérez recounted, describing the gaze of Israeli soldiers as that of those who “live entirely in the present.” Hours after leaving the area, the leader received news of the death of some of the comrades of the soldiers who had welcomed him. “This reminds us that human beings must seize the momentum, the now, because once our days on Earth are over, there is no turning back to work in Gods Work,” he stressed.
## The Contrast of War: Laboratories of Life vs. Laboratories of Death ## 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. Dr. José Benjamín Pérez Matos denounced what he called a “tragedy for mankind” following the bombing of one of the worlds most important medical research laboratories in Israel. He explained that, while Israel has focused its strategic efforts on neutralizing nuclear threats and weapons laboratories in Iran, attacks against Israel have destroyed centers dedicated to life.
**“They destroyed more than 22 years of scientific research in cancer and epilepsy. It is outrageous to see how the health of the world is attacked out of hatred for a nation,”** **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. **“They destroyed more than 22 years of scientific research in cancer and epilepsy. It is outrageous to see how the health of the world is attacked out of hatred for a nation,”** Pérez declared, citing reports from local professors about the irreparable loss of advances achieved through the donation of bodies to science.
## Diplomacy and Purpose: “My Dream is the Throne of David” ## 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. 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.” **“My dream is to establish the Throne and the Kingdom of David, the Kingdom of Peace in Jerusalem; that is what I am working for”**, he stated firmly. For Pérez, the physical security offered by Israel —endorsed even by Argentine diplomats in the area— is a reflection of the spiritual security found by the “elect” in what he called the “heavenly Israel.”
## Strategic Coordination in Response to the Crisis ## 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. 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. **“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

@ -6,10 +6,10 @@ slug: 2025-08-09-from-mexico-latin-america-positions-itself-as-a-strategic-ally-
country: 'MX' country: 'MX'
city: Villahermosa city: Villahermosa
state: Tabasco state: Tabasco
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_09-59-20.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',
}, },
] ]
tags: [Mexico, Israel] tags: [Mexico, Israel]

View File

@ -1,7 +1,7 @@
--- ---
locale: en locale: en
title: 'Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel' title: 'Gaza Under the Magnifying Glass: Media Manipulation and Judgment Warning for Nations that Oppose Israel'
date: 2025-09-17 date: 2025-08-17
slug: 2025-08-17-gaza-under-the-magnifying-glass-media-manipulation-and-judgment-warning-for-nations-that-oppose-israel slug: 2025-08-17-gaza-under-the-magnifying-glass-media-manipulation-and-judgment-warning-for-nations-that-oppose-israel
place: '' place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'

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,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

@ -4,7 +4,7 @@ title: '“Global Sentence”: Dr. José Benjamín Pérez Matos Warns of Consequ
date: 2025-09-19 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 slug: 2025-09-19-global-sentence-dr-jose-benjamin-perez-matos-warns-of-consequences-for-western-powers-over-their-stance-on-israel
city: Palmira city: Palmira
state: Valle del Cauca State: Valle del Cauca
country: CO country: CO
tags: [Colombia, Israel] tags: [Colombia, Israel]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-51.jpg thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-51.jpg
@ -55,6 +55,8 @@ The statement builds on a consistent line from previous interventions: a critiqu
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. Dr. José Benjamín Pérez Matos reiterated that the lack of deeper understanding of the context is leading governments to adopt measures that, in his view, could prove counterproductive in the medium and long term.
Esta perspectiva plantea que el posicionamiento frente a Israel no es un tema periférico, sino un elemento central en la definición del rumbo de las naciones.
This perspective puts forward that one's stance toward Israel is not a peripheral issue, but rather a central element in defining the direction of nations. 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 ## An Escalating Narrative

View File

@ -25,7 +25,7 @@ The assessment is framed within a broader interpretation: the international syst
## Clash of Powers: Russia and the United States ## Clash of Powers: Russia and the United States
Speaking from Monterrey, Dr. José Benjamín Pérez Matos outlined a scenario of confrontation among major powers, with the rivalry between Russia and the United States at its core. According to his interpretation, current conflicts are not isolated events, but rather manifestations of a broader logic of global competition unfolding across multiple regions. Speaking from the Mexican capital, Dr. José Benjamín Pérez Matos outlined a scenario of confrontation among major powers, with the rivalry between Russia and the United States at its core. According to his interpretation, current conflicts are not isolated events, but rather manifestations of a broader logic of global competition unfolding across multiple regions.
In that context, he stated: **“When one sees all of this, and all the Scriptures, and everything that is happening in the world being fulfilled; and sees everything taking place with the United States; sees the kingdom of the king of the north (Russia) as well; and wars here and wars there…,”** drawing a direct connection between contemporary geopolitical developments and a broader assessment of the international landscape. In that context, he stated: **“When one sees all of this, and all the Scriptures, and everything that is happening in the world being fulfilled; and sees everything taking place with the United States; sees the kingdom of the king of the north (Russia) as well; and wars here and wars there…,”** drawing a direct connection between contemporary geopolitical developments and a broader assessment of the international landscape.
@ -49,7 +49,7 @@ This approach directly links geopolitical dynamics to a process of historical fu
## A Continent Under Pressure ## A Continent Under Pressure
The analysis presented in Monterrey makes clear that Latin America is not on the sidelines of global tensions, but rather an active participant in the strategic landscape. In this context, Venezuela emerges as a potential turning point that could redefine the regional balance. The analysis presented in Mexico City makes clear that Latin America is not on the sidelines of global tensions, but rather an active participant in the strategic landscape. In this context, Venezuela emerges as a potential turning point that could redefine the regional balance.
The combination of internal conflict, international pressure, and competition among major powers positions the country as a key arena within the emerging global order. The combination of internal conflict, international pressure, and competition among major powers positions the country as a key arena within the emerging global order.

View File

@ -1,57 +0,0 @@
---
locale: en
title: 'Latin America Toward Jerusalem: An Embassy Center Is Proposed to Redefine Regional Diplomatic Strategy in 2026'
date: 2025-11-30
slug: 2025-11-30-latin-america-toward-jerusalem-an-embassy-center-is-proposed-to-redefine-regional-diplomatic-strategy-in-2026
place: ''
country: 'PR'
order: 1
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/DSC04966.webp'
tags: [Israel, 'Puerto Rico']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/DSC04966.webp',
},
]
---
***From Puerto Rico, an initiative drives the joint relocation of Latin American diplomatic representations to Jerusalem as the axis of a new international alignment***
_Cayey, Puerto Rico November 30, 2025_
In a proposal that combines strategic vision and international projection, an initiative was presented to the governments of Latin America and the Caribbean to advance a structural change in their foreign policy: consolidating their alliance with Israel and relocating their diplomatic missions to Jerusalem before the end of 2026.
The initiative is not limited to a symbolic gesture, but puts forward a concrete reconfiguration of the regions diplomatic positioning at one of the most sensitive points of the global scenario.
## Israel as the Axis of Strategic Alignment
The proposal establishes a direct relationship between the States ties with Israel and their international projection. In this regard, political leaders of the region were urged to maintain firm and unwavering support, particularly in contexts of tension.
During the address, the following was emphasized: **“Check if its governor is united with Israel,”** underscoring that political and diplomatic coordination with the State of Israel must be upheld as a matter of State policy rather than a circumstantial decision.
The message aims to consolidate a regional course of action grounded in cooperation and strategic alignment, within a global context marked by geopolitical redefinitions.
## A Latin American Embassy Center in Jerusalem
As the central element of the proposal, the creation of a **Latin American Embassy Center in Jerusalem**was put forward, conceived as a diplomatic complex that would bring together the representations of the countries of the region within a single physical space.
The objective of this initiative is to optimize coordination between states, facilitate diplomatic interaction, and strengthen the joint presence of Latin America in the city.
In this framework, the following was stated: "If we can manage to have all the embassies in Jerusalem by 2026... That's not hard to ask for!" underscoring that the proposal is operationally viable provided the political will exists.
The idea introduces an innovative approach in diplomatic affairs, by proposing not only the relocation of embassies, but their integration into a collaborative regional framework.
## A Strategy With Global Implications
Beyond its logistical dimension, the proposal is situated within a broader framework of transformation of the international order. The relocation of embassies to Jerusalem implies a clear positioning in one of the most sensitive debates in global politics, with direct impact on bilateral and multilateral relations.
The proposal suggests that Latin America has the opportunity to act in a coordinated manner, strengthening its relative weight through shared strategic decisions.
## Toward a New International Landscape
The message presented from Cayey concludes with a vision of the future in which the region assumes an active role in the redefinition of the global diplomatic map. The Embassy Center proposal is projected as an instrument to consolidate alliances, improve operational efficiency, and reinforce the international presence of Latin American countries.
In this context, the eventual relocation of embassies to Jerusalem takes shape as a high-impact move, capable of redefining not only relations with Israel, but also the positioning of the region within the international landscape.
The initiative, ultimately, puts forward a paradigm shift: moving from fragmented foreign policies toward a **coordinated regional strategy**, with common objectives and global projection.

View File

@ -1,53 +0,0 @@
---
locale: es
title: '“The Time of Liberation Has Come”: Global Message Points to a Change of Era Amid International Crises'
date: 2026-01-04
slug: 2026-01-04-the-time-of-liberation-has-come-globally-message-points-to-a-change-of-era-amid-international-crises
place: ''
country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-08.jpg'
tags: [Israel, 'Puerto Rico', 'Venezuela', 'Gaza']
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-08.jpg',
},
]
---
***From Puerto Rico, an address marks the beginning of 2026 with a call for the stabilization of nations and a structural analysis of the global landscape.***
*Cayey, Puerto Rico January 4, 2026*
The start of the year was marked by a message of international reach that focused on the situation of multiple countries facing political, social, and economic crises. In an address delivered from Cayey, it was indicated that the world would be entering a new stage characterized by processes of transformation and the pursuit of stability across various regions of the world.
The message was not limited to a diagnosis, but also included a direct call to pay attention to the dynamics currently underway and their possible evolution in the coming months.
## Latin America and the Caribbean: Immediate Areas of Concern
Within the analysis, Venezuela emerged as a central focus as one of the primary regional situations of concern. The message referred to the need for prompt stabilization in the country, amid prolonged tensions and structural challenges.
Likewise, attention extended to other nations of the Caribbean and Central America, such as Cuba, Nicaragua, and Haiti, identified as territories facing complex situations that require sustainable short-term and medium-term solutions.
The perspective positions this subregion as one of the critical points within the broader map of global crises.
## A Problem of Global Scope
The analysis extended beyond the continent of the Americas, incorporating references to regions of Africa and to India as areas where conditions of instability and the need for transformation are also present.
In this regard, it was stated: **"There are many places that also need liberation,"** underscoring that the current tensions are not isolated phenomena, but rather part of a broader global dynamic.
The inclusion of multiple regions in the assessment reinforces the notion that the international landscape is experiencing a period of simultaneous change across multiple levels.
## A Change of Stage in the International System
The central concept of the message focused on the idea that the current context reflects a specific moment within a broader process of transformation. It was stated that the conditions observed —conflicts, institutional crises, and demands for change — would correspond to a transitional phase toward a new global landscape.
Within this framework, it was stated: **"The time of that liberation has come... therefore, we are in the right time,"** interpreting current events as part of a structured process aimed at the reorganization of nations.
## Perspectives for 2026
The message projects that the year 2026 will be decisive for the evolution of these processes, with possible advances in the stabilization of countries in crisis and in the redefinition of regional and international balances.
Far from being confined to a single conflict or region, the analysis presents a systemic view, in which multiple factors converge at a single historical turning point.
In this context, the start of the year is presented not merely as a change in the calendar, but as the beginning of a stage that could redefine the course of various nations and the international system as a whole.

View File

@ -3,9 +3,9 @@ locale: en
title: 'Middle East Escalation: Warning Issued Over Large-Scale Conflict Following “Operation Roaring Lion” Against Iran' title: 'Middle East Escalation: Warning Issued Over Large-Scale Conflict Following “Operation Roaring Lion” Against Iran'
slug: 2026-02-28-middle-east-escalation-warning-issued-over-large-scale-conflict-following-operation-roaring-lion-against-iran slug: 2026-02-28-middle-east-escalation-warning-issued-over-large-scale-conflict-following-operation-roaring-lion-against-iran
date: 2026-02-28 date: 2026-02-28
city: Buenos Aires city: Cayey
tags: [Argentina, Iran, Israel] tags: [Puerto Rico, Iran, Israel]
country: AR country: PR
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp'
gallery: [ gallery: [
{ {
@ -14,9 +14,9 @@ gallery: [
] ]
--- ---
*Buenos Aires, Argentina February 28, 2026* *Cayey, Puerto Rico February 28, 2026*
***Analysis from Argentina warns of coordinated attacks, regional retaliation, and the risk of a global military escalation*** ***Analysis from Puerto Rico warns of coordinated attacks, regional retaliation, and the risk of a global military escalation***
Amid heightened international tensions, Dr. José Benjamín Pérez Matos issued a warning regarding the rapid escalation of the conflict in the Middle East following the launch of a major military campaign known as “Operation Roaring Lion.” According to the analysis presented, the past several hours have seen a significant intensification of hostilities, with Israeli and U.S. forces taking direct part in strikes against strategic targets inside Iranian territory. Amid heightened international tensions, Dr. José Benjamín Pérez Matos issued a warning regarding the rapid escalation of the conflict in the Middle East following the launch of a major military campaign known as “Operation Roaring Lion.” According to the analysis presented, the past several hours have seen a significant intensification of hostilities, with Israeli and U.S. forces taking direct part in strikes against strategic targets inside Iranian territory.

View File

@ -4,7 +4,6 @@ title: 'Unwavering Support For Israel and Call for the Hostages: Dr. José Benja
date: 2025-04-18 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 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' country: 'PR'
city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_10-15-27.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-04_10-15-27.jpg'
gallery: [ gallery: [
{ {

View File

@ -1,69 +0,0 @@
---
locale: en
title: "Senior Officials of the Israeli Foreign Ministry Support the Work of Dr. José Benjamín Pérez Matos and the Kingdom of Peace and Justice Center"
date: 2026-05-18
order: 2
slug: 2026-05-18-altas-senior-officials-of-the-israeli-foreign-ministry-support-jose-benjamin-perez-matos-and-the-kingdom-of-peace-and-justice
tags: [Israel]
city: Jerusalén
country: IL
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_05_17_Reunion_vice_ministra_de_relaciones_exteriores_H_217.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026_05_17_Reunion_vice_ministra_de_relaciones_exteriores_H_217.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/2026_05_17_Reunion_vice_ministra_de_relaciones_exteriores_H_218.jpg',
},
]
---
# Senior Officials of the Israeli Foreign Ministry Support the Work of Dr. José Benjamín Pérez Matos and the Kingdom of Peace and Justice Center
## In a meeting held at the Israeli Ministry of Foreign Affairs, high-level officials highlighted the importance of the work carried out in Latin America in support of Israel, and expressed their willingness to strengthen cooperation with the Kingdom of Peace and Justice Center.
*Jerusalén, Israel - may 18, 2026*
In the framework of an intensive agenda of official meetings held in the State of Israel, the president and founder of the Kingdom of Peace and Justice Center, **Dr. José Benjamín Pérez Matos**, held a work meeting with high-level officials of the Israeli Ministry of Foreign Affairs, where various topics were discussed related to the strengthening of ties between Israel and Latin America, cooperation with Christian and Evangelical communities, and the public diplomacy actions driven by the institution in various countries across the continent.
The meeting included the participation of **Lior Haiat**, Deputy Director of the Ministry of Foreign Affairs and Head of the North America Division; **George Deek**, responsible for the Ministrys relations with the Christian world; and **Amir Ofek**, Director General of the Ministry of Foreign Affairs for Latin America and the Caribbean.
During the meeting, **Dr. José Benjamín Pérez Matos** presented a general overview of the events that the Kingdom of Peace and Justice Center carries out in Latin America to promote support for Israel and disseminate the historical, spiritual, and prophetic importance of the Jewish state.
As he explained, the institution conducts educational events, conferences, gatherings, and outreach initiatives, directed at both Christian communities and non-religious sectors interested in strengthening ties with Israel.
**“We have always worked in favor of Israel; and now even more so, as the time of the restoration of the Kingdom of the Messiah draws near. Everything that moves around the Kingdom of Peace and Justice Center at the level of Latin America is to spread the love for Israel and the importance of keeping Israel standing; both spiritually, and as a nation.”**
Likewise, he highlighted that the work developed by the institution is based in biblical teachings and in the study of the prophecies related to Israel and the future of the nations.
**“We carry out teaching services, based on the prophecies of the prophets, because everything must have a scriptural foundation: why one must love Israel and why one must stand in favor of Israel.”**
For his part, **Lior Haiat** expressly thanked the Kingdom of Peace and Justice Center for the work it has been developing in Latin America and highlighted the importance of the international recognition of Jerusalem as the capital of the State of Israel.
**“Thank you very much for the work you are doing, which is very important.”**
The Israeli official further argued that the relocation of embassies to Jerusalem constitutes a concrete step toward a peace grounded in historical reality and not in political constructs detached from the facts.
**“Jerusalem is the capital of the State of Israel; it has been the heart of the Jewish state for more than 3,000 years. Therefore, the step of bringing the embassy to Jerusalem is the step toward peace.”**
One of the most notable moments of the meeting came from **George Deek**, who expressed gratitude for the ongoing support of Christian and Evangelical communities across the Americas toward Israel, and highlighted the need to strengthen cooperation in the face of the growing antisemitism and persecution of Christians in various parts of the world.
**“Thank you for always standing alongside Israel as Christian communities, as evangelical communities, from Puerto Rico, South America, North America, and all parts of the world.”**
He likewise noted the importance of working together to combat both judeophobia and christianophobia.
**“We need to work together to ensure we combat judeophobia, and we will join you in the fight against christianophobia.”**
In response, **Dr. José Benjamín Pérez Matos** highlighted that the cooperation between Christians and Jews constitutes, from his perspective, the fulfillment of an ancient biblical prophecy linked to the reunification of the tribes of Israel described by the prophet Ezekiel.
**“Those two sticks must come together in the hand of the prophet to become one stick. And that means one kingdom.”**
The leader of the Kingdom of Peace and Justice Center further underscored that the actions driven by the institution respond to a long-term vision based on the fulfillment of biblical prophecies.
**“We do not work for the sake of working, but we work on a prophetic foundation of what the prophets spoke.”**
**Amir Ofek** expressed gratitude for the work carried out by **Dr. José Benjamín Pérez Matos** and the Kingdom of Peace and Justice Center, conveyed his willingness to collaborate with the initiatives driven by the institution, and expressed interest in learning about the contacts and international ties developed by the Center across various countries and Israeli diplomatic representations in Latin America.
The meeting concluded with a commitment to continue strengthening cooperation between the Israeli authorities and the Kingdom of Peace and Justice Center, expanding the outreach, education, and public diplomacy efforts aimed at reinforcing the ties between Israel and Latin America.
The meeting constitutes a new recognition of the international work that **Dr. José Benjamín Pérez Matos** and the Kingdom of Peace and Justice Center have been developing for years in favor of Israel, promoting the rapprochement of communities, interfaith dialogue, and cooperation among nations.

View File

@ -1,39 +0,0 @@
---
locale: en
title: "Gideon Sa'ar Received Dr José Benjamín Pérez Matos At The Headquarters Of The Israeli Ministry Of Foreign Affairs"
date: 2026-05-18
order: 1
city: Jerusalem
country: IL
slug: 2026-05-18-gideon-saar-received-dr-jose-benjamin-perez-matos-at-the-headquarters-of-the-israeli-ministry-of-foreign-affairs
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-50/2026-05-18-1.png'
tags: [Israel, Bolivia, Colombia, Venezuela, El Salvador, Argentina, United States]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/2026-05-18-1.png',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/2026-05-18-2.png',
}
]
---
# Gideon Sa'ar Received Dr José Benjamín Pérez Matos At The Headquarters Of The Israeli Ministry Of Foreign Affairs
## The meeting took place in Jerusalem, in the context of the recognition of the international work that the Kingdom of Peace and Justice Center develops in defense of Israel and public diplomacy in Latin America.
*Jerusalem, Israel - May 18, 2026*
On Monday, May 18th, the Minister of Foreign Affairs of the State of Israel, Gideon Saar, received Dr. José Benjamín Pérez Matos at the official headquarters of the Israeli Foreign Ministry in the city of Jerusalem, in a high-level meeting where various topics were addressed related to the international geopolitical situation and the public diplomacy work that the Kingdom of Peace and Justice Center develops in Latin America and other regions of the world.
The meeting took place in an atmosphere of cordiality, institutional respect, and mutual recognition, further serving as a new sign of the growing acknowledgment that the highest levels of the Israeli government have been extending to the actions, commitment, and unwavering support of Dr. José Benjamín Pérez Matos regarding Israel in Latin America and at the international level.
During the meeting, Dr. José Benjamín Pérez Matos presented a detailed overview of the initiatives and international projects driven by the Kingdom of Peace and Justice Center, particularly those actions aimed at strengthening public diplomacy, institutional cooperation, the defense of Israel in international scenarios, and the building of ties with political, religious, and social leaders from various Latin American countries.
One of the main topics of conversation was the current situation in Bolivia, a country on which they exchanged analyses regarding the regional political and social context, as well as the strategic importance that Latin America represents in the contemporary diplomatic landscape.
They also discussed the recent actions carried out by the Center in countries such as Colombia, Venezuela, El Salvador, Argentina, and the United States, among others, highlighting the international work of institutional outreach, bridge-building for dialogue, and the promotion of cooperation initiatives and support toward Israel.
The meeting between the Israeli Foreign Minister and Dr. José Benjamín Pérez Matos falls within the framework of an intensive international agenda developed by the Kingdom of Peace and Justice Center; an organization that in recent years has significantly increased its presence and activity in various countries across Latin America and the world, establishing itself as an active actor in the areas of public diplomacy, international relations, and the defense of Israel on the international stage.
The meeting held in Jerusalem represents, furthermore, an important political and institutional gesture that reaffirms the ties built between the Kingdom of Peace and Justice Center and various sectors of Israeli political leadership, in an international context marked by growing geopolitical and diplomatic challenges for the State of Israel.

View File

@ -1,57 +0,0 @@
---
locale: en
title: 'Thousands Gather in Santiago, Chile to Hear Dr. José Benjamín Pérez Matos'
date: 2026-05-29
order: 1
city: 'Santiago'
country: 'CL'
slug: 2026-05-29-miles-thousands-gather-in-santiago-chile-to-hear-to-dr-jose-benjamin-perez-matos
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/photo_2026-06-01_09-54-22-thumb-1.webp'
tags: [Israel, Bolivia, El Salvador, Chile]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-01_06-07-01.jpg',
},
]
---
# Thousands Gather in Santiago, Chile to Hear to Dr. José Benjamín Pérez Matos
*Santiago, Chile - May 29, 2026*
As part of his international tour throughout Latin America, the president and founder of the Kingdom of Peace and Justice Center, **Dr. José Benjamín Pérez Matos**, led a massive public event last Friday, May 29, in the municipality of La Florida, in the city of Santiago, Chile.
The gathering spontaneously brought together tens of thousands of followers from different parts of the country, who came together to hear **Dr. José Benjamín Pérez Matos** message regarding the current situation in Latin America, the political challenges the region is facing, and the need to exercise strong leadership in times of growing uncertainty.
During his address, **Dr. José Benjamín Pérez Matos** discussed various international current affairs, making special reference to the crisis Bolivia is facing and to the recent statements made by Bolivian President Rodrigo Paz Pereira regarding the need to prioritize dialogue as a means of overcoming the political and social conflict affecting the country.
In that context, **Dr. José Benjamín Pérez Matos** expressed his disagreement with positions that, in his view, are insufficient to confront destabilization processes that threaten the institutional stability of nations.
Referring to a recent interview by the Bolivian president with the international network CNN en Español, **Dr. José Benjamín Pérez Matos** stated:
**“I dont know if it was the president of Bolivia (recently), they asked him: But why dont you take a stronger stance? Look at how things are now, La Paz is still having some difficulties there. And he said: No, I still believe in dialogue.’”**
The remarks referred to the international interview granted by President Rodrigo Paz Pereira to the program Conclusiones, hosted by Fernando del Rincón and broadcast by CNN en Español, where the Bolivian president stated: [^1] [^2] [^3]
“We are on the verge of solving the situation through dialogue rather than confrontation in Bolivia. We have never won through confrontation, and we are going to defeat these people—those who are exploiting a critical moment in the countrys political history. We are going to defeat them by creating a transformation of our nation.”
Before thousands of attendees, **Dr. José Benjamín Pérez Matos** maintained that democratic governments have the responsibility to act decisively when confronted with groups seeking to alter the institutional order or generate situations of political and social chaos.
He also reported that, as a result of those statements, he authorized sending a statement addressed to the Bolivian president in order to convey his perspective regarding the situation being faced by the neighboring country.
**“Right then and there I said: Write a letter and send it to the president of Bolivia. Tell him: Dialogue? What do you mean dialogue?! What they need is a firm hand! The Kingdom that is going to be established is with a rod of iron! This cannot be handled by being soft. And we sent him a letter. Because everything will begin to be established starting now. And I think I also gave him the example of the president of El Salvador.”**
During his speech, **Dr. José Benjamín Pérez Matos** also referred to recent experiences in various Latin American countries where, according to his remarks, the firmness of governmental authorities made it possible to restore order, strengthen institutions, and provide greater security to the population.
The message was received attentively by those in attendance, who remained throughout several hours of presentations during the event.
**Dr. José Benjamín Pérez Matos** presence in Santiago, Chile forms part of an intensive international agenda that, over recent weeks, included high-level meetings in the State of Israel, meetings with government authorities, religious leaders, and representatives from different sectors committed to promoting peace, justice, and the values upheld by the Kingdom of Peace and Justice Center.
Representatives of the institution emphasized the importance of such large-scale gatherings, which allow direct contact with thousands of people interested in the challenges Latin America faces and in the construction of societies founded upon principles of responsibility, leadership, and commitment to the well-being of their peoples.
The event held in La Florida constitutes a new demonstration of **Dr. José Benjamín Pérez Matos** broad international appeal and of the growing interest that his messages generate among different sectors of Latin American society.
[^1]: Cárdenas, V. S. (2026, May 26). President of Bolivia says he will continue to rely on dialogue amid protests: “The only way to prevail today will not be through bullets.”*CNN Chile*. [Link](https://www.cnnchile.com/mundo/presidente-de-bolivia-dice-que-seguira-apostando-por-el-dialogo-en-medio-de-protestas-la-unica-forma-de-ganar-hoy-dia-no-sera-la-bala/)
[^2]: Agencia Boliviana de Información. (2026, May 26). Rodrigo Paz: “The methodology of dialogue is more courageous than weapons." [Link](https://abi.bo/rodrigo-paz-marca-distancia-de-la-confrontacion-la-metodologia-del-dialogo-es-mas-valiente-que-las-armas/)
[^3]: Condori, A. (2026, may 26). Paz affirms that dialogue will overcome “armed confrontation” and denounces misinformation. *La Razón* [Link](https://larazon.bo/nacional/2026/05/26/paz-afirma-que-el-dialogo-vencera-a-la-confrontacion-armada-y-denuncia-desinformacion/)

View File

@ -1,41 +0,0 @@
---
locale: en
title: 'Statement Congratulating Somaliland on the Opening of Its Embassy in Jerusalem'
date: 2026-06-20
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-20-statement-congratulating-somaliland-on-the-opening-of-its-embassy-in-jerusalem
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/02_01-1080X1350 IG-LARGE-01 INSTAGRAM-04.png'
tags: [Statement]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/02_01-1080X1350 IG-LARGE-01 INSTAGRAM-04.png',
},
]
---
# Statement Congratulating Somaliland on the Opening of Its Embassy in Jerusalem
_June 20, 2026_
On behalf of the Kingdom of Peace and Justice Center, and in my role as founding president, I extend my most sincere congratulations to the people of Somaliland on the official opening of their embassy in the city of Jerusalem.
Likewise, I extend my congratulations to His Excellency the President of the Republic of Somaliland, Abdirahman Mohamed Abdullahi, and to His Excellency the Minister of Foreign Affairs, Abdirahman Dahir Adan, for this historic decision that strengthens the bonds of friendship, cooperation, and mutual respect with the State of Israel.
For me, the opening of this embassy constitutes an act of political courage, strategic vision, and respect for the historical, cultural, and spiritual reality of Israel. I consider it a decision that honors historical truth, and contributes to the strengthening of relations between nations that share values of freedom, international cooperation, stability, and peace.
I wish to especially highlight the leadership demonstrated by the authorities of Somaliland in establishing their diplomatic representation in Jerusalem, thereby recognizing the city as the seat of Israels fundamental institutions. I view this decision as joining those of other nations that have relocated their embassies —or established permanent representations there— consolidating a reality that deserves recognition from the international community.
From the Kingdom of Peace and Justice Center, I consider this to be a positive step for bilateral relations and a significant contribution to global stability.
For this reason, I respectfully urge the Governments and parliaments of the world to consider the example set by Somaliland, moving toward a foreign policy based on reality, mutual respect, and cooperation.
I commend the people of Somaliland for this milestone, and I extend my best wishes for the development of diplomatic, economic, technological, academic, and cultural ties between both peoples. May this new stage bring prosperity and peace.
**Dr. José Benjamín Pérez Matos**
_President_
Kingdom of Peace and Justice Center

View File

@ -1,45 +0,0 @@
---
locale: en
title: 'Statement from the Kingdom of Peace and Justice Center'
date: 2026-06-26
order: 1
# city: 'Palmira'
# country: 'CO'
# state: 'Valle del Cauca'
slug: 2026-06-26-statement-from-the-kingdom-of-peace-and-justice-center
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/02_01-1080X1350 IG-LARGE-01 INSTAGRAM-04.png'
tags: [Statement, Venezuela, United States]
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/02_01-1080X1350 IG-LARGE-01 INSTAGRAM-04.png',
},
]
---
# Statement from the Kingdom of Peace and Justice Center
_June 26, 2026_
## In light of the humanitarian emergency caused by the earthquakes in Venezuela
The **Kingdom of Peace and Justice Center**, through its president, **Dr. José Benjamín Pérez Matos**, expresses its profound consternation over the tragedy the Venezuelan people are experiencing as a result of the devastating earthquakes that have claimed hundreds of lives, injured thousands and displaced a significant number of people. In these hours of grief, thousands of families are in urgent need of medical assistance, search and rescue, food, potable water, shelter, and humanitarian support.
In the face of a catastrophe of this magnitude, international solidarity constitutes a moral duty of the entire community of nations. Throughout history, search and rescue teams, medical personnel, firefighters, engineers, emergency specialists, and thousands of volunteers from the United States of America have played a fundamental role in numerous humanitarian operations around the world. In the current Venezuelan emergency, multiple American teams and resources have already been mobilized to assist in relief efforts.
However, numerous United States citizens who wish to travel to Venezuela to volunteer are facing difficulties due to the current immigration and visa requirements for entry into the country.
Therefore, **Dr. José Benjamín Pérez Matos** makes a respectful and urgent call:
**To the Government of the Bolivarian Republic of Venezuela**, that, on an exceptional and strictly humanitarian basis, it may order the temporary suspension of visa requirements for United States citizens who certify their participation in aid, search and rescue missions, medical assistance, reconstruction or any other humanitarian work related to the present emergency.
Likewise, we urge Venezuelan authorities to establish a swift and specialized mechanism to facilitate the swift entry of volunteers, humanitarian organizations, and specialized personnel, always prioritizing the protection of human life.
Likewise, a respectful call is made to the **Secretary of State of the United States of America to promote**, through diplomatic channels, the necessary arrangements with the Venezuelan authorities with the goal of facilitating this exceptional entry mechanism for United States citizens.
Great tragedies should become opportunities to demonstrate that compassion can prevail over political differences. When human lives are at risk, humanitarian assistance must be allowed to overcome any administrative obstacle.
The **Kingdom of Peace and Justice Center** reaffirms its commitment to the defense of human dignity, international cooperation and solidarity among peoples, and invites all governments, international organizations and civil society entities to join efforts to alleviate the suffering of the Venezuelan people and to accelerate rescue, relief and reconstruction efforts.
**Dr. José Benjamín Pérez Matos**<br>
Founder and President<br>
Kingdom of Peace and Justice Center<br>

View File

@ -1,5 +1,5 @@
--- ---
locale: en locale: es
title: 'Señales de una transformación global: advertencias sobre Israel y el clima en el Medio Oriente' title: 'Señales de una transformación global: advertencias sobre Israel y el clima en el Medio Oriente'
date: 2023-07-27 date: 2023-07-27
slug: 2023-07-27-senales-de-una-transformacion-global-advertencias-sobre-israel-y-el-clima-en-el-medio-oriente slug: 2023-07-27-senales-de-una-transformacion-global-advertencias-sobre-israel-y-el-clima-en-el-medio-oriente

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-15-10.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_12-15-10.jpg'
tags: [Israel, Puerto Rico, Bolivia, Chile, Colombia] tags: [Israel, Puerto Rico, Bolivia, El Salvador, Nicaragua]
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-08_12-15-10.jpg',
@ -29,7 +29,7 @@ En paralelo, el Dr. José Benjamín Pérez Matos analizó con preocupación el g
Tras confirmarse la medida, profundizó su análisis con una advertencia directa: **«“Bolivia rompe relaciones con Israel”. O sea que ya todo eso estamos viendo cómo está ocurriendo. ¡Imagínate! O sea que tiene que haber un motivo para que reciban lo que tengan que recibir».** Tras confirmarse la medida, profundizó su análisis con una advertencia directa: **«“Bolivia rompe relaciones con Israel”. O sea que ya todo eso estamos viendo cómo está ocurriendo. ¡Imagínate! O sea que tiene que haber un motivo para que reciban lo que tengan que recibir».**
El planteo del Dr. José Benjamín Pérez Matos no se limitó a un análisis puntual, sino que se extendió a una lectura más amplia del posicionamiento regional. En ese marco, sostuvo que las decisiones de política exterior en relación con Israel no son neutras ni aisladas, sino que pueden tener consecuencias profundas para los países involucrados. En sus palabras: **«Deseamos que la América Latina no sufra y no tenga consecuencias tan desastrosas; pero ya, un país que se vaya en contra de Israel, dice que “el que te bendiga será bendito, y el que te maldiga será maldito”».** El planteo del Dr. José Benjamín Pérez Matos no se limitó a un análisis puntual, sino que se extendió a una lectura más amplia del posicionamiento regional. En ese marco, sostuvo que las decisiones de política exterior en relación con Israel no son neutras ni aisladas, sino que pueden tener consecuencias profundas para los países involucrados. En sus palabras: **«Deseamos que la América Latina no sufra y no tenga consecuencias tan desastrosas; pero ya, un país que se vaya en contra de Israel, dice que “el que te bendiga será bendito, y el que te maldiga será maldito”».**
El análisis también incluyó a otros países de la región, particularmente Chile y Colombia, en relación con sus recientes decisiones diplomáticas. Sobre este punto, el Dr. José Benjamín Pérez Matos hizo referencia a los movimientos de ambos Gobiernos al llamar a consulta a sus embajadores en Israel, interpretando estas acciones como parte de una tendencia regional que, a su juicio, responde a presiones externas más amplias. El análisis también incluyó a otros países de la región, particularmente Chile y Colombia, en relación con sus recientes decisiones diplomáticas. Sobre este punto, el Dr. José Benjamín Pérez Matos hizo referencia a los movimientos de ambos Gobiernos al llamar a consulta a sus embajadores en Israel, interpretando estas acciones como parte de una tendencia regional que, a su juicio, responde a presiones externas más amplias.

View File

@ -19,16 +19,16 @@ gallery: [
*Cayey, Puerto Rico 15 de abril de 2024* *Cayey, Puerto Rico 15 de abril de 2024*
En un contexto internacional marcado por tensiones crecientes en el Medio Oriente, el **Dr. José Benjamín Pérez Matos** emitió un mensaje de respaldo y bendición dirigido al pueblo de Israel, destacando la importancia de la toma de decisiones en un momento considerado clave para el futuro de la región. En un contexto internacional marcado por tensiones crecientes en el Medio Oriente, el Dr. José Benjamín Pérez Matos emitió un mensaje de respaldo y bendición dirigido al pueblo de Israel, destacando la importancia de la toma de decisiones en un momento considerado clave para el futuro de la región.
Desde Cayey, Puerto Rico, el **Dr. José Benjamín Pérez Matos** dirigió sus palabras tanto a los líderes como al pueblo hebreo, enfatizando la necesidad de actuar con sabiduría y responsabilidad en un escenario de alta complejidad: Desde Cayey, Puerto Rico, el Dr. José Benjamín Pérez Matos dirigió sus palabras tanto a los líderes como al pueblo hebreo, enfatizando la necesidad de actuar con sabiduría y responsabilidad en un escenario de alta complejidad:
**“Que Dios bendiga a Israel, que Dios bendiga al pueblo hebreo, que tomen las decisiones correctas”**. **“Que Dios bendiga a Israel, que Dios bendiga al pueblo hebreo, que tomen las decisiones correctas”**.
El mensaje no solo transmitió apoyo, sino también una perspectiva de esperanza vinculada a acontecimientos futuros. En ese sentido, el **Dr. José Benjamín Pérez Matos** expresó su anhelo de que el pueblo de Israel pueda recibir con claridad y prontitud aquello que, según su visión, se aproxima: El mensaje no solo transmitió apoyo, sino también una perspectiva de esperanza vinculada a acontecimientos futuros. En ese sentido, el Dr. José Benjamín Pérez Matos expresó su anhelo de que el pueblo de Israel pueda recibir con claridad y prontitud aquello que, según su visión, se aproxima:
**“Que Dios les ponga en su corazón lo que pronto ellos van a recibir”**. **“Que Dios les ponga en su corazón lo que pronto ellos van a recibir”**.
Estas declaraciones se inscriben en una línea de acompañamiento constante, donde la fe y la dimensión espiritual se presentan como elementos centrales de cohesión y orientación. En este marco, la comunidad que sigue al ****Dr. José Benjamín Pérez Matos**** reafirma su respaldo a Israel, destacando el papel de la oración y la convicción como factores que trascienden fronteras. Estas declaraciones se inscriben en una línea de acompañamiento constante, donde la fe y la dimensión espiritual se presentan como elementos centrales de cohesión y orientación. En este marco, la comunidad que sigue al Dr. José Benjamín Pérez Matos reafirma su respaldo a Israel, destacando el papel de la oración y la convicción como factores que trascienden fronteras.
El mensaje emitido desde Puerto Rico se suma así a una serie de pronunciamientos que subrayan la relevancia del momento actual, consolidando una postura clara de apoyo y seguimiento atento a la evolución de los acontecimientos en el escenario internacional. El mensaje emitido desde Puerto Rico se suma así a una serie de pronunciamientos que subrayan la relevancia del momento actual, consolidando una postura clara de apoyo y seguimiento atento a la evolución de los acontecimientos en el escenario internacional.

View File

@ -10,7 +10,7 @@ thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-08_14-49-46.jpg'
tags: [Venezuela, Puerto Rico] tags: [Venezuela, Puerto Rico]
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/',
}, },
] ]
--- ---

View File

@ -18,13 +18,13 @@ gallery: [
*Cayey, Puerto Rico 25 de agosto de 2024* *Cayey, Puerto Rico 25 de agosto de 2024*
En una conferencia multitudinaria y con alcance internacional a través de transmisión satelital, el **Dr. José Benjamín Pérez Matos** emitió un mensaje de fuerte contenido geopolítico y espiritual, centrado en la situación crítica en el Medio Oriente y en la persistente crisis que atraviesa Venezuela. En una conferencia multitudinaria y con alcance internacional a través de transmisión satelital, el Dr. José Benjamín Pérez Matos emitió un mensaje de fuerte contenido geopolítico y espiritual, centrado en la situación crítica en el Medio Oriente y en la persistente crisis que atraviesa Venezuela.
Ante miles de asistentes, el **Dr. José Benjamín Pérez Matos** abordó la emergencia de 48 horas declarada en Israel tras el lanzamiento de cientos de cohetes desde el Líbano, un episodio que incrementó la tensión en la región y encendió las alertas a nivel internacional. En su intervención, contextualizó estos hechos dentro de un marco más amplio de interpretación: Ante miles de asistentes, el Dr. José Benjamín Pérez Matos abordó la emergencia de 48 horas declarada en Israel tras el lanzamiento de cientos de cohetes desde el Líbano, un episodio que incrementó la tensión en la región y encendió las alertas a nivel internacional. En su intervención, contextualizó estos hechos dentro de un marco más amplio de interpretación:
**«Para Israel habrá una promesa muy pero que muy grande que está cristalizándose»**. **«Para Israel habrá una promesa muy pero que muy grande que está cristalizándose»**.
Lejos de limitarse a una lectura de crisis, el mensaje enfatizó una perspectiva de proceso en desarrollo, aludiendo a un escenario de transformación que trasciende los acontecimientos inmediatos. En ese sentido, el **Dr. José Benjamín Pérez Matos** señaló que los eventos actuales deben ser observados como parte de un “despertar mundial” vinculado al devenir de Israel. Lejos de limitarse a una lectura de crisis, el mensaje enfatizó una perspectiva de proceso en desarrollo, aludiendo a un escenario de transformación que trasciende los acontecimientos inmediatos. En ese sentido, el Dr. José Benjamín Pérez Matos señaló que los eventos actuales deben ser observados como parte de un “despertar mundial” vinculado al devenir de Israel.
La intervención también dedicó un espacio central a la situación en Venezuela, donde el líder elevó un llamado público por la libertad del país, haciendo referencia a las condiciones que afectan a su población: La intervención también dedicó un espacio central a la situación en Venezuela, donde el líder elevó un llamado público por la libertad del país, haciendo referencia a las condiciones que afectan a su población:
@ -32,6 +32,6 @@ La intervención también dedicó un espacio central a la situación en Venezuel
El mensaje reforzó la idea de que la situación venezolana constituye un punto crítico dentro del panorama regional, destacando la necesidad de un cambio que permita restablecer condiciones de libertad y dignidad para su pueblo. El mensaje reforzó la idea de que la situación venezolana constituye un punto crítico dentro del panorama regional, destacando la necesidad de un cambio que permita restablecer condiciones de libertad y dignidad para su pueblo.
En el tramo final de la conferencia, el **Dr. José Benjamín Pérez Matos** amplió su mensaje hacia América Latina, convocando a una visión de unidad y preparación ante lo que definió como un período de transición. En este contexto, subrayó que, más allá de las dificultades previstas, la fe y la oración se presentan como elementos centrales para afrontar los desafíos venideros. En el tramo final de la conferencia, el Dr. José Benjamín Pérez Matos amplió su mensaje hacia América Latina, convocando a una visión de unidad y preparación ante lo que definió como un período de transición. En este contexto, subrayó que, más allá de las dificultades previstas, la fe y la oración se presentan como elementos centrales para afrontar los desafíos venideros.
El pronunciamiento reafirma una línea de análisis que combina la lectura de los acontecimientos internacionales con una perspectiva de largo alcance, en un escenario global caracterizado por su creciente complejidad e incertidumbre. El pronunciamiento reafirma una línea de análisis que combina la lectura de los acontecimientos internacionales con una perspectiva de largo alcance, en un escenario global caracterizado por su creciente complejidad e incertidumbre.

View File

@ -7,7 +7,7 @@ place: ''
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-26.jpg' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/photo_2026-05-05_12-41-26.jpg'
tags: [Puerto Rico, Israel] tags: [Puerto Rico]
gallery: [ 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', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/photo_2026-05-05_12-41-26.jpg',

View File

@ -19,13 +19,13 @@ gallery: [
_Austin, Texas, Estados Unidos - 29 de junio de 2025_ _Austin, Texas, Estados Unidos - 29 de junio de 2025_
En un anuncio que redefine el alcance de su agenda internacional, el **Dr. José Benjamín Pérez Matos** confirmó este 29 de junio de 2025 su traslado inmediato a Israel, en una misión que se desarrollará **en el epicentro de un escenario de alta tensión** y que incluirá encuentros con líderes políticos, autoridades religiosas y mandos militares. En un anuncio que redefine el alcance de su agenda internacional, el Dr. José Benjamín Pérez Matos confirmó este 29 de junio de 2025 su traslado inmediato a Israel, en una misión que se desarrollará **en el epicentro de un escenario de alta tensión** y que incluirá encuentros con líderes políticos, autoridades religiosas y mandos militares.
La decisión se produce en un contexto de fragilidad en los acuerdos recientes en la región, donde —según advirtió el propio líder— la estabilidad continúa siendo precaria. En ese sentido, afirmó: **“Vuelven y los firman, vuelven y se rompen esos tratados”**, señalando la volatilidad del escenario diplomático en Medio Oriente. La decisión se produce en un contexto de fragilidad en los acuerdos recientes en la región, donde —según advirtió el propio líder— la estabilidad continúa siendo precaria. En ese sentido, afirmó: **“Vuelven y los firman, vuelven y se rompen esos tratados”**, señalando la volatilidad del escenario diplomático en Medio Oriente.
## Presencia directa en zonas afectadas ## Presencia directa en zonas afectadas
El **Dr. José Benjamín Pérez Matos** detalló que su agenda contempla visitas a áreas recientemente impactadas por ataques, donde mantendrá contacto directo con fuerzas de seguridad y autoridades locales. La misión, lejos de limitarse a una instancia protocolaria, apunta a consolidar una presencia activa en el terreno. El Dr. José Benjamín Pérez Matos detalló que su agenda contempla visitas a áreas recientemente impactadas por ataques, donde mantendrá contacto directo con fuerzas de seguridad y autoridades locales. La misión, lejos de limitarse a una instancia protocolaria, apunta a consolidar una presencia activa en el terreno.
En ese marco, sostuvo: **“El ejército nos está esperando también”**, confirmando que su llegada ha sido coordinada con estructuras oficiales, lo que refuerza el carácter estratégico del viaje. En ese marco, sostuvo: **“El ejército nos está esperando también”**, confirmando que su llegada ha sido coordinada con estructuras oficiales, lo que refuerza el carácter estratégico del viaje.
@ -35,13 +35,13 @@ Su presencia en estos espacios responde, según explicó, a la necesidad de acom
Uno de los objetivos centrales de la misión será fortalecer los vínculos entre Israel y el mundo occidental, posicionándose como un canal de comunicación activo en ambos sentidos. Uno de los objetivos centrales de la misión será fortalecer los vínculos entre Israel y el mundo occidental, posicionándose como un canal de comunicación activo en ambos sentidos.
El **Dr. José Benjamín Pérez Matos** adelantó que, durante su estadía, buscará proyectar el mensaje hacia el exterior: **“Desde allá estaremos también hablando hacia acá, hacia Occidente”**, estableciendo un rol de intermediación en la narrativa internacional sobre el conflicto. El Dr. José Benjamín Pérez Matos adelantó que, durante su estadía, buscará proyectar el mensaje hacia el exterior: **“Desde allá estaremos también hablando hacia acá, hacia Occidente”**, estableciendo un rol de intermediación en la narrativa internacional sobre el conflicto.
Esta línea de acción refuerza su estrategia de incidencia, que combina presencia territorial con construcción de discurso en el plano global. Esta línea de acción refuerza su estrategia de incidencia, que combina presencia territorial con construcción de discurso en el plano global.
## Un viaje en condiciones de riesgo ## Un viaje en condiciones de riesgo
El traslado se produce en un contexto donde la población civil israelí continúa enfrentando amenazas que obligan al uso recurrente de refugios y medidas de protección. Frente a los cuestionamientos sobre la seguridad de la misión, el **Dr. José Benjamín Pérez Matos** respondió con una definición categórica. El traslado se produce en un contexto donde la población civil israelí continúa enfrentando amenazas que obligan al uso recurrente de refugios y medidas de protección. Frente a los cuestionamientos sobre la seguridad de la misión, el Dr. José Benjamín Pérez Matos respondió con una definición categórica.
En sus palabras, aseveró: **“Cuando uno es dirigido por el Señor, yo voy a donde Él me manda”**, reafirmando que su decisión no responde únicamente a criterios operativos, sino a una convicción personal sobre el momento que atraviesa la región. En sus palabras, aseveró: **“Cuando uno es dirigido por el Señor, yo voy a donde Él me manda”**, reafirmando que su decisión no responde únicamente a criterios operativos, sino a una convicción personal sobre el momento que atraviesa la región.
@ -49,6 +49,6 @@ En sus palabras, aseveró: **“Cuando uno es dirigido por el Señor, yo voy a
La misión, que se prevé breve pero intensa, se presenta como un paso relevante en la consolidación de su presencia internacional, especialmente en un escenario donde los actores que logran posicionarse en el terreno adquieren mayor capacidad de influencia. La misión, que se prevé breve pero intensa, se presenta como un paso relevante en la consolidación de su presencia internacional, especialmente en un escenario donde los actores que logran posicionarse en el terreno adquieren mayor capacidad de influencia.
Con este anuncio, el **Dr. José Benjamín Pérez Matos** profundiza su estrategia de intervención directa en Medio Oriente, combinando **diplomacia activa, presencia en zona de conflicto y construcción de posicionamiento internacional.** Con este anuncio, el Dr. José Benjamín Pérez Matos profundiza su estrategia de intervención directa en Medio Oriente, combinando **diplomacia activa, presencia en zona de conflicto y construcción de posicionamiento internacional.**
En un contexto de alta incertidumbre, su viaje se perfila como una acción orientada a incidir tanto en el desarrollo de los acontecimientos como en la interpretación global de los mismos. En un contexto de alta incertidumbre, su viaje se perfila como una acción orientada a incidir tanto en el desarrollo de los acontecimientos como en la interpretación global de los mismos.

View File

@ -7,7 +7,7 @@ place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280/comunicado-1.webp'
country: 'PR' country: 'PR'
city: 'Cayey' city: 'Cayey'
tags: [Puerto Rico, Israel, Gaza] tags: [Puerto Rico, Israel]
gallery: [ gallery: [
{ {
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp', image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp',

View File

@ -17,7 +17,7 @@ gallery: [
## Un nuevo hijo para Jacareí: el homenaje al Dr. José Benjamín Pérez Matos ## Un nuevo hijo para Jacareí: el homenaje al Dr. José Benjamín Pérez Matos
_Jacareí, Brasil 29 de agosto de 2025_ Jacareí, Brasil 29 de agosto de 2025
La ciudad de Jacareí, en el estado de São Paulo, vivió una jornada marcada por el simbolismo, el reconocimiento institucional y la cercanía entre autoridades y líderes espirituales, con motivo de la visita del Dr. José Benjamín Pérez Matos, quien fue distinguido como ciudadano jacareiense en el marco de una serie de actividades oficiales.  La ciudad de Jacareí, en el estado de São Paulo, vivió una jornada marcada por el simbolismo, el reconocimiento institucional y la cercanía entre autoridades y líderes espirituales, con motivo de la visita del Dr. José Benjamín Pérez Matos, quien fue distinguido como ciudadano jacareiense en el marco de una serie de actividades oficiales. 
@ -27,9 +27,9 @@ En ese lugar fue recibido por Lucas Torralbo, director de Comercio y Servicios d
Minutos más tarde, con la llegada del alcalde Celso Florêncio, se desarrolló un encuentro en el despacho oficial. En ese ámbito institucional, el Dr. José Benjamín Pérez Matos destacó la responsabilidad de quienes ejercen funciones públicas por elección popular y subrayó la importancia de la guía espiritual en el ejercicio del liderazgo. Minutos más tarde, con la llegada del alcalde Celso Florêncio, se desarrolló un encuentro en el despacho oficial. En ese ámbito institucional, el Dr. José Benjamín Pérez Matos destacó la responsabilidad de quienes ejercen funciones públicas por elección popular y subrayó la importancia de la guía espiritual en el ejercicio del liderazgo.
En ese contexto, expresó: **“Dios los guíe buscando sabiduría de lo alto, como la tuvo Daniel, en ese tiempo del rey Nabucodonosor. Para mí es una bendición poder estar frente a uno de los líderes que en este lugar está ministrando esta posición; por lo cual, le pido a Dios Su bendición sobre usted, para que le dirija en todo. Y gracias por la acogida y esta bienvenida que me han dado. Ya soy jacareiense, así que ya es como si fuera mi casa”**. En ese contexto, expresó: **“Dios los guíe buscando sabiduría de lo alto, como la tuvo Daniel, en ese tiempo del rey Nabucodonosor. para mí es una bendición poder estar frente a uno de los líderes que en este lugar está ministrando esta posición; por lo cual, le pido a Dios Su bendición sobre usted, para que le dirija en todo. y gracias por la acogida y esta bienvenida que me han dado. ya soy jacareiense, así que ya es como si fuera mi casa”**.
Por su parte, el alcalde Celso Florêncio dio la bienvenida al visitante y a su comitiva, destacando el rol de la iglesia como agente de transformación social. En sus palabras, señaló: “Para nosotros es un placer tenerlos aquí con nosotros. Conozco ese gran trabajo dentro de nuestra ciudad… entonces ya eres ciudadano de Jacareí. Siempre las puertas están abiertas para usted y todos los que lo acompañan”. Por su parte, el alcalde Celso Florêncio dio la bienvenida al visitante y a su comitiva, destacando el rol de la iglesia como agente de transformación social. En sus palabras, señaló: “Para nosotros es un placer tenerlos aquí con nosotros. conozco ese gran trabajo dentro de nuestra ciudad… entonces ya eres ciudadano de Jacareí. siempre las puertas están abiertas para usted y todos los que lo acompañan”.
El encuentro concluyó con una oración dirigida por el Dr. José Benjamín Pérez Matos, en la que pidió sabiduría, protección y paz para las autoridades y para la ciudad, con el objetivo de que Jacareí continúe desarrollándose como una comunidad orientada al bien común. El momento finalizó con un gesto de cercanía entre ambos líderes. El encuentro concluyó con una oración dirigida por el Dr. José Benjamín Pérez Matos, en la que pidió sabiduría, protección y paz para las autoridades y para la ciudad, con el objetivo de que Jacareí continúe desarrollándose como una comunidad orientada al bien común. El momento finalizó con un gesto de cercanía entre ambos líderes.
@ -37,13 +37,13 @@ El encuentro concluyó con una oración dirigida por el Dr. José Benjamín Pér
Posteriormente, a las 13:30, la agenda continuó en la Câmara Municipal de Jacareí, sede del poder legislativo local, donde se llevó a cabo el acto de reconocimiento en el auditorio Vereador Djalma DAvila Leal. Posteriormente, a las 13:30, la agenda continuó en la Câmara Municipal de Jacareí, sede del poder legislativo local, donde se llevó a cabo el acto de reconocimiento en el auditorio Vereador Djalma DAvila Leal.
La concejal Maria Amélia, impulsora de la iniciativa, explicó que el reconocimiento fue aprobado por unanimidad y que la entrega simbólica se realizaba en esta instancia, previendo una futura ceremonia formal. En declaraciones, expresó: “Como él venía a Brasil, inmediatamente colocamos esta propuesta para ser votada en casa. Todos los gobernadores aprobaron y hoy estamos aquí para hacer esta entrega simbólica, porque en su próxima visita a Brasil pretendemos hacer esta entrega oficial”. La concejal Maria Amélia, impulsora de la iniciativa, explicó que el reconocimiento fue aprobado por unanimidad y que la entrega simbólica se realizaba en esta instancia, previendo una futura ceremonia formal. En declaraciones, expresó: “Como él venía a Brasil, inmediatamente colocamos esta propuesta para ser votada en casa. todos los gobernadores aprobaron y hoy estamos aquí para hacer esta entrega simbólica, porque en su próxima visita a Brasil pretendemos hacer esta entrega oficial”.
Durante el acto, la concejal ofreció un mensaje de bienvenida en el que incluyó fragmentos en español, como gesto de cercanía hacia el homenajeado. Visiblemente emocionada, afirmó: “Lo preparamos con mucho cariño”, al momento de entregar el título de ciudadano jacareiense. Durante el acto, la concejal ofreció un mensaje de bienvenida en el que incluyó fragmentos en español, como gesto de cercanía hacia el homenajeado. Visiblemente emocionada, afirmó: “Lo preparamos con mucho cariño”, al momento de entregar el título de ciudadano jacareiense.
La ceremonia incluyó además la entrega de obsequios representativos de la ciudad, entre ellos un presente con la inscripción “yo amo a Jacareí” y piezas artesanales con imágenes locales, como una forma de transmitir simbólicamente la identidad cultural del municipio. La ceremonia incluyó además la entrega de obsequios representativos de la ciudad, entre ellos un presente con la inscripción “yo amo a Jacareí” y piezas artesanales con imágenes locales, como una forma de transmitir simbólicamente la identidad cultural del municipio.
En respuesta, el Dr. José Benjamín Pérez Matos expresó su agradecimiento y destacó el significado del reconocimiento recibido. En sus palabras, afirmó: **“Agradezco la hospitalidad, la bienvenida y que me hayan otorgado el título de ciudadano jacareiense. Y como honra lo llevaré, y van a experimentar que un jacareiense esté recorriendo el mundo, poniendo en alto también a Jacareí… o sea, sería también un embajador de Jacareí en el mundo”**. En respuesta, el Dr. José Benjamín Pérez Matos expresó su agradecimiento y destacó el significado del reconocimiento recibido. En sus palabras, afirmó: **“Agradezco la hospitalidad, la bienvenida y que me hayan otorgado el título de ciudadano jacareiense. y como honra lo llevaré, y van a experimentar que un jacareiense esté recorriendo el mundo, poniendo en alto también a Jacareí… o sea, sería también un embajador de Jacareí en el mundo”**.
El acto concluyó con una oración en la que se invocó la bendición sobre la ciudad, sus autoridades y sus habitantes, con una referencia al capítulo 6 del libro de Números, pidiendo discernimiento y guía para quienes tienen la responsabilidad de legislar. El acto concluyó con una oración en la que se invocó la bendición sobre la ciudad, sus autoridades y sus habitantes, con una referencia al capítulo 6 del libro de Números, pidiendo discernimiento y guía para quienes tienen la responsabilidad de legislar.

View File

@ -4,7 +4,7 @@ title: 'Geopolítica y profecía: el Dr. José Benjamín Pérez Matos advierte s
date: 2025-09-14 date: 2025-09-14
slug: 2025-09-14-geopolitica-y-profecia-el-dr-jose-benjamin-perez-matos-advierte-sobre-el-juicio-a-las-naciones-y-proyecta-un-nuevo-escenario-para-america-latina slug: 2025-09-14-geopolitica-y-profecia-el-dr-jose-benjamin-perez-matos-advierte-sobre-el-juicio-a-las-naciones-y-proyecta-un-nuevo-escenario-para-america-latina
tags: [Geopolítica, Israel, Puerto Rico, España, Venezuela, Nicaragua, Cuba] tags: [Geopolítica, Israel, Puerto Rico, España, Venezuela, Nicaragua, Cuba]
country: 'PR' coutry: 'PR'
city: Cayey city: Cayey
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-37.jpg thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-37.jpg
gallery: [ gallery: [

View File

@ -8,11 +8,6 @@ city: Bogotá
country: CO country: CO
tags: [Colombia] tags: [Colombia]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/Condecoracion-JBP-congreso-18-sep-2025_-15-scaled.jpg 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,
}
]
--- ---
## La democracia se vistió de gala: el Congreso de Colombia honra al Dr. José Benjamín Pérez Matos ## La democracia se vistió de gala: el Congreso de Colombia honra al Dr. José Benjamín Pérez Matos
@ -29,24 +24,24 @@ La ceremonia dio inicio con la entonación de los himnos nacionales de Colombia
Entre los asistentes se encontraban familiares del homenajeado, incluyendo a su esposa Sara Meléndez y sus yernos, así como el misionero internacional Miguel Bermúdez Marín junto a su familia. A ellos se sumaron aproximadamente 260 invitados que acompañaron el desarrollo del acto, en una ceremonia cargada de significado institucional y espiritual. Entre los asistentes se encontraban familiares del homenajeado, incluyendo a su esposa Sara Meléndez y sus yernos, así como el misionero internacional Miguel Bermúdez Marín junto a su familia. A ellos se sumaron aproximadamente 260 invitados que acompañaron el desarrollo del acto, en una ceremonia cargada de significado institucional y espiritual.
El primer reconocimiento fue entregado por la senadora María Fernanda Cabal, quien, además de destacar la importancia de la fe, la Biblia y una vida guiada por principios, expresó su admiración personal por la labor del homenajeado. En sus palabras, señaló: “Felicitaciones, pastor. Estoy admirada por su trabajo, su trabajo en la Gran Carpa Catedral. Y seguramente voy a ir un día a Puerto Rico. Admiro su trabajo”. El primer reconocimiento fue entregado por la senadora María Fernanda Cabal, quien, además de destacar la importancia de la fe, la Biblia y una vida guiada por principios, expresó su admiración personal por la labor del homenajeado. En sus palabras, señaló: “felicitaciones, pastor. estoy admirada por su trabajo, su trabajo en la gran carpa catedral. y seguramente voy a ir un día a puerto rico. admiro su trabajo”.
Posteriormente, el representante a la Cámara Jhon Jairo Berrío López tomó la palabra para profundizar en el sentido del reconocimiento, destacando la necesidad de líderes con vocación de servicio en el contexto actual. En su intervención, afirmó que el mundo requiere “Más líderes que traigan luz, que cuiden, escuchen y caminen al lado del pueblo”. Posteriormente, el representante a la Cámara Jhon Jairo Berrío López tomó la palabra para profundizar en el sentido del reconocimiento, destacando la necesidad de líderes con vocación de servicio en el contexto actual. En su intervención, afirmó que el mundo requiere “más líderes que traigan luz, que cuiden, escuchen y caminen al lado del pueblo”.
Asimismo, subrayó el alcance internacional de la labor del Dr. José Benjamín Pérez Matos, destacando que “Su labor trasciende fronteras: ha predicado y realizado muchos eventos importantes de fe en distintos países; no solamente de Latinoamérica, sino también del mundo. Entre esos países está Colombia”. Asimismo, subrayó el alcance internacional de la labor del Dr. José Benjamín Pérez Matos, destacando que “su labor trasciende fronteras: ha predicado y realizado muchos eventos importantes de fe en distintos países; no solamente de latinoamérica, sino también del mundo. entre esos países está colombia”.
En un tono personal, el legislador agregó: “Hoy, al entregar esta condecoración, lo hago no solo como congresista, sino como ciudadano que reconoce que en personas como usted, doctor José Benjamín, se ve lo mejor de la fe hecha acción. Personas que no solo prometen, sino que cumplen; que no solo hablan, sino que aman; que no solo reciben aplausos momentáneos, sino que siembran para generaciones”. En un tono personal, el legislador agregó: “hoy, al entregar esta condecoración, lo hago no solo como congresista, sino como ciudadano que reconoce que en personas como usted, doctor josé benjamín, se ve lo mejor de la fe hecha acción. personas que no solo prometen, sino que cumplen; que no solo hablan, sino que aman; que no solo reciben aplausos momentáneos, sino que siembran para generaciones”.
El Capitolio Nacional, habitualmente escenario de debates políticos y decisiones de alto impacto institucional, se transformó en esta ocasión en un espacio de reconocimiento y gratitud. En ese contexto, la presentadora Yarith Barbosa, junto a su familia, realizó un gesto simbólico al imponer la insignia de la bandera de Colombia al homenajeado, destacando que el Dr. José Benjamín Pérez Matos “Ha llevado un mensaje de unión y esperanza que ha cruzado fronteras, fortaleciendo lazos y construyendo puentes entre naciones. Su liderazgo ha inspirado a miles de personas”. El Capitolio Nacional, habitualmente escenario de debates políticos y decisiones de alto impacto institucional, se transformó en esta ocasión en un espacio de reconocimiento y gratitud. En ese contexto, la presentadora Yarith Barbosa, junto a su familia, realizó un gesto simbólico al imponer la insignia de la bandera de Colombia al homenajeado, destacando que el Dr. José Benjamín Pérez Matos “ha llevado un mensaje de unión y esperanza que ha cruzado fronteras, fortaleciendo lazos y construyendo puentes entre naciones. su liderazgo ha inspirado a miles de personas”.
Llegado el momento central del acto, el Dr. José Benjamín Pérez Matos tomó la palabra para expresar su agradecimiento. Con un tono pausado y reflexivo, dirigió un mensaje que resonó en el recinto, orientado al fortalecimiento espiritual y social de la nación. Llegado el momento central del acto, el Dr. José Benjamín Pérez Matos tomó la palabra para expresar su agradecimiento. Con un tono pausado y reflexivo, dirigió un mensaje que resonó en el recinto, orientado al fortalecimiento espiritual y social de la nación.
En su intervención, expresó: **Reitero mi deseo y propósito: de que la luz verdadera, que alumbra el alma y el entendimiento de todo ser humano, impacte a cada colombiano para que siga edificándose a sí mismo, sea de bendición para su familia; y así poder construir una mejor sociedad, un mejor país cada día”**. En su intervención, expresó: **reitero mi deseo y propósito: de que la luz verdadera, que alumbra el alma y el entendimiento de todo ser humano, impacten a cada colombiano para que siga edificándose a sí mismo, sea de bendición para su familia; y así poder construir una mejor sociedad, un mejor país cada día”**.
Asimismo, añadió un mensaje de bendición y reflexión dirigido al país: **Que Dios bendiga a la bella Colombia; y que Dios dirija a todo el pueblo a elegir el mejor líder, para que pueda llevar a la bella Colombia a recibir las bendiciones espirituales y materiales también”**. Asimismo, añadió un mensaje de bendición y reflexión dirigido al país: **que Dios bendiga a la bella colombia; y que dios dirija a todo el pueblo a elegir el mejor líder, para que pueda llevar a la bella colombia a recibir las bendiciones espirituales y materiales también”**.
La ceremonia, que tuvo una duración aproximada de 50 minutos, fue seguida tanto por los asistentes presentes como por miles de espectadores a través de las plataformas de transmisión del Congreso y de La Gran Carpa Catedral, consolidando su alcance más allá del recinto físico. La ceremonia, que tuvo una duración aproximada de 50 minutos, fue seguida tanto por los asistentes presentes como por miles de espectadores a través de las plataformas de transmisión del Congreso y de La Gran Carpa Catedral, consolidando su alcance más allá del recinto físico.
El cierre estuvo a cargo del jefe de Protocolo, Plinio Enrique Ordóñez Villamizar, quien ofreció una reflexión final sobre el significado de este tipo de reconocimientos. En sus palabras, destacó que las condecoraciones “Se deben hacer en vida (porque es en vida): tanto nuestro homenajeado siente el amor de la gente, de su familia y de quienes lo rodean…, en el entendido muy sencillo de que se recibió esa condecoración es por algo; y ese algo es que se están haciendo las cosas bien”. El cierre estuvo a cargo del jefe de Protocolo, Plinio Enrique Ordóñez Villamizar, quien ofreció una reflexión final sobre el significado de este tipo de reconocimientos. En sus palabras, destacó que las condecoraciones “se deben hacer en vida (porque es en vida): tanto nuestro homenajeado siente el amor de la gente, de su familia y de quienes lo rodean…, en el entendido muy sencillo de que se recibió esa condecoración es por algo; y ese algo es que se están haciendo las cosas bien”.
Entre aplausos y en un ambiente de solemnidad institucional, el Congreso de la República de Colombia dejó constancia de un reconocimiento que trasciende lo simbólico, reafirmando que la fe, cuando se traduce en acción, servicio y compromiso con los valores, ocupa un lugar relevante en la vida pública y en la memoria institucional de la nación. Entre aplausos y en un ambiente de solemnidad institucional, el Congreso de la República de Colombia dejó constancia de un reconocimiento que trasciende lo simbólico, reafirmando que la fe, cuando se traduce en acción, servicio y compromiso con los valores, ocupa un lugar relevante en la vida pública y en la memoria institucional de la nación.

View File

@ -4,7 +4,7 @@ title: '“Sentencia global”: el Dr. José Benjamín Pérez Matos advierte sob
date: 2025-09-19 date: 2025-09-19
slug: 2025-09-19-sentencia-global-el-dr-jose-benjamin-perez-matos-advierte-sobre-consecuencias-para-potencias-occidentales-por-su-postura-frente-a-israel slug: 2025-09-19-sentencia-global-el-dr-jose-benjamin-perez-matos-advierte-sobre-consecuencias-para-potencias-occidentales-por-su-postura-frente-a-israel
city: Palmira city: Palmira
state: Valle del Cauca State: Valle del Cauca
country: CO country: CO
tags: [Colombia, Israel] tags: [Colombia, Israel]
thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-51.jpg thumbnail: https://ik.imagekit.io/crpy/tr:w-900/photo_2026-05-06_11-36-51.jpg
@ -29,7 +29,7 @@ En una declaración que combina análisis geopolítico y proyección de alcance
El pronunciamiento, emitido el 19 de septiembre de 2025, marca un punto de inflexión en su línea discursiva: lo que anteriormente se planteaba como advertencia general, ahora es presentado como una **“sentencia” dirigida a países específicos.** El pronunciamiento, emitido el 19 de septiembre de 2025, marca un punto de inflexión en su línea discursiva: lo que anteriormente se planteaba como advertencia general, ahora es presentado como una **“sentencia” dirigida a países específicos.**
## Señalamientos directos a potencias occidentales Señalamientos directos a potencias occidentales
En su intervención, el Dr. José Benjamín Pérez Matos identificó de manera explícita a varios Estados que, según su análisis bíblico coyuntural, se verían actualmente afectados por su posicionamiento frente a Israel. En su intervención, el Dr. José Benjamín Pérez Matos identificó de manera explícita a varios Estados que, según su análisis bíblico coyuntural, se verían actualmente afectados por su posicionamiento frente a Israel.

View File

@ -24,7 +24,7 @@ En un contexto internacional marcado por tensiones crecientes entre las principa
El diagnóstico expuesto se inscribe en una lectura más amplia: el sistema internacional estaría atravesando un proceso de reconfiguración estructural, impulsado por la disputa entre actores tradicionales y nuevos polos de poder. El diagnóstico expuesto se inscribe en una lectura más amplia: el sistema internacional estaría atravesando un proceso de reconfiguración estructural, impulsado por la disputa entre actores tradicionales y nuevos polos de poder.
## Choque de bloques: Rusia y Estados Unidos ## Choque de bloques: Rusia y Estados Unidos
Desde Monterrey, el Dr. José Benjamín Pérez Matos delineó un escenario de confrontación entre grandes potencias, donde el eje principal se ubica en la rivalidad entre Rusia y Estados Unidos. Según su interpretación, los conflictos actuales no responden a dinámicas aisladas, sino a una lógica de competencia global que se manifiesta en distintos territorios. Desde la capital mexicana, el Dr. José Benjamín Pérez Matos delineó un escenario de confrontación entre grandes potencias, donde el eje principal se ubica en la rivalidad entre Rusia y Estados Unidos. Según su interpretación, los conflictos actuales no responden a dinámicas aisladas, sino a una lógica de competencia global que se manifiesta en distintos territorios.
En ese marco, afirmó: **“Cuando uno ve todo eso, y todas las Escrituras, y todo lo que está pasando en el mundo siendo cumplido; y ve todo lo que está pasando con Estados Unidos; ve el reino del rey del norte (Rusia) cómo está también; y esas guerras por aquí y guerras por allá…”**, estableciendo un vínculo directo entre los movimientos geopolíticos contemporáneos y una lectura integral del escenario internacional. En ese marco, afirmó: **“Cuando uno ve todo eso, y todas las Escrituras, y todo lo que está pasando en el mundo siendo cumplido; y ve todo lo que está pasando con Estados Unidos; ve el reino del rey del norte (Rusia) cómo está también; y esas guerras por aquí y guerras por allá…”**, estableciendo un vínculo directo entre los movimientos geopolíticos contemporáneos y una lectura integral del escenario internacional.
@ -48,7 +48,7 @@ Este enfoque vincula directamente la dinámica geopolítica con una lógica de c
## Un continente bajo presión ## Un continente bajo presión
El análisis presentado en Monterrey deja en claro que América Latina no se encuentra al margen de las tensiones globales, sino que forma parte activa del tablero estratégico. En este contexto, Venezuela emerge como un punto de inflexión que podría redefinir el equilibrio regional. El análisis presentado en Ciudad de México deja en claro que América Latina no se encuentra al margen de las tensiones globales, sino que forma parte activa del tablero estratégico. En este contexto, Venezuela emerge como un punto de inflexión que podría redefinir el equilibrio regional.
La combinación de conflicto interno, presión internacional y disputa entre potencias posiciona al país como un escenario clave dentro del nuevo orden en gestación. La combinación de conflicto interno, presión internacional y disputa entre potencias posiciona al país como un escenario clave dentro del nuevo orden en gestación.

View File

@ -24,7 +24,7 @@ gallery: [
*Lima, Perú — 18 de noviembre de 2025* *Lima, Perú — 18 de noviembre de 2025*
En una disertación desarrollada en Shangrila, Puente Piedra, el Dr. José Benjamín Pérez Matos presentó un análisis sobre la evolución del sistema político internacional, señalando que el modelo vigente atraviesa una etapa de transformación y que las decisiones actuales de los Gobiernos tendrán impacto directo en su posicionamiento futuro. LIMA, PERÚ — En una disertación desarrollada en Shangrila, Puente Piedra, el Dr. José Benjamín Pérez Matos presentó un análisis sobre la evolución del sistema político internacional, señalando que el modelo vigente atraviesa una etapa de transformación y que las decisiones actuales de los Gobiernos tendrán impacto directo en su posicionamiento futuro.
Durante su intervención, el presidente del Centro del Reino de Paz y Justicia planteó que el orden global se encuentra en un proceso de transición estructural, en el que determinadas ciudades y actores adquieren una centralidad creciente. En ese contexto, afirmó: **“Israel será la capital (Jerusalén, Israel) del planeta Tierra completo”**, subrayando la relevancia estratégica de Jerusalén dentro de su visión del escenario internacional. Durante su intervención, el presidente del Centro del Reino de Paz y Justicia planteó que el orden global se encuentra en un proceso de transición estructural, en el que determinadas ciudades y actores adquieren una centralidad creciente. En ese contexto, afirmó: **“Israel será la capital (Jerusalén, Israel) del planeta Tierra completo”**, subrayando la relevancia estratégica de Jerusalén dentro de su visión del escenario internacional.

View File

@ -3,9 +3,9 @@ locale: es
title: 'Escalada en Medio Oriente: advierten sobre un conflicto de gran escala tras la "Operación León Rugiente" contra Irán' title: 'Escalada en Medio Oriente: advierten sobre un conflicto de gran escala tras la "Operación León Rugiente" contra Irán'
slug: 2026-02-28-escalada-en-medio-oriente-advierten-sobre-un-conflicto-de-gran-escala-tras-la-operacion-leon-rugiente-contra-iran slug: 2026-02-28-escalada-en-medio-oriente-advierten-sobre-un-conflicto-de-gran-escala-tras-la-operacion-leon-rugiente-contra-iran
date: 2026-02-28 date: 2026-02-28
city: Buenos Aires city: Cayey
tags: [Argentina, Irán, Israel] tags: [Puerto Rico, Irán, Israel]
country: AR country: PR
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp' thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred/comunicado-1.webp'
gallery: [ gallery: [
{ {
@ -15,9 +15,9 @@ gallery: [
--- ---
# Escalada en Medio Oriente: advierten sobre un conflicto de gran escala tras la "Operación León Rugiente" contra Irán # Escalada en Medio Oriente: advierten sobre un conflicto de gran escala tras la "Operación León Rugiente" contra Irán
*Buenos Aires, Argentina 28 de febrero de 2026* *Cayey, Puerto Rico 28 de febrero de 2026*
***Desde Argentina, un análisis alerta sobre ataques coordinados, represalias regionales y el riesgo de una expansión militar de alcance global*** ***Desde Puerto Rico, un análisis alerta sobre ataques coordinados, represalias regionales y el riesgo de una expansión militar de alcance global***
En un contexto de máxima tensión internacional, el Dr. José Benjamín Pérez Matos emitió una advertencia sobre la rápida escalada del conflicto en Medio Oriente tras el inicio de una ofensiva militar de gran envergadura denominada “Operación León Rugiente”. Según el análisis presentado, en las últimas horas se habría producido una intensificación significativa de las hostilidades, con participación directa de fuerzas de Israel y Estados Unidos en ataques contra objetivos estratégicos en territorio iraní. En un contexto de máxima tensión internacional, el Dr. José Benjamín Pérez Matos emitió una advertencia sobre la rápida escalada del conflicto en Medio Oriente tras el inicio de una ofensiva militar de gran envergadura denominada “Operación León Rugiente”. Según el análisis presentado, en las últimas horas se habría producido una intensificación significativa de las hostilidades, con participación directa de fuerzas de Israel y Estados Unidos en ataques contra objetivos estratégicos en territorio iraní.

View File

@ -21,7 +21,7 @@ En mi calidad de líder y en representación de quienes defendemos la paz y la l
Condeno, en los términos más enérgicos, la agresión directa de **Irán**, cuyo régimen continúa financiando y ejecutando actos de terrorismo destinados a desestabilizar la región y masacrar a civiles inocentes. Este ataque no es solo un acto de guerra, sino un crimen contra la humanidad que el mundo libre no puede ni debe ignorar. Exijo que los responsables intelectuales y materiales rindan cuentas ante la justicia internacional. Condeno, en los términos más enérgicos, la agresión directa de **Irán**, cuyo régimen continúa financiando y ejecutando actos de terrorismo destinados a desestabilizar la región y masacrar a civiles inocentes. Este ataque no es solo un acto de guerra, sino un crimen contra la humanidad que el mundo libre no puede ni debe ignorar. Exijo que los responsables intelectuales y materiales rindan cuentas ante la justicia internacional.
Expreso mi más profundo respeto y respaldo al **Alcalde Yair Maayan**. En momentos de crisis, el carácter de un líder se pone a prueba, y su pronta respuesta para proteger a los ciudadanos y coordinar los servicios de emergencia ha sido ejemplar. Su fortaleza es hoy el pilar de su ciudad; mantenga la firmeza, pues su labor es el escudo de su gente. Expreso mi más profundo respeto y respaldo al **Alcalde Yairz` Maayan**. En momentos de crisis, el carácter de un líder se pone a prueba, y su pronta respuesta para proteger a los ciudadanos y coordinar los servicios de emergencia ha sido ejemplar. Su fortaleza es hoy el pilar de su ciudad; mantenga la firmeza, pues su labor es el escudo de su gente.
A los habitantes de Arad: su resiliencia ante el fuego es una lección de coraje para todos nosotros. Aunque el odio intente sembrar el miedo en sus calles, la unidad de su comunidad es una fuerza que ningún misil puede quebrar. Mis pensamientos y oraciones están con los heridos y sus familias, deseándoles una recuperación pronta y completa. A los habitantes de Arad: su resiliencia ante el fuego es una lección de coraje para todos nosotros. Aunque el odio intente sembrar el miedo en sus calles, la unidad de su comunidad es una fuerza que ningún misil puede quebrar. Mis pensamientos y oraciones están con los heridos y sus familias, deseándoles una recuperación pronta y completa.

View File

@ -18,7 +18,7 @@ gallery: [
# Dr. José Benjamín Pérez Matos destaca el liderazgo de Nayib Bukele en un acto en San Salvador # Dr. José Benjamín Pérez Matos destaca el liderazgo de Nayib Bukele en un acto en San Salvador
## El líder internacional valoró el modelo de gobernanza salvadoreño y su proyección regional durante una actividad realizada en el *Palacio de los Deportes*. ## O líder internacional valorizou o modelo de governança salvadorenho e sua projeção regional durante uma atividade realizada no *Palácio de los Deportes*.
*San Salvador, El Salvador 26 de abril de 2026* *San Salvador, El Salvador 26 de abril de 2026*

View File

@ -1,110 +0,0 @@
---
locale: es
title: 'Jerusalén Rinde Homenaje al Dr. José Benjamín Pérez Matos Durante Las Celebraciones Oficiales Del Día De Jerusalén'
date: 2026-05-14
order: 2
city: 'Jerusalén'
country: 'IL'
slug: 2026-05-14-jerusalen-rinde-homenaje-al-dr-jose-benjamin-perez-matos-durante-las-celebraciones-oficiales-del-dia-de-jerusalen
tags: [Israel, Congreso]
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,q-100/photo_2026-06-10_15-54-29.jpg'
gallery: [
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-54-29.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/2026-05-14- Congresso de Rabinos dia 1-08836.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC04859.webp',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/2026-05-14- Congresso de Rabinos dia 1-09000.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-55-00.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC05090.webp',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-54-53.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC04596.webp',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC04991.webp',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-55-02.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-54-48.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-54-45.jpg',
},
# {
# image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-54-50.jpg',
# },
# {
# image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC04765.webp',
# },
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-55-08.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/photo_2026-06-10_15-55-05.jpg',
},
{
image: 'https://ik.imagekit.io/crpy/tr:w-1280,h-900,cm-pad_resize,bg-blurred,q-70/DSC04616.webp',
},
]
---
# Jerusalén Rinde Homenaje al Dr. José Benjamín Pérez Matos Durante Las Celebraciones Oficiales Del Día De Jerusalén
_**Las máximas autoridades rabínicas de Israel destacaron el trabajo internacional desarrollado por el presidente del Centro del Reino de Paz y Justicia en favor de Jerusalén, Israel, y el fortalecimiento de los vínculos con América Latina.**_
*Jerusalén, Israel - 14 de mayo de 2026*
En el marco de las celebraciones oficiales por el Día de Jerusalén (Yom Yerushalayim), la festividad nacional que conmemora la reunificación de la ciudad y la recuperación de la Ciudad Vieja tras la Guerra de los Seis Días de 1967, las más altas autoridades espirituales y civiles del Estado de Israel participaron en un emotivo encuentro dedicado a reconocer el trabajo de quienes contribuyen al fortalecimiento internacional y espiritual de Jerusalén, la capital eterna del pueblo judío.
La actividad estuvo marcada por un clima de profunda solemnidad, fraternidad y reconocimiento institucional. Entre los asistentes se encontraban el gran rabino de Israel **David Yosef**, el gran rabino **David Lau**, integrantes del Gran Tribunal Rabínico, presidentes de tribunales, jueces rabínicos, rabinos de distintas ciudades israelíes, ministros, miembros de la Knéset y destacadas personalidades de la vida pública nacional.
El encuentro tuvo como uno de sus principales protagonistas al presidente y fundador del Centro del Reino de Paz y Justicia, **Dr. José Benjamín Pérez Matos**, cuya labor internacional en favor de Israel y de Jerusalén fue destacada por distintas autoridades presentes durante la celebración.
## “Mi casa es su casa”
Uno de los momentos más emotivos de la jornada tuvo lugar cuando el gran rabino **David Lau** dirigió unas palabras especialmente dedicadas al **Dr. José Benjamín Pérez Matos**, en las que expresó públicamente su reconocimiento y afecto.
_«Distinguidos rabinos, distinguido rabino Moshé Bakshi Dorón, quien continúa la luz de su padre; y distinguido Dr. José Benjamín Pérez, a quien deseo decirle una sola frase. No sé hablar español, pero sí conozco una frase que quiero decirle: “Mi casa es su casa”. Su hogar es mi hogar. Jerusalén es el hogar de todo el pueblo judío. Así pues, Jerusalén es nuestro hogar, el hogar de todos nosotros. Y usted tiene el mérito de despertarnos y alegrarnos en el día de la festividad de Jerusalén»_.
Las palabras del gran rabino fueron recibidas con especial emoción por los presentes y constituyeron uno de los reconocimientos públicos más significativos realizados durante la celebración.
Por su parte, el gran rabino de Israel **David Yosef** impartió una bendición especial a todos los asistentes en una fecha de profundo significado espiritual para Jerusalén y para el pueblo de Israel.
## Reconocimiento al trabajo internacional en favor de Jerusalén
Durante el encuentro también tomó la palabra el rabino **Moshé Bakshi Dorón**, quien recurrió a las Sagradas Escrituras para reflexionar sobre la importancia del liderazgo comunitario y la responsabilidad de quienes trabajan por el fortalecimiento de Jerusalén y del Estado de Israel.
Dirigiéndose directamente al **Dr. José Benjamín Pérez Matos**, destacó el impacto geopolítico, social e internacional de las acciones que viene desarrollando en favor de Israel, e hizo especial énfasis en uno de los proyectos más importantes impulsados por el Centro del Reino de Paz y Justicia: la promoción del traslado de embajadas extranjeras a Jerusalén.
Según fue señalado durante la ceremonia, este esfuerzo constituye una de las iniciativas internacionales más relevantes desarrolladas por la institución para fortalecer el reconocimiento de Jerusalén como capital del Estado de Israel.
Asimismo, el gran rabino de Tel Aviv, **Zevadia Cohen**, invitó a los presentes a reflexionar sobre la santidad de Jerusalén y sobre el significado espiritual de una ciudad que, según expresó, fue escogida por Dios entre las naciones.
## Un compromiso renovado con Israel y con Jerusalén
El cierre del encuentro estuvo a cargo del propio **Dr. José Benjamín Pérez Matos**, quien agradeció las expresiones de afecto y reconocimiento recibidas durante la jornada.
Ante un auditorio integrado por algunas de las más importantes autoridades religiosas y públicas de Israel, reafirmó su compromiso con el Estado de Israel y con la ciudad de Jerusalén en una fecha de enorme significado histórico y espiritual.
Durante su intervención, aseguró que continuará fortaleciendo los puentes diplomáticos e institucionales construidos durante años de trabajo internacional, con especial atención a América Latina y el Caribe, promoviendo iniciativas destinadas a ampliar el reconocimiento de Jerusalén y a fortalecer los vínculos entre Israel y las naciones de la región.
Asimismo, reiteró su apoyo a los proyectos orientados al traslado de representaciones diplomáticas hacia Jerusalén, ciudad que definió como la capital eterna del Reino venidero.
La celebración del Día de Jerusalén constituyó no sólo una conmemoración histórica de la reunificación de la ciudad, sino también una oportunidad para reconocer a quienes trabajan activamente por fortalecer su presencia internacional y su significado espiritual para millones de personas alrededor del mundo.
La participación y el reconocimiento otorgados al **Dr. José Benjamín Pérez Matos** representan una nueva muestra del prestigio y la valoración que el trabajo desarrollado por el Centro del Reino de Paz y Justicia ha alcanzado en Israel, particularmente en ámbitos vinculados al liderazgo religioso, la diplomacia pública y el fortalecimiento de las relaciones entre Israel y América Latina.

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