{"id":339,"date":"2026-04-16T04:17:58","date_gmt":"2026-04-16T04:17:58","guid":{"rendered":"https:\/\/proptrustverified.com\/?page_id=339"},"modified":"2026-08-07T08:23:06","modified_gmt":"2026-08-07T08:23:06","slug":"Verify-Report","status":"publish","type":"page","link":"https:\/\/proptrustverified.com\/en\/Verify-Report\/","title":{"rendered":"Verify Report"},"content":{"rendered":"<!DOCTYPE html>\n<?xml encoding=\"UTF-8\"?><html lang=\"es\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Verify Report | PropTrust VerifiedTM<\/title>\n  <meta name=\"description\" content=\"Verifica la autenticidad de un informe de verificaci&oacute;n PropTrust Verified. Consulta hash blockchain, fecha de verificaci&oacute;n y estado del activo.\">\n  \n  <!-- Google Fonts -->\n  <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n  <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n  <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&amp;family=Montserrat:wght@400;500;600;700;800&amp;display=swap\" rel=\"stylesheet\">\n  \n  <style>\n    \/* ========================================\n       VARIABLES - TEMA NEGRO Y DORADO\n       ======================================== *\/\n    :root {\n      --pt-black: #0A0A0A;\n      --pt-black-dark: #000000;\n      --pt-black-light: #1A1A1A;\n      --pt-black-lighter: #2C2C2C;\n      \n      --pt-gold: #D4AF37;\n      --pt-gold-dark: #B8860B;\n      --pt-gold-light: #F4E5B3;\n      --pt-gold-gradient: linear-gradient(135deg, #D4AF37, #F4E5B3, #B8860B);\n      \n      --pt-white: #FFFFFF;\n      --pt-gray-100: #E0E0E0;\n      --pt-gray-200: #B0B0B0;\n      --pt-gray-300: #808080;\n      --pt-gray-400: #505050;\n      \n      --pt-success: #2ECC71;\n      --pt-warning: #F39C12;\n      --pt-danger: #E74C3C;\n      \n      --font-primary: 'Inter', sans-serif;\n      --font-secondary: 'Montserrat', sans-serif;\n      \n      --container-max: 800px;\n      --transition-fast: 150ms ease;\n      --transition-normal: 300ms ease;\n    }\n    \n    * { margin: 0; padding: 0; box-sizing: border-box; }\n    \n    body {\n      font-family: var(--font-primary);\n      line-height: 1.6;\n      color: var(--pt-white);\n      background: var(--pt-black);\n      min-height: 100vh;\n    }\n    \n    a { color: var(--pt-gold); text-decoration: none; transition: color var(--transition-fast); }\n    a:hover { color: var(--pt-gold-light); }\n    \n    .pt-container {\n      max-width: var(--container-max);\n      margin: 0 auto;\n      padding: 20px;\n    }\n    \n    @media (min-width: 768px) { .pt-container { padding: 32px; } }\n    \n    \/* ========================================\n       HEADER\n       ======================================== *\/\n    .pt-header {\n      background: linear-gradient(135deg, var(--pt-black), var(--pt-black-dark));\n      padding: 24px 0;\n      border-bottom: 1px solid var(--pt-gold);\n      text-align: center;\n    }\n    \n    .pt-logo {\n      font-family: var(--font-secondary);\n      font-size: 24px;\n      font-weight: 800;\n      background: var(--pt-gold-gradient);\n      -webkit-background-clip: text;\n      -webkit-text-fill-color: transparent;\n      background-clip: text;\n      margin-bottom: 8px;\n    }\n    \n    .pt-logo-subtitle {\n      font-size: 14px;\n      color: var(--pt-gray-300);\n    }\n    \n    \/* ========================================\n       HERO - VERIFICACI&Oacute;N\n       ======================================== *\/\n    .pt-verify-hero {\n      padding: 60px 0 40px;\n      text-align: center;\n    }\n    \n    .pt-verify-title {\n      font-family: var(--font-secondary);\n      font-size: 28px;\n      font-weight: 700;\n      margin-bottom: 16px;\n      background: var(--pt-gold-gradient);\n      -webkit-background-clip: text;\n      -webkit-text-fill-color: transparent;\n      background-clip: text;\n    }\n    \n    .pt-verify-subtitle {\n      font-size: 16px;\n      color: var(--pt-gray-200);\n      margin-bottom: 32px;\n      max-width: 600px;\n      margin-left: auto;\n      margin-right: auto;\n    }\n    \n    \/* ========================================\n       FORMULARIO DE B&Uacute;SQUEDA\n       ======================================== *\/\n    .pt-search-form {\n      background: var(--pt-black-lighter);\n      border: 1px solid var(--pt-black-light);\n      border-radius: 12px;\n      padding: 24px;\n      margin-bottom: 40px;\n      border-left: 3px solid var(--pt-gold);\n    }\n    \n    .pt-search-form label {\n      display: block;\n      font-weight: 600;\n      margin-bottom: 8px;\n      color: var(--pt-white);\n    }\n    \n    .pt-search-form input {\n      width: 100%;\n      padding: 14px 16px;\n      background: var(--pt-black);\n      border: 1px solid var(--pt-black-light);\n      border-radius: 8px;\n      color: var(--pt-white);\n      font-size: 15px;\n      margin-bottom: 16px;\n      font-family: var(--font-primary);\n    }\n    \n    .pt-search-form input:focus {\n      outline: none;\n      border-color: var(--pt-gold);\n    }\n    \n    .pt-search-form input::placeholder {\n      color: var(--pt-gray-400);\n    }\n    \n    .pt-search-btn {\n      background: var(--pt-gold-gradient);\n      color: var(--pt-black);\n      border: none;\n      padding: 14px 32px;\n      font-family: var(--font-secondary);\n      font-weight: 700;\n      font-size: 15px;\n      border-radius: 8px;\n      cursor: pointer;\n      transition: all var(--transition-fast);\n      width: 100%;\n    }\n    \n    .pt-search-btn:hover {\n      transform: translateY(-2px);\n      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);\n    }\n    \n    .pt-search-hint {\n      font-size: 13px;\n      color: var(--pt-gray-400);\n      margin-top: 12px;\n      text-align: left;\n    }\n    \n    .pt-search-hint code {\n      background: var(--pt-black);\n      padding: 2px 6px;\n      border-radius: 4px;\n      font-family: monospace;\n      color: var(--pt-gold-light);\n    }\n    \n    \/* ========================================\n       RESULTADO DE VERIFICACI&Oacute;N\n       ======================================== *\/\n    .pt-verify-result {\n      display: none;\n      background: var(--pt-black-lighter);\n      border: 1px solid var(--pt-black-light);\n      border-radius: 12px;\n      padding: 32px;\n      margin-bottom: 40px;\n      animation: ptFadeIn 0.3s ease;\n    }\n    \n    .pt-verify-result.active { display: block; }\n    \n    @keyframes ptFadeIn {\n      from { opacity: 0; transform: translateY(10px); }\n      to { opacity: 1; transform: translateY(0); }\n    }\n    \n    .pt-verify-status {\n      display: flex;\n      align-items: center;\n      gap: 12px;\n      padding: 16px;\n      border-radius: 8px;\n      margin-bottom: 24px;\n    }\n    \n    .pt-verify-status.verified {\n      background: rgba(46, 204, 113, 0.1);\n      border: 1px solid var(--pt-success);\n    }\n    \n    .pt-verify-status.invalid {\n      background: rgba(231, 76, 60, 0.1);\n      border: 1px solid var(--pt-danger);\n    }\n    \n    .pt-status-icon {\n      font-size: 24px;\n      font-weight: 700;\n    }\n    \n    .pt-verify-status.verified .pt-status-icon { color: var(--pt-success); }\n    .pt-verify-status.invalid .pt-status-icon { color: var(--pt-danger); }\n    \n    .pt-verify-status h3 {\n      font-size: 18px;\n      margin-bottom: 4px;\n    }\n    \n    .pt-verify-status p {\n      font-size: 14px;\n      color: var(--pt-gray-200);\n    }\n    \n    .pt-verify-details {\n      display: grid;\n      gap: 16px;\n    }\n    \n    .pt-detail-row {\n      display: flex;\n      justify-content: space-between;\n      align-items: flex-start;\n      padding: 12px 0;\n      border-bottom: 1px solid var(--pt-black-light);\n    }\n    \n    .pt-detail-row:last-child { border-bottom: none; }\n    \n    .pt-detail-label {\n      font-weight: 600;\n      color: var(--pt-gray-300);\n      font-size: 14px;\n      flex: 0 0 40%;\n    }\n    \n    .pt-detail-value {\n      color: var(--pt-white);\n      font-size: 15px;\n      flex: 1;\n      text-align: right;\n    }\n    \n    .pt-detail-value.hash {\n      font-family: monospace;\n      font-size: 12px;\n      word-break: break-all;\n      background: var(--pt-black);\n      padding: 8px 12px;\n      border-radius: 6px;\n      color: var(--pt-gold-light);\n    }\n    \n    .pt-badge-preview {\n      background: var(--pt-black);\n      border: 2px solid var(--pt-gold);\n      border-radius: 8px;\n      padding: 16px;\n      text-align: center;\n      margin: 24px 0;\n    }\n    \n    .pt-badge-preview img,\n    .pt-badge-preview svg {\n      max-width: 100%;\n      height: auto;\n    }\n    \n    .pt-badge-caption {\n      font-size: 12px;\n      color: var(--pt-gray-400);\n      margin-top: 8px;\n    }\n    \n    \/* ========================================\n       SECCI&Oacute;N: &iquest;QU&Eacute; SIGNIFICA ESTO?\n       ======================================== *\/\n    .pt-explain-section {\n      background: var(--pt-black-light);\n      border-radius: 12px;\n      padding: 24px;\n      margin-bottom: 40px;\n    }\n    \n    .pt-explain-section h3 {\n      font-size: 18px;\n      margin-bottom: 16px;\n      color: var(--pt-white);\n    }\n    \n    .pt-explain-list {\n      list-style: none;\n    }\n    \n    .pt-explain-list li {\n      padding: 8px 0;\n      color: var(--pt-gray-200);\n      font-size: 14px;\n      padding-left: 24px;\n      position: relative;\n    }\n    \n    .pt-explain-list li:before {\n      content: \"&#10003;\";\n      position: absolute;\n      left: 0;\n      color: var(--pt-gold);\n      font-weight: 700;\n    }\n    \n    \/* ========================================\n       CTA SECTION\n       ======================================== *\/\n    .pt-cta-section {\n      text-align: center;\n      padding: 40px 0;\n      background: linear-gradient(135deg, var(--pt-black), var(--pt-black-light));\n      border-radius: 12px;\n      border: 1px solid var(--pt-gold);\n    }\n    \n    .pt-cta-title {\n      font-size: 20px;\n      margin-bottom: 16px;\n      color: var(--pt-white);\n    }\n    \n    .pt-cta-subtitle {\n      font-size: 15px;\n      color: var(--pt-gray-200);\n      margin-bottom: 24px;\n    }\n    \n    .pt-cta-btn {\n      display: inline-flex;\n      align-items: center;\n      gap: 8px;\n      background: var(--pt-gold-gradient);\n      color: var(--pt-black);\n      padding: 14px 32px;\n      font-family: var(--font-secondary);\n      font-weight: 700;\n      border-radius: 8px;\n      text-decoration: none;\n      transition: all var(--transition-fast);\n    }\n    \n    .pt-cta-btn:hover {\n      transform: translateY(-2px);\n      box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);\n    }\n    \n    \/* ========================================\n       FOOTER\n       ======================================== *\/\n    .pt-footer {\n      padding: 32px 0;\n      text-align: center;\n      border-top: 1px solid var(--pt-black-light);\n      font-size: 13px;\n      color: var(--pt-gray-400);\n    }\n    \n    .pt-footer a { color: var(--pt-gold); }\n    \n    .pt-trademark {\n      margin-top: 12px;\n      font-size: 11px;\n      color: var(--pt-gray-500);\n    }\n    \n    \/* ========================================\n       UTILITIES & RESPONSIVE\n       ======================================== *\/\n    .pt-hidden { display: none !important; }\n    \n    .pt-error {\n      color: var(--pt-danger);\n      font-size: 14px;\n      margin-top: 8px;\n      display: none;\n    }\n    \n    .pt-error.active { display: block; }\n    \n    @media (max-width: 768px) {\n      .pt-detail-row {\n        flex-direction: column;\n        gap: 4px;\n      }\n      \n      .pt-detail-label,\n      .pt-detail-value {\n        flex: auto;\n        text-align: left;\n      }\n      \n      .pt-verify-title { font-size: 24px; }\n      .pt-cta-title { font-size: 18px; }\n    }\n    \n    @media (prefers-reduced-motion: reduce) {\n      * { animation: none !important; transition: none !important; }\n    }\n  <\/style>\n  \n  <!-- Schema.org para p&aacute;gina de verificaci&oacute;n -->\n  <script type=\"application\/ld+json\">\n  {\n    \"@context\": \"https:\/\/schema.org\",\n    \"@type\": \"WebPage\",\n    \"name\": \"Verificar Informe - PropTrust Verified\",\n    \"description\": \"P&aacute;gina p&uacute;blica para verificar la autenticidad de informes de verificaci&oacute;n de activos emitidos por PropTrust Verified.\",\n    \"publisher\": {\n      \"@type\": \"Organization\",\n      \"name\": \"PropTrust Verified\",\n      \"url\": \"https:\/\/proptrustverified.com\"\n    },\n    \"mainEntity\": {\n      \"@type\": \"WebApplication\",\n      \"name\": \"PropTrust Verification Checker\",\n      \"description\": \"Herramienta para verificar autenticidad de informes de verificaci&oacute;n de activos\",\n      \"applicationCategory\": \"BusinessApplication\",\n      \"offers\": {\n        \"@type\": \"Offer\",\n        \"price\": \"0\",\n        \"priceCurrency\": \"EUR\"\n      }\n    }\n  }\n  <\/script>\n<\/head>\n<body>\n\n  <!-- HEADER -->\n  <header class=\"pt-header\">\n    <div class=\"pt-container\">\n      <div class=\"pt-logo\">PropTrust VerifiedTM<\/div>\n      <div class=\"pt-logo-subtitle\">Professional Asset Verification<\/div>\n    <\/div>\n  <\/header>\n\n  <!-- HERO -->\n  <section class=\"pt-verify-hero\">\n    <div class=\"pt-container\">\n      <h1 class=\"pt-verify-title\">  Verify Verification Report<\/h1>\n      <p class=\"pt-verify-subtitle\">Enter the verification code or hash blockchain to confirm the authenticity of a PropTrust Verified report.<\/p>\n      \n      <!-- SEARCH FORM -->\n      <form class=\"pt-search-form\" id=\"verifyForm\">\n        <label for=\"verifyCode\">Verification code or Hash<\/label>\n        <input type=\"text\" id=\"verifyCode\" name=\"verifyCode\" placeholder=\"Ej: PT-2026-VLC-001234 o hash blockchain...\" pattern=\"[A-Za-z0-9-_]+\" required autocomplete=\"off\">\n        \n        <button type=\"submit\" class=\"pt-search-btn\">  Verify Authenticity<\/button>\n        \n        <p class=\"pt-search-hint\">&#9660; The code is usually formatted <code>PT-AA-XXX-NNNN<\/code> or you can paste the entire blockchain hash.\n <\/p>\n        \n        <p class=\"pt-error\" id=\"searchError\">&#10060; Code not found. Verify that you have copied it correctly or contact support.\n <\/p>\n      <\/form>\n    <\/div>\n  <\/section>\n\n  <!-- RESULT SECTION (Hidden by default) -->\n  <section class=\"pt-container\">\n    <div class=\"pt-verify-result\" id=\"verifyResult\">\n      \n      <!-- STATUS BADGE -->\n      <div class=\"pt-verify-status verified\" id=\"statusBadge\">\n        <span class=\"pt-status-icon\">&#9989;<\/span>\n        <div>\n          <h3>Verified report<\/h3>\n          <p>This report is authentic and has been issued by PropTrust Verified.<\/p>\n        <\/div>\n      <\/div>\n      \n      <!-- VERIFICATION DETAILS -->\n      <div class=\"pt-verify-details\">\n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Type of Asset<\/span>\n          <span class=\"pt-detail-value\" id=\"assetType\">Single family housing<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Geographical zone<\/span>\n          <span class=\"pt-detail-value\" id=\"assetZone\">Valencia<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Verification date<\/span>\n          <span class=\"pt-detail-value\" id=\"verifyDate\">15 June 2026<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">General State<\/span>\n          <span class=\"pt-detail-value\" id=\"assetStatus\" style=\"color: var(--pt-success); font-weight: 600;\">&#9655; No serious incidents<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Perito Responsable<\/span>\n          <span class=\"pt-detail-value\">Aurelio Tamarit Blay (Exp. 0161)<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Hash Blockchain<\/span>\n          <span class=\"pt-detail-value hash\" id=\"blockchainHash\">0x7a8f9c2e1b4d6a3f5e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Red Blockchain<\/span>\n          <span class=\"pt-detail-value\">Polygon (MATIC)<\/span>\n        <\/div>\n        \n        <div class=\"pt-detail-row\">\n          <span class=\"pt-detail-label\">Verify in Explorer<\/span>\n          <span class=\"pt-detail-value\">\n            <a href=\"https:\/\/polygonscan.com\/tx\/0x7a8f9c2e1b4d6a3f5e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f\" target=\"_blank\" rel=\"noopener\">View in PolygonScan  en\n <\/a>\n          <\/span>\n        <\/div>\n      <\/div>\n      \n      <!-- BADGE PREVIEW -->\n      <div class=\"pt-badge-preview\">\n        <!-- SVG Badge inline -->\n        <svg width=\"200\" height=\"60\" viewbox=\"0 0 200 60\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <rect x=\"0\" y=\"0\" width=\"200\" height=\"60\" rx=\"8\" fill=\"#1A1A1A\" stroke=\"#D4AF37\" stroke-width=\"2\"><\/rect>\n          <text x=\"100\" y=\"22\" font-family=\"Montserrat, sans-serif\" font-size=\"12\" font-weight=\"700\" fill=\"#D4AF37\" text-anchor=\"middle\">&#9655; VERIFICATE<\/text>\n          <text x=\"100\" y=\"42\" font-family=\"Montserrat, sans-serif\" font-size=\"14\" font-weight=\"800\" fill=\"#F4E5B3\" text-anchor=\"middle\">PropTrust VerifiedTM<\/text>\n        <\/svg>\n        <p class=\"pt-badge-caption\">This badge indicates that <a href=\"https:\/\/proptrustverified.com\/en\/\" data-wpil-monitor-id=\"176\">active has been professionally verified<\/a>. Click to verify.<\/p>\n      <\/div>\n      \n      <!-- IMPORTANT NOTICE -->\n      <div class=\"pt-explain-section\">\n        <h3>  What information is shown and why?<\/h3>\n        <ul class=\"pt-explain-list\">\n          <li>&#9655; Type of assets and general area: to confirm that it is the asset you are looking for<\/li>\n          <li>&#9655; Date and status: to know if the verification is recent and its result<\/li>\n          <li>&#9655; Hash blockchain: for you to check in the blockchain that the report has not been altered<\/li>\n          <li>&#10060; Exact address, owner&#8217;s name, personal data: protected by GDPR<\/li>\n          <li>&#10060; Full technical details: available only for the owner or under authorization<\/li>\n        <\/ul>\n      <\/div>\n      \n    <\/div>\n  <\/section>\n\n  <!-- CTA SECTION -->\n  <section class=\"pt-container\">\n    <div class=\"pt-cta-section\">\n      <h3 class=\"pt-cta-title\">Is your property unchecked?<\/h3>\n      <p class=\"pt-cta-subtitle\">Increases the confidence of buyers and investors with a <a href=\"https:\/\/proptrustverified.com\/en\/proptrust-verified-verificacion-tecnica-independiente-blockchain-perito-judicial-valencia\/\" title=\"PropTrust Verified | Verificaci&oacute;n T&eacute;cnica Independiente + Blockchain\" data-wpil-monitor-id=\"175\">professional verification of PropTrust Verified<\/a>.<\/p>\n      <a href=\"https:\/\/proptrustverified.com\/contacto\/?ref=verify-page\" class=\"pt-cta-btn\"> para Request verification for my property\n <\/a>\n    <\/div>\n  <\/section>\n\n  <!-- FOOTER -->\n  <footer class=\"pt-footer\">\n    <div class=\"pt-container\">\n      <p>&copy; 2026 PropTrust Verified. All rights reserved.<\/p>\n      <p>\n        <a href=\"https:\/\/proptrustverified.com\/aviso-legal\/\">Legal Notice<\/a> |\n <a href=\"https:\/\/proptrustverified.com\/privacidad\/\">Privacy<\/a> |\n <a href=\"https:\/\/proptrustverified.com\/contacto\/\">Contact<\/a>\n      <\/p>\n      <p class=\"pt-trademark\">TM PropTrust VerifiedTM &#8211; Brand Request OEPM N0498420 (30\/03\/2026) |\nTM PropTrust MarineTM &#8211; Brand Request OEPM N0498759 (10\/04\/2026)\n <\/p>\n    <\/div>\n  <\/footer>\n\n  <!-- JavaScript para funcionalidad de verificaci&oacute;n -->\n  <script>\n    document.addEventListener('DOMContentLoaded', function() {\n      const form = document.getElementById('verifyForm');\n      const result = document.getElementById('verifyResult');\n      const error = document.getElementById('searchError');\n      const verifyInput = document.getElementById('verifyCode');\n      \n      \/\/ Base de datos simulada de verificaciones (en producci&oacute;n, esto vendr&iacute;a de tu backend\/API)\n      const mockVerifications = {\n        'PT-2026-VLC-001234': {\n          assetType: 'Vivienda unifamiliar',\n          assetZone: 'Valencia Capital',\n          verifyDate: '15 de junio de 2026',\n          assetStatus: '&#9989; Sin incidencias graves',\n          statusClass: 'verified',\n          hash: '0x7a8f9c2e1b4d6a3f5e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f',\n          blockchain: 'Polygon (MATIC)'\n        },\n        'PT-2026-BCN-005678': {\n          assetType: 'Apartamento',\n          assetZone: 'Barcelona - Eixample',\n          verifyDate: '3 de junio de 2026',\n          assetStatus: '&#9888;&#65039; Incidencias menores detectadas',\n          statusClass: 'verified',\n          hash: '0x3c5e7a9b2d4f6e8c1a3b5d7f9e2c4a6b8d1f3e5c7a9b2d4f6e8c1a3b5d7f9e2c',\n          blockchain: 'Polygon (MATIC)'\n        },\n        '0x7a8f9c2e1b4d6a3f5e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f': {\n          assetType: 'Vivienda unifamiliar',\n          assetZone: 'Valencia Capital',\n          verifyDate: '15 de junio de 2026',\n          assetStatus: '&#9989; Sin incidencias graves',\n          statusClass: 'verified',\n          hash: '0x7a8f9c2e1b4d6a3f5e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f6e8c9b2a1d4f',\n          blockchain: 'Polygon (MATIC)'\n        }\n      };\n      \n      form.addEventListener('submit', function(e) {\n        e.preventDefault();\n        \n        const code = verifyInput.value.trim();\n        const verification = mockVerifications[code];\n        \n        \/\/ Reset UI\n        error.classList.remove('active');\n        result.classList.remove('active');\n        \n        if (verification) {\n          \/\/ Mostrar resultado exitoso\n          document.getElementById('assetType').textContent = verification.assetType;\n          document.getElementById('assetZone').textContent = verification.assetZone;\n          document.getElementById('verifyDate').textContent = verification.verifyDate;\n          document.getElementById('assetStatus').textContent = verification.assetStatus;\n          document.getElementById('assetStatus').style.color = verification.assetStatus.includes('&#9989;') ? 'var(--pt-success)' : 'var(--pt-warning)';\n          document.getElementById('blockchainHash').textContent = verification.hash;\n          \n          const statusBadge = document.getElementById('statusBadge');\n          statusBadge.className = `pt-verify-status ${verification.statusClass}`;\n          \n          result.classList.add('active');\n          \n          \/\/ Scroll suave al resultado\n          result.scrollIntoView({ behavior: 'smooth', block: 'start' });\n          \n        } else {\n          \/\/ Mostrar error\n          error.classList.add('active');\n          verifyInput.focus();\n        }\n      });\n      \n      \/\/ Permitir b&uacute;squeda por par&aacute;metro URL (para enlaces desde badges)\n      const urlParams = new URLSearchParams(window.location.search);\n      const codeFromUrl = urlParams.get('code');\n      \n      if (codeFromUrl) {\n        verifyInput.value = codeFromUrl;\n        form.requestSubmit();\n      }\n    });\n  <\/script>\n\n<\/body>\n<\/html><div style=\"margin: 20px 0;\"><div class=\"qrcswholewtapper\" style=\"text-align:left;\"><div class=\"qrcprowrapper\"  id=\"qrcwraa2leds\"><div class=\"qrc_canvass\" id=\"qrc_cuttenpages_2\" style=\"display:inline-block\" data-text=\"https:\/\/proptrustverified.com\/en\/Verify-Report\/\"><\/div><div><a download=\"Verify Report.png\" class=\"qrcdownloads\" id=\"worign\">\r\n           <button type=\"button\" style=\"min-width:200px;background:#dddddd;color:#000;font-weight: 600;border: 1px solid #dddddd;border-radius:4px;font-size:12px;padding: 6px 0;\" class=\"uqr_code_btn\">Download QR<\/button>\r\n           <\/a><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Verify Report | PropTrust VerifiedTM PropTrust VerifiedTM Professional Asset Verification Verify Verification Report Enter the verification code or hash blockchain to confirm the authenticity of a PropTrust Verified report. Verification code or Hash Verify Authenticity &#9660; The code is usually formatted PT-AA-XXX-NNNN or you can paste the entire blockchain hash. &#10060; Code not found. Verify [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":54,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-339","page","type-page","status-publish","has-post-thumbnail","hentry"],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/pages\/339","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/comments?post=339"}],"version-history":[{"count":5,"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/pages\/339\/revisions"}],"predecessor-version":[{"id":2130,"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/pages\/339\/revisions\/2130"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/media\/54"}],"wp:attachment":[{"href":"https:\/\/proptrustverified.com\/en\/wp-json\/wp\/v2\/media?parent=339"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}