
        .container-multiempresa {
            max-width: 1200px;
            margin: 0 auto;
            background: #fdfdfd;
            border-radius: 24px;
            overflow: hidden;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
        }

        .hero-section {
            display: flex;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .content-left {
            flex: 1;
            background: #e4eaf2;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #0747b4;
            position: relative;
            z-index: 5;
        }

        .content-left h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .content-left p {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.95;
            color: #222222;
        }

        .cta-button {
            background: #0747b4;
            color: #e4eaf2;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .image-right {
            flex: 1;
            position: relative;
            z-index: 10;
            margin-left: -300px;
            background: url('/assets/img/soluciones/S_Multiusuario.png');
            background-size: cover;
            background-position: right;
            background-repeat: no-repeat;
            min-height: 500px;
            width: 100%;
            height: 150%;
        }

        .floating-chart {
            position: absolute;
            top: 40px;
            left: -80px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 280px;
            z-index: 10;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .chart-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #374151;
        }

        .chart-period {
            font-size: 0.8rem;
            color: #6b7280;
        }

        .chart-legend {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            color: #6b7280;
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .legend-dot.blue { background: #3b82f6; }
        .legend-dot.green { background: #10b981; }
        .legend-dot.gray { background: #6b7280; }

        .chart-area {
            height: 120px;
            background: linear-gradient(to bottom, #eff6ff 0%, #dbeafe 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .chart-bars {
            display: flex;
            align-items: end;
            height: 100%;
            padding: 16px;
            gap: 8px;
        }

        .chart-bar {
            background: #3b82f6;
            border-radius: 4px 4px 0 0;
            flex: 1;
        }

        .chart-bar:nth-child(1) { height: 80%; }
        .chart-bar:nth-child(2) { height: 45%; }
        .chart-bar:nth-child(3) { height: 35%; }
        .chart-bar:nth-child(4) { height: 25%; }

        .floating-dropdown {
            position: absolute;
            bottom: 80px;
            right: -60px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            width: 200px;
            z-index: 10;
        }

        .dropdown-header {
            padding: 16px;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-icon {
            width: 20px;
            height: 20px;
            background: #e2e8f0;
            border-radius: 4px;
        }

        .dropdown-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: #64748b;
        }

        .dropdown-arrow {
            margin-left: auto;
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid #64748b;
        }

        .dropdown-item {
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #374151;
            border-bottom: 1px solid #f1f5f9;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .item-icon {
            width: 16px;
            height: 16px;
            border-radius: 2px;
        }

        .item-icon.blue { background: #3b82f6; }
        .item-icon.purple { background: #8b5cf6; }

        .red-arrow {
            position: absolute;
            top: 20px;
            right: 100px;
            width: 200px;
            height: 100px;
            z-index: 5;
        }

        .red-arrow::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 3px;
            background: #ef4444;
            border-radius: 2px;
            transform: rotate(-25deg);
            transform-origin: right center;
        }

        @media (max-width: 1000px) {
            .container-multiempresa {
                margin: 20px;
                padding: 15px;
            }
            
            .hero-section {
                flex-direction: column;
            }
            
            .content-left {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .content-left h1 {
                font-size: 2.5rem;
            }
            
            .image-right {
                display: none;
            }
            
            .floating-chart,
            .floating-dropdown {
                display: none;
            }
        }