{"id":39,"date":"2024-10-16T13:37:55","date_gmt":"2024-10-16T16:37:55","guid":{"rendered":"https:\/\/spps.gob.ar\/?page_id=39"},"modified":"2026-05-04T09:06:37","modified_gmt":"2026-05-04T12:06:37","slug":"home-2","status":"publish","type":"page","link":"https:\/\/spps.gob.ar\/","title":{"rendered":"Inicio"},"content":{"rendered":"\n\n\n<div style=\"margin-top:0;margin-bottom:0;height:44px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<<div class=\"full-screen-slider\">\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20260225_105023.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20250716_110840.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20250716_101331.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_yvvbe5yvvbe5yvvb-1.png');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20251203_182903-1-scaled.jpg');\"><\/div>\n<\/div>\n\n<style>\n  \/* Contenedor que ocupa toda la pantalla visual *\/\n  .full-screen-slider {\n    position: relative;\n    width: 100vw;\n    height: 100vh;\n    overflow: hidden;\n    \/* Fuerza el ancho completo si el tema tiene m\u00e1rgenes *\/\n    margin-left: calc(-50vw + 50%); \n    background-color: #000;\n  }\n\n  .my-slide {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background-size: cover;\n    background-position: center;\n    background-repeat: no-repeat;\n    opacity: 0;\n    transition: opacity 1s ease-in-out; \/* Desvanecimiento de 1 segundo *\/\n  }\n\n  \/* Clase que activa la visibilidad *\/\n  .my-slide.is-active {\n    opacity: 1;\n  }\n<\/style>\n\n<script>\n  (function() {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      const slides = document.querySelectorAll('.my-slide');\n      let current = 0;\n\n      if (slides.length === 0) return;\n\n      \/\/ Activar la primera imagen al cargar\n      slides[current].classList.add('is-active');\n\n      setInterval(() => {\n        \/\/ Quitar visibilidad a la imagen actual\n        slides[current].classList.remove('is-active');\n        \n        \/\/ Ir a la siguiente (y volver a 0 si llega al final)\n        current = (current + 1) % slides.length;\n        \n        \/\/ Mostrar la nueva imagen\n        slides[current].classList.add('is-active');\n      }, 2000); \/\/ Cambio cada 2000ms (2 segundos)\n    });\n  })();\n<\/script>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><\/h2>\n\n\n\n<h5 class=\"wp-block-heading has-text-align-center\"><\/h5>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n\n<style>\n    \/* Usamos un contenedor \u00fanico para no afectar otros estilos del sitio *\/\n    .spps-shortcut-section {\n        --spps-azul: #1a2a40;\n        --spps-gris-fondo: #f4f7f6;\n        --spps-blanco: #ffffff;\n        \n        padding: 40px 10px;\n        background-color: var(--spps-gris-fondo);\n        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n        border-radius: 15px;\n        margin: 20px 0;\n    }\n\n    .spps-title {\n        text-align: center;\n        color: var(--spps-azul);\n        margin-bottom: 30px;\n        font-size: 1.8rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    .spps-grid {\n        display: grid;\n        \/* El truco para el m\u00f3vil: minmax(140px, 1fr) permite 2 columnas en pantallas peque\u00f1as *\/\n        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n        gap: 15px;\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .spps-card {\n        background: var(--spps-blanco);\n        padding: 25px 15px;\n        border-radius: 12px;\n        text-decoration: none !important; \/* Quita subrayado de WP *\/\n        color: var(--spps-azul) !important;\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n        box-shadow: 0 4px 6px rgba(0,0,0,0.05);\n        border: 1px solid rgba(0,0,0,0.05);\n        height: 140px; \/* Altura fija para uniformidad *\/\n    }\n\n    .spps-card i {\n        font-size: 2.5rem;\n        margin-bottom: 12px;\n        transition: transform 0.3s ease;\n    }\n\n    .spps-card span {\n        font-weight: 600;\n        font-size: 0.95rem;\n        line-height: 1.2;\n    }\n\n    \/* Efectos Hover *\/\n    .spps-card:hover {\n        background-color: var(--spps-azul);\n        color: #ffffff !important;\n        transform: translateY(-5px);\n        box-shadow: 0 10px 20px rgba(26, 42, 64, 0.2);\n    }\n\n    .spps-card:hover i {\n        transform: scale(1.1);\n    }\n\n    \/* Ajustes espec\u00edficos para M\u00f3viles *\/\n    @media (max-width: 480px) {\n        .spps-grid {\n            grid-template-columns: repeat(2, 1fr); \/* Fuerza 2 columnas en m\u00f3viles peque\u00f1os *\/\n            gap: 10px;\n        }\n        .spps-card {\n            padding: 15px 5px;\n            height: 120px;\n        }\n        .spps-card i {\n            font-size: 2rem;\n        }\n        .spps-card span {\n            font-size: 0.85rem;\n        }\n        .spps-title {\n            font-size: 1.4rem;\n        }\n    }\n<\/style>\n\n<div class=\"spps-shortcut-section\">\n    <h2 class=\"spps-title\"><i class=\"fas fa-th-large\"><\/i> Accesos Directos<\/h2>\n    \n    <div class=\"spps-grid\">\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=615\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-newspaper\"><\/i>\n            <span>Prensa<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/sistemas.spps.gob.ar\/registroanticipadas\/ctrl_inscripcion\/pag_inscripcion\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-user-check\"><\/i>\n            <span>Visita Anticipada<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=1570\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-book-reader\"><\/i>\n            <span>Capacitaci\u00f3n SPPS<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=505\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-graduation-cap\"><\/i>\n            <span>Escuela de Cadetes<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=507\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-user-plus\"><\/i>\n            <span>Curso de Aspirantes<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=3025\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-hand-holding-heart\"><\/i>\n            <span>Bienestar del Personal<\/span>\n        <\/a>\n    <\/div>\n<\/div>\n\n\n\n<div style=\"height:39px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><a href=\"https:\/\/www.fiscalespenalesalta.gob.ar\/recompensa-de-10-millones-por-datos-ciertos-del-profugo-jonatan-jordan-peloc-alias-camboya\/\"><img loading=\"lazy\" decoding=\"async\" width=\"819\" height=\"1024\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-819x1024.jpeg\" alt=\"\" class=\"wp-image-5199\" style=\"aspect-ratio:0.7998253656406898;width:275px;height:auto\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-819x1024.jpeg 819w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-240x300.jpeg 240w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-768x960.jpeg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-1229x1536.jpeg 1229w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-1638x2048.jpeg 1638w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21.jpeg 2048w\" sizes=\"auto, (max-width: 819px) 100vw, 819px\" \/><\/a><\/figure>\n\n\n\n<style>\n    .seccion-titulo-contenedor {\n        width: 100%;\n        max-width: 1000px;\n        margin: 40px auto 20px auto;\n        text-align: center;\n        padding: 0 15px;\n    }\n\n    .titulo-destacado {\n        \/* Misma fuente y estilo que tus accesos directos *\/\n        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        color: #1a2a40;\n        font-size: 1.8rem;\n        font-weight: 700;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin: 0;\n        display: inline-block;\n        position: relative;\n        padding-bottom: 10px;\n    }\n\n    \/* L\u00ednea decorativa debajo del texto *\/\n    .titulo-destacado::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 25%;\n        width: 50%;\n        height: 4px;\n        background-color: #1a2a40;\n        border-radius: 2px;\n    }\n\n    \/* Ajuste para m\u00f3viles *\/\n    @media (max-width: 600px) {\n        .titulo-destacado {\n            font-size: 1.4rem;\n            letter-spacing: 1px;\n        }\n    }\n<\/style>\n\n<div class=\"seccion-titulo-contenedor\">\n    <h2 class=\"titulo-destacado\">\u00daltimas Noticias Destacadas<\/h2>\n<\/div>\n\n\n\n\t\t\t<div class=\"wp-block-uagb-post-carousel uagb-post-grid  uagb-post__image-position-background uagb-post__image-enabled uagb-block-13406a92     uagb-post__arrow-outside uagb-slick-carousel uagb-post__items uagb-post__columns-3 is-carousel uagb-post__columns-tablet-2 uagb-post__columns-mobile-1\" data-total=\"27\" style=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5229\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Personal Penitenciario de diversas dependencias participaron del VII CURSO NACIONAL DE SUPERVIVENCIA POLICIAL Y CUSTODIAS ESPECIALE<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-05-04T10:19:25-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t4 mayo, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>La capacitaci\u00f3n se realizo en la Provincia de Catamarca del 06 al 26 de abril&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5229\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5229\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"576\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1-768x576.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1-768x576.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1-300x225.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1-1024x768.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1-1536x1152.jpg 1536w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684155129_952647307517491_9150942165051479844_n-1.jpg 1600w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\">XI ANIVERSARIO DE LA ALCAID\u00cdA N\u00b0 2 &#8211; TARTAGAL<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-05-03T13:17:29-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t3 mayo, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>\u200bCon un acto protocolar, se celebr\u00f3 el 11\u00b0 aniversario de la Alcaid\u00eda N\u00b0 2, con&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-768x432.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-768x432.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1536x864.jpg 1536w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n.jpg 1600w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5222\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Construyen un sistema de alojamiento modular en la unidad penitenciaria de Tartagal<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-05-01T10:12:28-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t1 mayo, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>Se encuentra en el predio localizado en el barrio Santa Mar\u00eda. El objetivo es optimizar&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5222\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5222\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684299000_952647150850840_4008819662580810331_n-768x432.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684299000_952647150850840_4008819662580810331_n-768x432.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684299000_952647150850840_4008819662580810331_n-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684299000_952647150850840_4008819662580810331_n-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/684299000_952647150850840_4008819662580810331_n.jpg 1066w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5210\" target=\"_self\" rel=\"bookmark noopener noreferrer\">D\u00eda del Animal en Atocha II<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-05-01T09:50:01-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t1 mayo, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>Se vivi\u00f3 una jornada muy especial en la Escuela N\u00b0 4848 \u201cNuestra Se\u00f1ora de Atocha\u201d&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5210\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5210\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685069585_951789604269928_2202281235359131686_n-768x432.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685069585_951789604269928_2202281235359131686_n-768x432.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685069585_951789604269928_2202281235359131686_n-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685069585_951789604269928_2202281235359131686_n-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685069585_951789604269928_2202281235359131686_n.jpg 1184w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5185\" target=\"_self\" rel=\"bookmark noopener noreferrer\">El Servicio Penitenciario realizar\u00e1 exposici\u00f3n y venta de productos por el D\u00eda del Trabajador<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-04-29T09:55:44-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t29 abril, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>La propuesta se llevar\u00e1 a cabo los d\u00edas 29 y 30 de abril, de 8&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5185\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5185\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"1280\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/WhatsApp-Image-2026-04-29-at-09.53.53.jpeg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/WhatsApp-Image-2026-04-29-at-09.53.53.jpeg 720w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/WhatsApp-Image-2026-04-29-at-09.53.53-169x300.jpeg 169w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/WhatsApp-Image-2026-04-29-at-09.53.53-576x1024.jpeg 576w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5165\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Convenio entre la Fundaci\u00f3n Espartanos Salta y EDESA S.A<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-04-28T11:55:32-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t28 abril, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>Se firm\u00f3 un importante convenio marco entre la Fundaci\u00f3n Espartanos Salta, la Secretar\u00eda de Justicia&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5165\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5165\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"512\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n-768x512.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n-768x512.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n-300x200.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n-1024x683.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n-1536x1025.jpg 1536w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/04\/680764587_950570137725208_4247489869624151978_n.jpg 2048w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<style>\n    .seccion-galeria-contenedor {\n        width: 100%;\n        max-width: 1000px;\n        margin: 50px auto 25px auto; \/* Espaciado superior para separar de la secci\u00f3n anterior *\/\n        text-align: center;\n        padding: 0 15px;\n    }\n\n    .titulo-galeria {\n        \/* Estilo id\u00e9ntico a los anteriores para mantener uniformidad *\/\n        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        color: #1a2a40;\n        font-size: 1.8rem;\n        font-weight: 700;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin: 0;\n        display: inline-block;\n        position: relative;\n        padding-bottom: 10px;\n    }\n\n    \/* L\u00ednea decorativa inferior *\/\n    .titulo-galeria::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 30%; \/* Un poco m\u00e1s cerrada para este texto m\u00e1s corto *\/\n        width: 40%;\n        height: 4px;\n        background-color: #1a2a40;\n        border-radius: 2px;\n    }\n\n    \/* Adaptaci\u00f3n para celulares *\/\n    @media (max-width: 600px) {\n        .titulo-galeria {\n            font-size: 1.4rem;\n            letter-spacing: 1px;\n        }\n    }\n<\/style>\n\n<div class=\"seccion-galeria-contenedor\">\n    <h2 class=\"titulo-galeria\">Galer\u00eda de Fotos<\/h2>\n<\/div>\n\n\n\n\t\t\t<div data-aos= \"fade-down\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-post-carousel uagb-post-grid  uagb-post__image-position-top uagb-post__image-enabled uagb-block-a5b75cea     uagb-post__arrow-outside uagb-slick-carousel uagb-post__items uagb-post__columns-3 is-carousel uagb-post__columns-tablet-2 uagb-post__columns-mobile-1 uagb-post__carousel_equal-height\" data-total=\"27\" style=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=4695\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781.jpg 1280w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-768x432.jpg 768w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=4695\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=1341\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1020\" height=\"574\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5.jpg 1020w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5-768x432.jpg 768w\" sizes=\"auto, (max-width: 1020px) 100vw, 1020px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=1341\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"900\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n.jpg 1600w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-768x432.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1536x864.jpg 1536w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=1689\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos.jpg 900w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos-300x200.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos-768x512.jpg 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=1689\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=3224\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"347\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1.webp\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1.webp 560w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1-300x186.webp 300w\" sizes=\"auto, (max-width: 560px) 100vw, 560px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=3224\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=3244\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"315\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10891-trabajan-para-la-inclusion-laboral-de-personas-privadas-de-libertad-en-oran.webp\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10891-trabajan-para-la-inclusion-laboral-de-personas-privadas-de-libertad-en-oran.webp 560w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10891-trabajan-para-la-inclusion-laboral-de-personas-privadas-de-libertad-en-oran-300x169.webp 300w\" sizes=\"auto, (max-width: 560px) 100vw, 560px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=3244\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>< Accesos Directos Prensa Visita Anticipada Capacitaci\u00f3n SPPS Escuela de Cadetes Curso de Aspirantes Bienestar del Personal \u00daltimas Noticias Destacadas [&hellip;]\n<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"unboxed","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-39","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"adminspps","author_link":"https:\/\/spps.gob.ar\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"< Accesos Directos Prensa Visita Anticipada Capacitaci\u00f3n SPPS Escuela de Cadetes Curso de Aspirantes Bienestar del Personal \u00daltimas Noticias Destacadas [&hellip;]","_links":{"self":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=39"}],"version-history":[{"count":454,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39\/revisions"}],"predecessor-version":[{"id":5200,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39\/revisions\/5200"}],"wp:attachment":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}