:root {
            --erp-primary: #0066cc; /* Azul corporativo profundo */
            --erp-accent: #0099ff; /* Azul brillante para detalles */
            --erp-text: #1a202c;
            --erp-text-light: #718096;
            --erp-bg: #ffffff;
            --erp-surface: #f8fafc;
            --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 30px 60px -12px rgba(0, 50, 150, 0.15);
        }

    

        /* --- SECCIÓN PRINCIPAL --- */
        .erp-showcase-section {
            background-color: var(--erp-bg);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Fondo decorativo sutil (Grid tecnológica) */
        .erp-showcase-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(0, 153, 255, 0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(0, 153, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, transparent 100%);
        }

        .erp-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* División 50/50 */
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* --- COLUMNA DE TEXTO --- */
        .erp-content {
            opacity: 0; /* Inicial para animación */
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .badge-pill {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 153, 255, 0.1);
            color: var(--erp-primary);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 153, 255, 0.2);
        }

        h1.erp-title {
            font-size: 3rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--erp-text);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .erp-title span {
            color: var(--erp-accent);
            position: relative;
            display: inline-block;
        }
        
        /* Subrayado animado en el título */
        .erp-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(0, 153, 255, 0.2);
            z-index: -1;
            transform: skewX(-15deg);
        }

        p.erp-desc {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--erp-text-light);
            margin-bottom: 2rem;
        }

        /* --- ESTADÍSTICAS ANIMADAS --- */
        .stats-grid {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            border-top: 1px solid #e2e8f0;
            padding-top: 2rem;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--erp-text);
            margin: 0;
            display: flex;
            align-items: baseline;
        }

        .stat-item h3 span {
            font-size: 1.2rem;
            color: var(--erp-accent);
            margin-left: 5px;
        }

        .stat-item p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--erp-text-light);
            font-weight: 500;
        }

        .citation {
            font-size: 0.75rem;
            color: #a0aec0;
            margin-top: 5px;
            display: block;
        }

        /* --- BOTONES --- */
        .cta-group {
            display: flex;
            gap: 1rem;
        }

        .btn-modern {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--erp-primary);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.39);
        }

        .btn-primary:hover {
            background: var(--erp-accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 153, 255, 0.23);
        }

        .btn-ghost {
            background: transparent;
            color: var(--erp-text);
            border: 1px solid #e2e8f0;
        }

        .btn-ghost:hover {
            border-color: var(--erp-text);
            background: #f7fafc;
        }

        /* --- COLUMNA VISUAL (IMAGEN 3D) --- */
        .erp-visual {
            position: relative;
            perspective: 1500px; /* Clave para el efecto 3D */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Contenedor de la imagen estilo "Browser Window" */
        .browser-mockup {
            width: 100%;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            transform: rotateY(-10deg) rotateX(5deg); /* Rotación inicial 3D */
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            border: 1px solid rgba(255,255,255,0.5);
            animation: floatImage 6s ease-in-out infinite;
        }

        /* Barra superior de ventana ficticia */
        .browser-header {
            height: 30px;
            background: #f1f5f9;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            padding: 0 15px;
            gap: 6px;
        }
        .dot { width: 10px; height: 10px; border-radius: 50%; }
        .red { background: #fc8181; }
        .yellow { background: #f6ad55; }
        .green { background: #68d391; }

        .browser-mockup img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Efecto Hover 3D interactivo */
        .erp-visual:hover .browser-mockup {
            transform: rotateY(0deg) rotateX(0deg) scale(1.02);
            box-shadow: var(--shadow-hover);
            animation-play-state: paused;
        }

        /* Elemento flotante decorativo (Badge) */
        .floating-badge {
            position: absolute;
            bottom: 40px;
            left: -20px;
            background: white;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: floatBadge 5s ease-in-out infinite reverse;
            z-index: 10;
        }

        .badge-icon {
            width: 40px;
            height: 40px;
            background: #ebf8ff;
            color: var(--erp-accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        /* --- ANIMACIONES --- */
        @keyframes floatImage {
            0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
            50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-20px); }
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(15px); }
        }

        /* Clase activa para entrar en escena */
        .animated-entry {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .erp-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .erp-title { font-size: 2.2rem; }
            .stats-grid { justify-content: center; }
            .cta-group { justify-content: center; }
            .browser-mockup { transform: none; animation: none; }
            .floating-badge { display: none; }
        }