{"id":68376,"date":"2024-10-22T21:55:49","date_gmt":"2024-10-22T21:55:49","guid":{"rendered":"https:\/\/inticash.com.pe\/ubicanos\/"},"modified":"2026-04-04T19:44:14","modified_gmt":"2026-04-04T19:44:14","slug":"ubicanos","status":"publish","type":"page","link":"https:\/\/inticash.com.pe\/es\/ubicanos\/","title":{"rendered":"Encuentra tu sucursal m\u00e1s cercana"},"content":{"rendered":"<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>Sucursales Inticash<\/title>\n\n<style>\nbody {\n    margin: 0;\n    font-family: 'Segoe UI', sans-serif;\n    background: #ffffff;\n    color: #333;\n}\n\nheader {\n    background: linear-gradient(90deg, #edc500, #f7df6e);\n    color: black;\n    padding: 20px;\n    text-align: center;\n    font-size: 24px;\n    font-weight: bold;\n}\n\n.container {\n    padding: 20px;\n}\n\n.filtros {\n    text-align: center;\n    margin-bottom: 20px;\n}\n\nbutton {\n    margin: 5px;\n    padding: 10px 15px;\n    border: none;\n    border-radius: 20px;\n    cursor: pointer;\n    background: #f5f5f5;\n    color: #333;\n    transition: all 0.3s ease;\n}\n\nbutton:hover {\n    background: #edc500;\n    color: black;\n    transform: scale(1.05);\n}\n\nbutton:active {\n    transform: scale(0.95);\n}\n\n.grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n    gap: 20px;\n}\n\n.card {\n    background: white;\n    border-radius: 15px;\n    padding: 20px;\n    border: 1px solid #eee;\n    transition: all 0.4s ease;\n    opacity: 0;\n    transform: translateY(20px);\n    animation: aparecer 0.6s forwards;\n}\n\n.card:hover {\n    transform: translateY(-5px) scale(1.02);\n    border-color: #edc500;\n    box-shadow: 0 10px 25px rgba(0,0,0,0.1);\n}\n\n.card h3 {\n    margin-top: 0;\n    color: black;\n}\n\n.btn {\n    display: inline-block;\n    margin-top: 10px;\n    margin-right: 5px;\n    padding: 8px 12px;\n    border-radius: 5px;\n    text-decoration: none;\n    font-size: 14px;\n    font-weight: bold;\n    transition: all 0.3s ease;\n}\n\n.llamar { background: #edc500; color: black; }\n.whatsapp { background: #25D366; color: white; }\n\n.btn:hover {\n    opacity: 0.85;\n    transform: translateY(-2px);\n}\n\n.btn:active {\n    transform: scale(0.95);\n}\n\n@keyframes aparecer {\n    to {\n        opacity: 1;\n        transform: translateY(0);\n    }\n}\n\n.fade-out {\n    opacity: 0;\n    transform: translateY(10px);\n    transition: all 0.3s ease;\n}\n\n.fade-in {\n    opacity: 1;\n    transform: translateY(0);\n}\n\n<\/style>\n<\/head>\n\n<body>\n\n<header>\n\ud83d\udc8e Encuentra tu sucursal Inticash m\u00e1s cercana\n<\/header>\n\n<div class=\"container\">\n\n<div class=\"filtros\">\n    <button onclick=\"filtrar('todas')\">Todas<\/button>\n    <button onclick=\"filtrar('lima')\">Lima<\/button>\n    <button onclick=\"filtrar('arequipa')\">Arequipa<\/button>\n    <button onclick=\"filtrar('tacna')\">Tacna<\/button>\n    <button onclick=\"filtrar('ilo')\">Ilo<\/button>\n    <button onclick=\"filtrar('juliaca')\">Juliaca<\/button>\n<\/div>\n\n<div class=\"grid\" id=\"contenedor\"><\/div>\n\n<\/div>\n\n<script>\n\nconst sucursales = [\n    { ciudad: 'tacna', nombre: 'Tacna Centro', direccion: 'Av. San Mart\u00edn 750', telefono: '963165116' },\n    { ciudad: 'tacna', nombre: 'Tacna Cono Sur', direccion: 'Villa San Francisco Mz 97 Lt07', telefono: '997085856' },\n\n    { ciudad: 'ilo', nombre: 'Ilo Centro', direccion: 'Jr. Moquegua 423', telefono: '991656113' },\n\n    { ciudad: 'arequipa', nombre: 'Arequipa Centro', direccion: 'Calle La Merced 125', telefono: '943505474' },\n    { ciudad: 'arequipa', nombre: 'Arequipa Cayma', direccion: 'Av. Trinidad Mor\u00e1n 270', telefono: '987375096' },\n\n    { ciudad: 'juliaca', nombre: 'Juliaca Centro', direccion: 'Jr. San Mart\u00edn 305', telefono: '940223410' },\n\n    { ciudad: 'lima', nombre: 'Lima Z\u00e1rate SJL', direccion: 'Av. Gran Chim\u00fa 840', telefono: '991987148' },\n    { ciudad: 'lima', nombre: 'Lima San Borja', direccion: 'Av. San Luis 2016', telefono: '963097491' },\n    { ciudad: 'lima', nombre: 'Lima San Juan de Miraflores', direccion: 'Av. San Juan 1074 A', telefono: '941542536' }\n];\n\nfunction mostrar(data) {\n    const contenedor = document.getElementById('contenedor');\n    contenedor.classList.add('fade-out');\n\n    setTimeout(() => {\n        contenedor.innerHTML = '';\n\n        data.forEach((s, index) => {\n            contenedor.innerHTML += `\n                <div class=\"card\" style=\"animation-delay:${index * 0.08}s\">\n                    <h3>${s.nombre}<\/h3>\n                    <p>\ud83d\udccd ${s.direccion}<\/p>\n                    <p>\ud83d\udcde ${s.telefono}<\/p>\n                    \n                    <a class=\"btn llamar\" href=\"tel:${s.telefono}\">Llamar<\/a>\n                    <a class=\"btn whatsapp\" target=\"_blank\" href=\"https:\/\/wa.me\/51${s.telefono}\">WhatsApp<\/a>\n                <\/div>\n            `;\n        });\n\n        contenedor.classList.remove('fade-out');\n        contenedor.classList.add('fade-in');\n\n    }, 200);\n}\n\nfunction filtrar(ciudad) {\n    if (ciudad === 'todas') {\n        mostrar(sucursales);\n    } else {\n        const filtradas = sucursales.filter(s => s.ciudad === ciudad);\n        mostrar(filtradas);\n    }\n}\n\nmostrar(sucursales);\n\n<\/script>\n\n<\/body>\n<\/html>","protected":false},"excerpt":{"rendered":"<p>Sucursales Inticash \ud83d\udc8e Encuentra tu sucursal Inticash m\u00e1s cercana Todas Lima Arequipa Tacna Ilo Juliaca<\/p>","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-68376","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/pages\/68376","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/comments?post=68376"}],"version-history":[{"count":6,"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/pages\/68376\/revisions"}],"predecessor-version":[{"id":70194,"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/pages\/68376\/revisions\/70194"}],"wp:attachment":[{"href":"https:\/\/inticash.com.pe\/es\/wp-json\/wp\/v2\/media?parent=68376"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}