{"id":11,"date":"2025-09-02T14:29:06","date_gmt":"2025-09-02T14:29:06","guid":{"rendered":"https:\/\/accons.ec\/auddit\/?page_id=11"},"modified":"2025-10-01T20:21:00","modified_gmt":"2025-10-01T20:21:00","slug":"inicio","status":"publish","type":"page","link":"https:\/\/auddit.ec\/","title":{"rendered":"Inicio"},"content":{"rendered":"\n<div style=\"height:90px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<!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>Banner con Fondo Animado<\/title>\n    <style>\n        body {\n            margin: 0;\n            font-family: sans-serif;\n            background-color: #f0f0f0;\n        }\n\n        .hero-section {\n            position: relative;\n            background-color: #af1280;\n            padding: 60px 20px;\n            overflow: hidden;\n        }\n\n        #animated-background {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            display: block; \/* esto asegura que el canvas ocupe el 100% *\/\n            z-index: 1;\n        }\n\n        .hero-content {\n            position: relative;\n            z-index: 2;\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            flex-wrap: wrap;\n            text-align: left;\n            margin: 0 auto;\n            max-width: 1200px;\n            gap: 40px;\n        }\n\n        .text-column {\n            flex: 1 1 400px;\n            min-width: 300px;\n        }\n\n        .text-column h1 {\n            font-size: 48px;\n            font-weight: bold;\n            color: #ffffff;\n            margin-bottom: 20px;\n        }\n\n        .text-column p {\n            font-size: 18px;\n            color: #ffffff;\n        }\n\n        .logo-column {\n            flex: 1 1 300px;\n            text-align: center;\n        }\n\n        .logo-column img {\n            max-width: 380px;\n            width: 100%;\n            height: auto;\n        }\n\n        \/* Responsividad *\/\n        @media (max-width: 768px) {\n            .text-column h1 {\n                font-size: 32px;\n            }\n            .text-column p {\n                font-size: 16px;\n            }\n            .logo-column img {\n                max-width: 260px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"hero-section\">\n        <canvas id=\"animated-background\"><\/canvas>\n        <div class=\"hero-content\">\n            <div class=\"text-column\">\n                <h1>\n                    Auditor\u00eda y <br> Confianza Financiera\n                <\/h1>\n                <p>\n                    Servicios orientados al control financiero y a fortalecer la confianza\n                    en la gesti\u00f3n de las PYMEs.\n                <\/p>\n            <\/div>\n            <div class=\"logo-column\">\n                <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/cropped-logo-auddit-scaled-2.png\" alt=\"Auddit Logo\">\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        const canvas = document.getElementById('animated-background');\n        const ctx = canvas.getContext('2d');\n        let bars = [];\n        let smallBars = [];\n        let time = 0;\n\n        const config = {\n            numBars: 12,\n            numSmallBars: 36,\n            barColor: '#9a02ab',\n            smallBarColor: 'rgba(255, 255, 255, 0.47)',\n            backgroundColor: '#af1280',\n            lineColor: '#ff79ff',\n            dashedLineColor: '#ffffff',\n            zeroLineColor: '#af1280',\n            signColor: '#af1280',\n            gap: 10,\n            smallGap: 5,\n            smallGraphScale: 0.3\n        };\n\n        class Bar {\n            constructor(x, width, maxHeight) {\n                this.x = x;\n                this.width = width;\n                this.maxHeight = maxHeight;\n                this.initialHeight = Math.random() * this.maxHeight * 0.7 + this.maxHeight * 0.2;\n                this.height = this.initialHeight;\n                this.speed = Math.random() * 0.3 + 0.3;\n                this.offset = Math.random() * Math.PI * 2;\n            }\n\n            update(time) {\n                const wave = Math.sin(time * this.speed + this.offset);\n                this.height = this.initialHeight + wave * (this.initialHeight * 0.3);\n            }\n\n            draw(ctx, canvasHeight) {\n                const gradient = ctx.createLinearGradient(this.x, canvasHeight - this.height, this.x, canvasHeight);\n                gradient.addColorStop(0, config.barColor);\n                gradient.addColorStop(1, config.backgroundColor);\n                ctx.fillStyle = gradient;\n                ctx.fillRect(this.x, canvasHeight - this.height, this.width, this.height);\n            }\n        }\n\n        class SmallBar {\n            constructor(x, width, maxHeight, index) {\n                this.x = x;\n                this.width = width * config.smallGraphScale;\n                this.maxHeight = maxHeight * config.smallGraphScale \/ 2;\n                this.sign = Math.sin(index * Math.PI \/ 3) > 0 ? 1 : -1;\n                this.initialHeight = (Math.random() * 0.7 + 0.2) * this.maxHeight * this.sign;\n                this.height = this.initialHeight;\n                this.speed = Math.random() * 0.3 + 0.3;\n                this.offset = Math.random() * Math.PI * 2;\n            }\n\n            update(time) {\n                const wave = Math.sin(time * this.speed + this.offset);\n                this.height = this.initialHeight + wave * (Math.abs(this.initialHeight) * 0.3);\n            }\n\n            draw(ctx, canvasHeight) {\n                const zeroY = canvasHeight \/ 2;\n                const drawHeight = Math.abs(this.height);\n                let startY;\n\n                if (this.height > 0) {\n                    startY = zeroY - drawHeight;\n                } else {\n                    startY = zeroY;\n                }\n\n                ctx.fillStyle = config.smallBarColor;\n                ctx.fillRect(this.x, startY, this.width, drawHeight);\n            }\n        }\n\n        function init() {\n            canvas.width = canvas.clientWidth; \/\/ <-- cambio responsive\n            canvas.height = canvas.clientHeight; \/\/ <-- cambio responsive\n            bars = [];\n            smallBars = [];\n            const totalGaps = config.gap * (config.numBars - 1);\n            const barWidth = (canvas.width - totalGaps) \/ config.numBars;\n            for (let i = 0; i < config.numBars; i++) {\n                const x = i * (barWidth + config.gap);\n                bars.push(new Bar(x, barWidth, canvas.height));\n            }\n            const totalSmallGaps = config.smallGap * (config.numSmallBars - 1);\n            const smallWidth = (canvas.width - totalSmallGaps) \/ config.numSmallBars;\n            for (let i = 0; i < config.numSmallBars; i++) {\n                const x = i * (smallWidth + config.smallGap);\n                smallBars.push(new SmallBar(x, smallWidth, canvas.height, i));\n            }\n        }\n\n        function drawZeroLine(ctx, canvasWidth, canvasHeight) {\n            const zeroY = canvasHeight \/ 2;\n            ctx.beginPath();\n            ctx.moveTo(0, zeroY);\n            ctx.lineTo(canvasWidth, zeroY);\n            ctx.strokeStyle = config.zeroLineColor;\n            ctx.lineWidth = 1;\n            ctx.stroke();\n        }\n\n        function drawTrendLine(ctx, canvasHeight) {\n            const zeroY = canvasHeight \/ 2;\n            const linePoints = [];\n            const maxSmallBarHeight = Math.max(...smallBars.map(bar => Math.abs(bar.maxHeight)));\n\n            for (let i = 0; i < config.numBars; i++) {\n                const bar = bars[i];\n                const x = bar.x + bar.width \/ 2;\n                const phase = (i \/ config.numBars) * Math.PI * 4;\n                const yOffset = Math.sin(time * 0.2 + phase) * (maxSmallBarHeight * 3);\n                const baseY = canvasHeight - bar.height;\n                const y = Math.max(10, Math.min(canvasHeight - 10, baseY + yOffset));\n                linePoints.push({ x, y });\n            }\n\n            ctx.beginPath();\n            ctx.moveTo(linePoints[0].x, linePoints[0].y);\n            for (let i = 1; i < linePoints.length; i++) {\n                ctx.lineTo(linePoints[i].x, linePoints[i].y);\n            }\n\n            const gradient = ctx.createLinearGradient(linePoints[0].x, 0, linePoints[linePoints.length - 1].x, 0);\n            gradient.addColorStop(0, 'rgba(255, 121, 255, 0)');\n            gradient.addColorStop(0.1, config.lineColor);\n            gradient.addColorStop(0.9, config.lineColor);\n            gradient.addColorStop(1, 'rgba(255, 121, 255, 0)');\n            ctx.strokeStyle = gradient;\n            ctx.lineWidth = 2;\n            ctx.stroke();\n        }\n\n        function drawDashedLine(ctx, canvasHeight) {\n            const zeroY = canvasHeight \/ 2;\n            const dashedLinePoints = [];\n            for (let i = 0; i < config.numBars; i++) {\n                const bar = bars[i];\n                const x = bar.x + bar.width \/ 2;\n                const y = zeroY + Math.sin(time * 0.8 + i * 0.3) * 20 + Math.cos(time * 0.5 + i * 0.4) * 15;\n                dashedLinePoints.push({ x, y });\n            }\n\n            ctx.beginPath();\n            ctx.moveTo(dashedLinePoints[0].x, dashedLinePoints[0].y);\n            for (let i = 1; i < dashedLinePoints.length; i++) {\n                ctx.quadraticCurveTo(\n                    (dashedLinePoints[i-1].x + dashedLinePoints[i].x) \/ 2,\n                    dashedLinePoints[i-1].y + (dashedLinePoints[i].y - dashedLinePoints[i-1].y) \/ 2,\n                    dashedLinePoints[i].x,\n                    dashedLinePoints[i].y\n                );\n            }\n            ctx.strokeStyle = config.dashedLineColor;\n            ctx.setLineDash([5, 5]);\n            ctx.lineWidth = 1;\n            ctx.stroke();\n            ctx.setLineDash([]);\n        }\n\n        function animate() {\n            ctx.clearRect(0, 0, canvas.width, canvas.height);\n            time += 0.01;\n\n            const canvasHeight = canvas.height;\n            const canvasWidth = canvas.width;\n\n            bars.forEach(bar => {\n                bar.update(time);\n                bar.draw(ctx, canvasHeight);\n            });\n\n            smallBars.forEach(bar => {\n                bar.update(time);\n                bar.draw(ctx, canvasHeight);\n            });\n\n            drawZeroLine(ctx, canvasWidth, canvasHeight);\n            drawTrendLine(ctx, canvasHeight);\n            drawDashedLine(ctx, canvasHeight);\n\n            requestAnimationFrame(animate);\n        }\n\n        window.addEventListener('resize', init);\n        init();\n        animate();\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<section id=\"Servicios\" class=\"servicios-section\">\n\n    <div class=\"servicios-container\">\n\n        <div class=\"servicio-item\">\n            <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-3.png\" alt=\"Auditor\u00eda Financiera\" class=\"servicio-icono\">\n            <h3 class=\"servicio-titulo\">Auditor\u00eda Financiera<\/h3>\n            <p class=\"servicio-subtitulo\">\n                Garantizamos el cumplimiento normativo y la confiabilidad de tus estados financieros.\n            <\/p>\n        <\/div>\n\n        <div class=\"servicio-item\">\n            <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-2.png\" alt=\"Consultor\u00eda Tributaria\" class=\"servicio-icono\">\n            <h3 class=\"servicio-titulo\">Consultor\u00eda Tributaria<\/h3>\n            <p class=\"servicio-subtitulo\">\n                Asesoramos en planificaci\u00f3n fiscal estrat\u00e9gica para un crecimiento seguro y rentable.\n            <\/p>\n        <\/div>\n\n        <div class=\"servicio-item\">\n            <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-1.png\" alt=\"Revisi\u00f3n y Dictamen\" class=\"servicio-icono\">\n            <h3 class=\"servicio-titulo\">Revisi\u00f3n y Dictamen<\/h3>\n            <p class=\"servicio-subtitulo\">\n                Emitimos dict\u00e1menes profesionales que fortalecen la transparencia y confianza de tu empresa.\n            <\/p>\n        <\/div>\n\n        <div class=\"servicio-item\">\n            <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy.png\" alt=\"Asesor\u00eda Empresarial\" class=\"servicio-icono\">\n            <h3 class=\"servicio-titulo\">Asesor\u00eda Empresarial<\/h3>\n            <p class=\"servicio-subtitulo\">\n                Brindamos orientaci\u00f3n estrat\u00e9gica para optimizar procesos y maximizar resultados.\n            <\/p>\n        <\/div>\n\n    <\/div>\n<\/section>\n\n<style>\n    .servicios-section {\n        padding: 80px 20px;\n    }\n\n    .servicios-container {\n        display: flex;\n        justify-content: center;\n        flex-wrap: wrap;\n        gap: 40px;\n        text-align: center;\n        margin: 0 auto;\n        max-width: 1200px;\n    }\n\n    .servicio-item {\n        flex: 1 1 200px;\n        max-width: 250px;\n        text-align: center; \n        padding: 20px;\n        border-radius: 8px;\n        background-color: rgba(255, 255, 255, 0.1); \n        border: 1px solid rgba(255, 255, 255, 0.2);\n        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s;\n        \n        color: #fff; \n        word-break: normal; \n        overflow-wrap: break-word; \n    }\n\n    \/* EFECTO HOVER: LEVANTAR LA TARJETA (Sombra Limpia) *\/\n    .servicio-item:hover {\n        transform: translateY(-10px); \/* Mueve 10px hacia arriba *\/\n        \/* Sombra oscura y sutil, sin ne\u00f3n *\/\n        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); \n        background-color: rgba(255, 255, 255, 0.15); \/* Fondo ligeramente m\u00e1s claro *\/\n        border-color: rgba(255, 255, 255, 0.4); \/* Borde un poco m\u00e1s visible *\/\n    }\n\n    .servicio-icono {\n        width: 100%;\n        max-width: 140px;\n        height: auto;\n        margin-bottom: 15px;\n        \/* Filtro que convierte el icono en blanco (SIN drop-shadow ne\u00f3n) *\/\n        filter: \n            brightness(0) \n            invert(1);\n    }\n\n    .servicio-titulo {\n        margin: 0 0 10px 0;\n        font-size: 20px;\n        font-weight: bold;\n        color: #fff; \n    }\n\n    .servicio-subtitulo {\n        margin: 0;\n        font-size: 16px;\n        color: #fff; \n        text-align: center; \n        hyphens: none; \n        word-break: normal;\n        overflow-wrap: break-word;\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 900px) {\n        .servicios-container {\n            gap: 30px;\n        }\n        .servicio-item {\n            max-width: 45%;\n        }\n    }\n\n    @media (max-width: 600px) {\n        .servicios-container {\n            flex-direction: column;\n            gap: 20px;\n            align-items: center;\n        }\n        .servicio-item {\n            max-width: 90%;\n        }\n        .servicio-titulo {\n            font-size: 18px;\n        }\n        .servicio-subtitulo {\n            font-size: 15px;\n        }\n    }\n<\/style>\n\n\n\n<div style=\"background: transparent; color: #ffffff; border-radius: 0px; padding: 30px; max-width: 100%; margin: auto; text-align: center;\">\n  \n  <h2 style=\"font-size: 24px; margin-bottom: 15px; color: #ffffff; font-weight: bold;\">\n    <strong>\u00daltimas noticias<\/strong>\n  <\/h2>\n  \n  <p style=\"margin-bottom: 20px; font-size: 16px; color: #ffffff; font-weight: bold;\">\n    Conoce nuestras novedades y publicaciones recientes en Instagram:\n  <\/p>\n\n  <!-- Feed de Instagram -->\n  <div style=\"margin-top: 20px;\">\n    \n<div id=\"sb_instagram\"  class=\"sbi sbi_mob_col_1 sbi_tab_col_2 sbi_col_3 sbi_width_resp\" style=\"padding-bottom: 18px;\"\t data-feedid=\"*1\"  data-res=\"auto\" data-cols=\"3\" data-colsmobile=\"1\" data-colstablet=\"2\" data-num=\"3\" data-nummobile=\"3\" data-item-padding=\"9\"\t data-shortcode-atts=\"{&quot;feed&quot;:&quot;1&quot;}\"  data-postid=\"11\" data-locatornonce=\"dd36ef9846\" data-imageaspectratio=\"3:4\" data-sbi-flags=\"favorLocal,gdpr\">\n\t\n\t<div id=\"sbi_images\"  style=\"gap: 18px;\">\n\t\t<div class=\"sbi_item sbi_type_video sbi_new sbi_transition\"\n\tid=\"sbi_18063557300363700\" data-date=\"1775663059\">\n\t<div class=\"sbi_photo_wrap\">\n\t\t<a class=\"sbi_photo\" href=\"https:\/\/www.instagram.com\/reel\/DW4EstHgNIk\/\" target=\"_blank\" rel=\"noopener nofollow\"\n\t\t\tdata-full-res=\"https:\/\/scontent-fra5-1.cdninstagram.com\/v\/t51.71878-15\/656880912_4429151280696244_4332280462273329008_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=110&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzIifQ%3D%3D&#038;_nc_ohc=i8XSmIARe10Q7kNvwFKGJnP&#038;_nc_oc=AdrSzc8LQyWe0Jm2lKCWOyvDZVmemy5Kf6KdSxZOPMZoQxUQjOHazreNOOhmuzViN1w&#038;_nc_zt=23&#038;_nc_ht=scontent-fra5-1.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=4xbtvePU8-1lMS_aG6t85A&#038;_nc_tpa=Q5bMBQGQI-o3zua5NG4eN0xXGhWOZPsKjBOxRl__BBGsBDMqjtsK5ncDotifOc8AVSOafAJU0S0lwEk0tA&#038;oh=00_Af6WggS1dKaJSISMNL5441CyS1xqJGFvmLri7qLb-ZeWdg&#038;oe=6A101A14\"\n\t\t\tdata-img-src-set=\"{&quot;d&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t51.71878-15\\\/656880912_4429151280696244_4332280462273329008_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzIifQ%3D%3D&amp;_nc_ohc=i8XSmIARe10Q7kNvwFKGJnP&amp;_nc_oc=AdrSzc8LQyWe0Jm2lKCWOyvDZVmemy5Kf6KdSxZOPMZoQxUQjOHazreNOOhmuzViN1w&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGQI-o3zua5NG4eN0xXGhWOZPsKjBOxRl__BBGsBDMqjtsK5ncDotifOc8AVSOafAJU0S0lwEk0tA&amp;oh=00_Af6WggS1dKaJSISMNL5441CyS1xqJGFvmLri7qLb-ZeWdg&amp;oe=6A101A14&quot;,&quot;150&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t51.71878-15\\\/656880912_4429151280696244_4332280462273329008_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzIifQ%3D%3D&amp;_nc_ohc=i8XSmIARe10Q7kNvwFKGJnP&amp;_nc_oc=AdrSzc8LQyWe0Jm2lKCWOyvDZVmemy5Kf6KdSxZOPMZoQxUQjOHazreNOOhmuzViN1w&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGQI-o3zua5NG4eN0xXGhWOZPsKjBOxRl__BBGsBDMqjtsK5ncDotifOc8AVSOafAJU0S0lwEk0tA&amp;oh=00_Af6WggS1dKaJSISMNL5441CyS1xqJGFvmLri7qLb-ZeWdg&amp;oe=6A101A14&quot;,&quot;320&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t51.71878-15\\\/656880912_4429151280696244_4332280462273329008_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzIifQ%3D%3D&amp;_nc_ohc=i8XSmIARe10Q7kNvwFKGJnP&amp;_nc_oc=AdrSzc8LQyWe0Jm2lKCWOyvDZVmemy5Kf6KdSxZOPMZoQxUQjOHazreNOOhmuzViN1w&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGQI-o3zua5NG4eN0xXGhWOZPsKjBOxRl__BBGsBDMqjtsK5ncDotifOc8AVSOafAJU0S0lwEk0tA&amp;oh=00_Af6WggS1dKaJSISMNL5441CyS1xqJGFvmLri7qLb-ZeWdg&amp;oe=6A101A14&quot;,&quot;640&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t51.71878-15\\\/656880912_4429151280696244_4332280462273329008_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzIifQ%3D%3D&amp;_nc_ohc=i8XSmIARe10Q7kNvwFKGJnP&amp;_nc_oc=AdrSzc8LQyWe0Jm2lKCWOyvDZVmemy5Kf6KdSxZOPMZoQxUQjOHazreNOOhmuzViN1w&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGQI-o3zua5NG4eN0xXGhWOZPsKjBOxRl__BBGsBDMqjtsK5ncDotifOc8AVSOafAJU0S0lwEk0tA&amp;oh=00_Af6WggS1dKaJSISMNL5441CyS1xqJGFvmLri7qLb-ZeWdg&amp;oe=6A101A14&quot;}\">\n\t\t\t<span class=\"sbi-screenreader\">Antes de salir a la cancha, todo se revisa.\nEn tu <\/span>\n\t\t\t\t\t\t<svg style=\"color: rgba(255,255,255,1)\" class=\"svg-inline--fa fa-play fa-w-14 sbi_playbtn\" aria-label=\"Play\" aria-hidden=\"true\" data-fa-processed=\"\" data-prefix=\"fa\" data-icon=\"play\" role=\"presentation\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path fill=\"currentColor\" d=\"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"><\/path><\/svg>\t\t\t<img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/plugins\/instagram-feed\/img\/placeholder.png\" alt=\"Antes de salir a la cancha, todo se revisa.\nEn tu empresa tambi\u00e9n.\nAuditor\u00eda Externa.\n\ud83d\udc49 auddit.ec\" aria-hidden=\"true\">\n\t\t<\/a>\n\t<\/div>\n<\/div><div class=\"sbi_item sbi_type_carousel sbi_new sbi_transition\"\n\tid=\"sbi_17936533614037944\" data-date=\"1775081575\">\n\t<div class=\"sbi_photo_wrap\">\n\t\t<a class=\"sbi_photo\" href=\"https:\/\/www.instagram.com\/p\/DWmvp60AKwh\/\" target=\"_blank\" rel=\"noopener nofollow\"\n\t\t\tdata-full-res=\"https:\/\/scontent-fra5-2.cdninstagram.com\/v\/t51.82787-15\/661285336_17875377864563087_319973377464187760_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=107&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&#038;_nc_ohc=h5L3tF8tfw4Q7kNvwHqMsZj&#038;_nc_oc=AdqhNYbR5InHdjGzYevdIp2Fyv-_6V34NaDi-DHrsu3Xt_6f7HhmbbnrqAB9ENCHIWY&#038;_nc_zt=23&#038;_nc_ht=scontent-fra5-2.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=4xbtvePU8-1lMS_aG6t85A&#038;_nc_tpa=Q5bMBQGysjtL2a3T108eZp_dc05WWXRAnccatmaNw4yUxW0_cmMcQCIB7R5Pi16twgh1RZCD-5iquyukjg&#038;oh=00_Af6t3yGi74YLTjeHrp8p_qFbIyyO35LAlsGV0Wtp1Rethg&#038;oe=6A10015F\"\n\t\t\tdata-img-src-set=\"{&quot;d&quot;:&quot;https:\\\/\\\/scontent-fra5-2.cdninstagram.com\\\/v\\\/t51.82787-15\\\/661285336_17875377864563087_319973377464187760_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=107&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=h5L3tF8tfw4Q7kNvwHqMsZj&amp;_nc_oc=AdqhNYbR5InHdjGzYevdIp2Fyv-_6V34NaDi-DHrsu3Xt_6f7HhmbbnrqAB9ENCHIWY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGysjtL2a3T108eZp_dc05WWXRAnccatmaNw4yUxW0_cmMcQCIB7R5Pi16twgh1RZCD-5iquyukjg&amp;oh=00_Af6t3yGi74YLTjeHrp8p_qFbIyyO35LAlsGV0Wtp1Rethg&amp;oe=6A10015F&quot;,&quot;150&quot;:&quot;https:\\\/\\\/scontent-fra5-2.cdninstagram.com\\\/v\\\/t51.82787-15\\\/661285336_17875377864563087_319973377464187760_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=107&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=h5L3tF8tfw4Q7kNvwHqMsZj&amp;_nc_oc=AdqhNYbR5InHdjGzYevdIp2Fyv-_6V34NaDi-DHrsu3Xt_6f7HhmbbnrqAB9ENCHIWY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGysjtL2a3T108eZp_dc05WWXRAnccatmaNw4yUxW0_cmMcQCIB7R5Pi16twgh1RZCD-5iquyukjg&amp;oh=00_Af6t3yGi74YLTjeHrp8p_qFbIyyO35LAlsGV0Wtp1Rethg&amp;oe=6A10015F&quot;,&quot;320&quot;:&quot;https:\\\/\\\/scontent-fra5-2.cdninstagram.com\\\/v\\\/t51.82787-15\\\/661285336_17875377864563087_319973377464187760_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=107&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=h5L3tF8tfw4Q7kNvwHqMsZj&amp;_nc_oc=AdqhNYbR5InHdjGzYevdIp2Fyv-_6V34NaDi-DHrsu3Xt_6f7HhmbbnrqAB9ENCHIWY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGysjtL2a3T108eZp_dc05WWXRAnccatmaNw4yUxW0_cmMcQCIB7R5Pi16twgh1RZCD-5iquyukjg&amp;oh=00_Af6t3yGi74YLTjeHrp8p_qFbIyyO35LAlsGV0Wtp1Rethg&amp;oe=6A10015F&quot;,&quot;640&quot;:&quot;https:\\\/\\\/scontent-fra5-2.cdninstagram.com\\\/v\\\/t51.82787-15\\\/661285336_17875377864563087_319973377464187760_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=107&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=h5L3tF8tfw4Q7kNvwHqMsZj&amp;_nc_oc=AdqhNYbR5InHdjGzYevdIp2Fyv-_6V34NaDi-DHrsu3Xt_6f7HhmbbnrqAB9ENCHIWY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQGysjtL2a3T108eZp_dc05WWXRAnccatmaNw4yUxW0_cmMcQCIB7R5Pi16twgh1RZCD-5iquyukjg&amp;oh=00_Af6t3yGi74YLTjeHrp8p_qFbIyyO35LAlsGV0Wtp1Rethg&amp;oe=6A10015F&quot;}\">\n\t\t\t<span class=\"sbi-screenreader\">Atenci\u00f3n empresas y contribuyentes.\nEl SRI ha emit<\/span>\n\t\t\t<svg class=\"svg-inline--fa fa-clone fa-w-16 sbi_lightbox_carousel_icon\" aria-hidden=\"true\" aria-label=\"Clone\" data-fa-pro\u0192cessed=\"\" data-prefix=\"far\" data-icon=\"clone\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\">\n                    <path fill=\"currentColor\" d=\"M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z\"><\/path>\n                <\/svg>\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/plugins\/instagram-feed\/img\/placeholder.png\" alt=\"Atenci\u00f3n empresas y contribuyentes.\nEl SRI ha emitido nuevas reglas para el uso de notas de cr\u00e9dito desmaterializadas. \ud83d\udccc\n\nDesde ahora, su aplicaci\u00f3n tendr\u00e1 condiciones espec\u00edficas que pueden impactar tu planificaci\u00f3n financiera y flujo de caja.\n\nEn Auddit te ayudamos a entender estos cambios y a tomar decisiones con respaldo t\u00e9cnico. \u2705\" aria-hidden=\"true\">\n\t\t<\/a>\n\t<\/div>\n<\/div><div class=\"sbi_item sbi_type_image sbi_new sbi_transition\"\n\tid=\"sbi_18130854397547307\" data-date=\"1773493332\">\n\t<div class=\"sbi_photo_wrap\">\n\t\t<a class=\"sbi_photo\" href=\"https:\/\/www.instagram.com\/p\/DV3aUegj9et\/\" target=\"_blank\" rel=\"noopener nofollow\"\n\t\t\tdata-full-res=\"https:\/\/scontent-fra5-1.cdninstagram.com\/v\/t39.30808-6\/649279187_122125948563006853_3988537419650312574_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=102&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&#038;_nc_ohc=fuPwkESgx5AQ7kNvwHdxQNv&#038;_nc_oc=Adq1tPONdluAnn6QP8KyB9RyrqMVQNI0BZL3d9mvo8RdZS6wwIWySDkaWp1-vLCjhgY&#038;_nc_zt=23&#038;_nc_ht=scontent-fra5-1.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=4xbtvePU8-1lMS_aG6t85A&#038;_nc_tpa=Q5bMBQG-DFCL3HlTdc-PRWNjAQ5QyjhCsY1LXr931efKZQ4I3AAtdo0lEmt5qOJbFzJAR2ahH0T-8dPIGQ&#038;oh=00_Af4SfiSLsy6sNOc5IYpNG-zFq7QNLo8hynNljmIKwgIVdg&#038;oe=6A1009F2\"\n\t\t\tdata-img-src-set=\"{&quot;d&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t39.30808-6\\\/649279187_122125948563006853_3988537419650312574_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=102&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=fuPwkESgx5AQ7kNvwHdxQNv&amp;_nc_oc=Adq1tPONdluAnn6QP8KyB9RyrqMVQNI0BZL3d9mvo8RdZS6wwIWySDkaWp1-vLCjhgY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQG-DFCL3HlTdc-PRWNjAQ5QyjhCsY1LXr931efKZQ4I3AAtdo0lEmt5qOJbFzJAR2ahH0T-8dPIGQ&amp;oh=00_Af4SfiSLsy6sNOc5IYpNG-zFq7QNLo8hynNljmIKwgIVdg&amp;oe=6A1009F2&quot;,&quot;150&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t39.30808-6\\\/649279187_122125948563006853_3988537419650312574_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=102&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=fuPwkESgx5AQ7kNvwHdxQNv&amp;_nc_oc=Adq1tPONdluAnn6QP8KyB9RyrqMVQNI0BZL3d9mvo8RdZS6wwIWySDkaWp1-vLCjhgY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQG-DFCL3HlTdc-PRWNjAQ5QyjhCsY1LXr931efKZQ4I3AAtdo0lEmt5qOJbFzJAR2ahH0T-8dPIGQ&amp;oh=00_Af4SfiSLsy6sNOc5IYpNG-zFq7QNLo8hynNljmIKwgIVdg&amp;oe=6A1009F2&quot;,&quot;320&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t39.30808-6\\\/649279187_122125948563006853_3988537419650312574_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=102&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=fuPwkESgx5AQ7kNvwHdxQNv&amp;_nc_oc=Adq1tPONdluAnn6QP8KyB9RyrqMVQNI0BZL3d9mvo8RdZS6wwIWySDkaWp1-vLCjhgY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQG-DFCL3HlTdc-PRWNjAQ5QyjhCsY1LXr931efKZQ4I3AAtdo0lEmt5qOJbFzJAR2ahH0T-8dPIGQ&amp;oh=00_Af4SfiSLsy6sNOc5IYpNG-zFq7QNLo8hynNljmIKwgIVdg&amp;oe=6A1009F2&quot;,&quot;640&quot;:&quot;https:\\\/\\\/scontent-fra5-1.cdninstagram.com\\\/v\\\/t39.30808-6\\\/649279187_122125948563006853_3988537419650312574_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=102&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMiJ9&amp;_nc_ohc=fuPwkESgx5AQ7kNvwHdxQNv&amp;_nc_oc=Adq1tPONdluAnn6QP8KyB9RyrqMVQNI0BZL3d9mvo8RdZS6wwIWySDkaWp1-vLCjhgY&amp;_nc_zt=23&amp;_nc_ht=scontent-fra5-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=4xbtvePU8-1lMS_aG6t85A&amp;_nc_tpa=Q5bMBQG-DFCL3HlTdc-PRWNjAQ5QyjhCsY1LXr931efKZQ4I3AAtdo0lEmt5qOJbFzJAR2ahH0T-8dPIGQ&amp;oh=00_Af4SfiSLsy6sNOc5IYpNG-zFq7QNLo8hynNljmIKwgIVdg&amp;oe=6A1009F2&quot;}\">\n\t\t\t<span class=\"sbi-screenreader\">Dormir es f\u00e1cil.\nSo\u00f1ar tranquilo es otra historia.<\/span>\n\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/plugins\/instagram-feed\/img\/placeholder.png\" alt=\"Dormir es f\u00e1cil.\nSo\u00f1ar tranquilo es otra historia.\n\nAlgunos tienen pesadillas financieras.\nOtros tienen Auddit.\n\nFeliz D\u00eda del Sue\u00f1o. \ud83c\udf19\" aria-hidden=\"true\">\n\t\t<\/a>\n\t<\/div>\n<\/div>\t<\/div>\n\n\t<div id=\"sbi_load\" >\n\n\t\n\t\n<\/div>\n\t\t<span class=\"sbi_resized_image_data\" data-feed-id=\"*1\"\n\t\t  data-resized=\"{&quot;18130854397547307&quot;:{&quot;id&quot;:&quot;649279187_122125948563006853_3988537419650312574_n&quot;,&quot;ratio&quot;:&quot;0.80&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;},&quot;17936533614037944&quot;:{&quot;id&quot;:&quot;661285336_17875377864563087_319973377464187760_n&quot;,&quot;ratio&quot;:&quot;0.80&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;},&quot;18063557300363700&quot;:{&quot;id&quot;:&quot;656880912_4429151280696244_4332280462273329008_n&quot;,&quot;ratio&quot;:&quot;0.56&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;}}\">\n\t<\/span>\n\t<\/div>\n\n\n  <\/div>\n\n<\/div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<div class=\"wp-block-group alignfull has-ast-global-color-4-background-color has-background is-layout-constrained wp-container-core-group-is-layout-8ed25b8e wp-block-group-is-layout-constrained\" id=\"reviews\">\n<p class=\"has-text-align-center\" style=\"font-size:22px;line-height:1.6\">\u201cTransformamos la auditoria en una herramienta clave para proteger tu empresa, detectar riesgos, oportunidades y potenciar&nbsp;tus&nbsp;decisiones.\u201d<\/p>\n\n\n\n<p class=\"has-text-align-center\"><strong> Auddit<\/strong><\/p>\n<\/div>\n\n\n\n<!-- Corporativo + Filiales --> \n<section class=\"corp-section\">\n  <div class=\"corp-container\">\n\n    <!-- T\u00edtulo principal -->\n    <h2 class=\"corp-title\">Somos parte del corporativo<\/h2>\n\n    <!-- Logo principal ACCONS (bot\u00f3n) -->\n    <div class=\"corp-main-logo\">\n      <a href=\"https:\/\/accons.ec\/\" target=\"_blank\" rel=\"noopener\">\n        <img decoding=\"async\"\n          src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-4-1.png\"\n          alt=\"ACCONS\"\n          class=\"corporate-logo\"\n        >\n      <\/a>\n    <\/div>\n\n    <!-- Subt\u00edtulo -->\n    <h3 class=\"corp-subtitle\">Empresas Filiales<\/h3>\n\n    <!-- Grid de filiales (logos + bullets) -->\n    <div class=\"services-container\">\n      \n      <!-- Leggal -->\n      <div class=\"service-box\">\n        <a href=\"https:\/\/leggal.ec\/\" target=\"_blank\" rel=\"noopener\">\n          <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-5.png\"\n               alt=\"Leggal\" class=\"service-logo\">\n        <\/a>\n        <ul class=\"service-list\">\n          <li>Asesor\u00eda Tributaria Mensual (Grupos Empresariales)<\/li>\n          <li>Planificaci\u00f3n Fiscal<\/li>\n          <li>Constituci\u00f3n de Sociedades (S.A.S., An\u00f3nimas, Limitadas, de Hecho)<\/li>\n          <li>Transformaci\u00f3n de Sociedades<\/li>\n          <li>Aumentos de Capital<\/li>\n          <li>Actas de Juntas y Asambleas de Socios o Accionistas<\/li>\n          <li>Cesi\u00f3n de Acciones o Participaciones<\/li>\n          <li>Reclamos al SRI por Pago Indebido \u2013 En Exceso<\/li>\n          <li>Devoluciones de Impuestos (IVA, ISD, Renta)<\/li>\n          <li>Impugnaciones de Actos Administrativos<\/li>\n          <li>Declaraciones Patrimoniales<\/li>\n          <li>Tr\u00e1mites Tributarios, de Familia, Laborales y Civiles<\/li>\n        <\/ul>\n      <\/div>\n\n      <!-- Connta -->\n      <div class=\"service-box\">\n        <a href=\"https:\/\/connta.ec\/\" target=\"_blank\" rel=\"noopener\">\n          <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-3.png\"\n               alt=\"Connta\" class=\"service-logo\">\n        <\/a>\n        <ul class=\"service-list\">\n          <li>Declaraciones de Impuestos SRI<\/li>\n          <li>Anexos Transaccionales SRI<\/li>\n          <li>Outsourcing Contabilidad Mensual (Personas Naturales)<\/li>\n          <li>Outsourcing Contabilidad Mensual (Peque\u00f1a y Mediana Empresa)<\/li>\n          <li>Reprocesos Contables<\/li>\n          <li>Asesor\u00eda Contable Mensual (Mediana Empresa)<\/li>\n          <li>Proyecciones Pago de Impuestos<\/li>\n        <\/ul>\n      <\/div>\n\n      <!-- Teamms -->\n      <div class=\"service-box\">\n        <a href=\"https:\/\/teamms.ec\/\" target=\"_blank\" rel=\"noopener\">\n          <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-2-2.png\"\n               alt=\"Teamms\" class=\"service-logo\">\n        <\/a>\n        <ul class=\"service-list\">\n          <li>Outsourcing N\u00f3mina Mensual (Mediana Empresa)<\/li>\n          <li>C\u00e1lculo de Liquidaciones<\/li>\n          <li>Control Mensual<\/li>\n          <li>N\u00f3mina Empleadas Dom\u00e9sticas<\/li>\n          <li>Contrataci\u00f3n de Personal<\/li>\n          <li>C\u00e1lculo y Solicitud de Jubilaci\u00f3n<\/li>\n          <li>Afiliaci\u00f3n IESS Voluntario<\/li>\n          <li>Gesti\u00f3n de Usuarios IESS y Ministerio de Trabajo<\/li>\n          <li>Solicitud de Pr\u00e9stamos Quirografarios<\/li>\n          <li>Asesor\u00eda y C\u00e1lculo de Vacaciones<\/li>\n          <li>Finiquitos<\/li>\n          <li>Reclutamiento y Selecci\u00f3n de Personal<\/li>\n          <li>Tr\u00e1mites Varios Ministerio de Trabajo y IESS<\/li>\n        <\/ul>\n      <\/div>\n\n      <!-- Nexdatta (\u00faltimo) -->\n      <div class=\"service-box\">\n        <a href=\"https:\/\/www.nexdatta.com\/\" target=\"_blank\" rel=\"noopener\">\n          <img decoding=\"async\" src=\"https:\/\/auddit.ec\/wp-content\/uploads\/2025\/09\/Artboard-1-copy-3-1.png\"\n               alt=\"Nexdatta\" class=\"service-logo\">\n        <\/a>\n        <ul class=\"service-list\">\n          <li>An\u00e1lisis de Big data<\/li>\n          <li>An\u00e1lisis de tendencias de clientes<\/li>\n          <li>An\u00e1lisis de mercado<\/li>\n          <li>Valoraci\u00f3n de empresas<\/li>\n          <li>Automatizaci\u00f3n de Reportes e Inteligencia de Negocios (BI)<\/li>\n          <li>Integraci\u00f3n con bases de datos y sistemas empresariales<\/li>\n          <li>Implementaci\u00f3n de modelos predictivos efectivos<\/li>\n        <\/ul>\n      <\/div>\n\n    <\/div>\n  <\/div>\n<\/section>\n\n<style>\n\/* Contenedor general *\/\n.corp-section { padding: 60px 20px; }\n.corp-container { max-width: 1300px; margin: 0 auto; text-align: center; }\n\n\/* T\u00edtulos *\/\n.corp-title { font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 20px; }\n.corp-subtitle { font-size: 22px; font-weight: 700; color: #fff; margin: 40px 0 35px; }\n\n\/* Logo principal ACCONS (m\u00e1s grande) *\/\n.corp-main-logo { margin-bottom: 10px; }\n.corporate-logo { max-width: 280px; width: 100%; height: auto; object-fit: contain; filter: brightness(0) invert(1); }\n\n\/* Grid responsivo sim\u00e9trico *\/\n.services-container {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n  gap: 50px;\n  align-items: start;\n}\n\n\/* Caja de cada filial *\/\n.service-box { text-align: center; }\n\n\/* Logos de filiales: mismos tama\u00f1os para simetr\u00eda *\/\n.service-logo {\n  height: 110px;         \n  max-width: 200px;      \n  width: 100%;\n  object-fit: contain;\n  margin-bottom: 18px;\n  filter: brightness(0) invert(1);  \/* logos en blanco *\/\n}\n\n\/* Lista de servicios *\/\n.service-list {\n  list-style: disc;\n  list-style-position: outside;\n  padding-left: 20px;    \n  margin: 0;\n  text-align: left;      \n  font-size: 15px;\n  line-height: 1.6;\n  color: #fff;   \/* texto en blanco *\/\n}\n\n\/* Ajustes responsivos *\/\n@media (max-width: 768px) {\n  .corporate-logo { max-width: 220px; }\n  .service-logo { height: 100px; }\n  .corp-title { font-size: 24px; }\n  .corp-subtitle { font-size: 20px; }\n}\n<\/style>\n\n\n\n<div class=\"wp-block-group alignfull is-layout-constrained wp-container-core-group-is-layout-eb524166 wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Banner con Fondo Animado Auditor\u00eda y Confianza Financiera Servicios orientados al control financiero y a fortalecer la confianza en la [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"plain-container","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","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-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"class_list":["post-11","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/pages\/11","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/comments?post=11"}],"version-history":[{"count":70,"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/pages\/11\/revisions"}],"predecessor-version":[{"id":284,"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/pages\/11\/revisions\/284"}],"wp:attachment":[{"href":"https:\/\/auddit.ec\/index.php\/wp-json\/wp\/v2\/media?parent=11"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}