        :root {
            --primary: #182338;
            --primary-dark: #4f46e5;
            --secondary: #37A7DE;
            --accent: #06b6d4;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #6b7280;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-left: 5px;
        }

        .logo-container {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 30%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
            position: relative;
            overflow: hidden;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite linear;
        }

        .logo-container i {
            color: white;
            z-index: 1;
            position: relative;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--secondary);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(24, 35, 56, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(24, 35, 56, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .hero h1 span {
            color: var(--secondary);
        }

        .hero p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .feature-card p {
            color: var(--gray);
        }

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .steps {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 50px;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }

        .step h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        .step p {
            color: var(--gray);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
        }

        .testimonial-content {
            margin-bottom: 20px;
            color: var(--gray);
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 18px;
            opacity: 0.9;
        }

        .cta .btn {
            background: white;
            color: var(--primary);
        }

        .cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Modal WhatsApp */
        .whatsapp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .whatsapp-modal.active {
            display: flex;
        }

        .modal-content {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .modal-content h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .modal-content p {
            color: var(--gray);
            margin-bottom: 25px;
        }

        .whatsapp-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
        }

        .whatsapp-btn i {
            font-size: 20px;
        }

        .close-modal {
            margin-top: 20px;
            background: transparent;
            border: 1px solid var(--gray);
            color: var(--gray);
            padding: 8px 20px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .close-modal:hover {
            background: var(--gray);
            color: white;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }

            .hero-content {
                text-align: center;
            }

            .steps {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .header-container .btn {
                display: none;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s;
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
            }

            nav ul {
                flex-direction: column;
                gap: 15px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .cta h2 {
                font-size: 28px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

            .feature-card,
            .step,
            .testimonial-card {
                padding: 20px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Animações personalizadas */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        /* Scrollbar personalizada */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Efeito de brilho nos cards */
        .glow-card {
            position: relative;
            overflow: hidden;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s;
        }

        .glow-card:hover::before {
            left: 100%;
        }

        /* Power BI Integration Section */
        .power-bi-integration {
            padding: 80px 0;
            background: white;
        }

        .power-bi-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .power-bi-visual {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .power-bi-content {
            flex: 1;
        }

        /* Power BI Dashboard Simulation */
        .bi-dashboard {
            width: 100%;
            max-width: 400px;
            background: linear-gradient(135deg, #1f2d3d 0%, #2d3b4d 100%);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            border: 1px solid #37465a;
        }

        .bi-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #37465a;
        }

        .bi-dots {
            display: flex;
            gap: 6px;
        }

        .bi-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--secondary);
        }

        .bi-dots span:nth-child(1) {
            background: #ff6b6b;
        }

        .bi-dots span:nth-child(2) {
            background: #4ecdc4;
        }

        .bi-dots span:nth-child(3) {
            background: #45b7d1;
        }

        .bi-title {
            color: white;
            font-weight: 600;
            font-size: 14px;
            opacity: 0.9;
        }

        .bi-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .bi-chart {
            grid-column: 1 / -1;
            height: 120px;
            background: #2a3849;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: end;
            gap: 10px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, var(--secondary), #4ecdc4);
            border-radius: 4px 4px 0 0;
            min-height: 20px;
            transition: height 0.3s ease;
        }

        .bi-metrics {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .metric {
            background: #2a3849;
            border-radius: 8px;
            padding: 12px;
            text-align: center;
        }

        .metric-value {
            color: var(--secondary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .metric-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 10px;
            text-transform: uppercase;
        }

        .bi-pie {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pie-chart {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: conic-gradient(#ff6b6b 0% 30%,
                    #4ecdc4 30% 70%,
                    #45b7d1 70% 100%);
            position: relative;
        }

        .pie-slice {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .bi-footer {
            display: flex;
            justify-content: center;
            padding-top: 15px;
            border-top: 1px solid #37465a;
        }

        .power-bi-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 14px;
        }

        .power-bi-logo i {
            font-size: 16px;
        }

        /* Power BI Content */
        .power-bi-content .section-title {
            text-align: left;
            margin-bottom: 30px;
        }

        .power-bi-content .section-title span {
            color: var(--secondary);
        }

        .power-bi-description {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .power-bi-benefits {
            margin-bottom: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: rgba(55, 163, 222, 0.05);
            transform: translateX(5px);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .benefit-content p {
            color: var(--gray);
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
        }

        .power-bi-cta {
            text-align: left;
        }

        .power-bi-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* Animations */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .bi-dashboard {
            animation: float 6s ease-in-out infinite;
        }

        .chart-bar {
            animation: grow 1s ease-out;
        }

        @keyframes grow {
            from {
                height: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .power-bi-container {
                flex-direction: column;
                gap: 40px;
            }

            .power-bi-content .section-title {
                text-align: center;
            }

            .power-bi-cta {
                text-align: center;
            }

            .bi-dashboard {
                max-width: 350px;
            }
        }

        @media (max-width: 768px) {
            .benefit-item {
                flex-direction: column;
                text-align: center;
            }

            .benefit-icon {
                align-self: center;
            }

            .bi-content {
                grid-template-columns: 1fr;
            }

            .bi-metrics {
                flex-direction: row;
                justify-content: space-around;
            }
        }

        /* Desk4All Agent Section - Atualizado */
        .agent-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .agent-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .agent-content {
            flex: 1;
        }

        .agent-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .agent-image-container {
            position: relative;
            max-width: 408px;
            width: 100%;
        }

        .agent-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(55, 167, 222, 0.1),
                0 0 0 8px rgba(255, 255, 255, 0.8),
                0 0 0 10px rgba(55, 167, 222, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .agent-image-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 25px;
            z-index: 1;
            opacity: 0.1;
            transition: all 0.3s ease;
        }

        .agent-image-container::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(55, 167, 222, 0.3);
            border-radius: 22px;
            z-index: 1;
            pointer-events: none;
        }

        .agent-image:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(55, 167, 222, 0.2),
                0 0 0 8px rgba(255, 255, 255, 0.9),
                0 0 0 12px rgba(55, 167, 222, 0.1);
        }

        .agent-image-container:hover::before {
            opacity: 0.15;
            transform: scale(1.05);
        }

        .agent-features {
            margin-bottom: 40px;
        }

        .agent-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .agent-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .agent-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .agent-text h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .agent-text p {
            color: var(--gray);
            margin: 0;
            line-height: 1.5;
        }

        .agent-cta {
            text-align: left;
        }

        /* Animations */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .agent-image {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .agent-container {
                flex-direction: column;
                gap: 40px;
            }

            .agent-cta {
                text-align: center;
            }

            .agent-image-container {
                max-width: 350px;
            }

            .agent-image {
                animation: float 8s ease-in-out infinite;
            }
        }

        @media (max-width: 768px) {
            .agent-feature {
                flex-direction: column;
                text-align: center;
            }

            .agent-icon {
                align-self: center;
            }

            .agent-image-container {
                max-width: 300px;
            }

            .agent-image {
                animation: float 10s ease-in-out infinite;
            }
        }

        @media (max-width: 480px) {
            .agent-image-container {
                max-width: 280px;
            }

            .agent-image {
                border-radius: 15px;
                box-shadow:
                    0 8px 20px rgba(0, 0, 0, 0.1),
                    0 0 0 1px rgba(55, 167, 222, 0.1),
                    0 0 0 6px rgba(255, 255, 255, 0.8),
                    0 0 0 8px rgba(55, 167, 222, 0.2);
            }

            .agent-image:hover {
                box-shadow:
                    0 15px 30px rgba(0, 0, 0, 0.15),
                    0 0 0 1px rgba(55, 167, 222, 0.2),
                    0 0 0 6px rgba(255, 255, 255, 0.9),
                    0 0 0 10px rgba(55, 167, 222, 0.1);
            }
        }

        /* monitoramento */
        /* Monitoring Section */
        .monitoring-section {
            padding: 80px 0;
            background: white;
        }

        .monitoring-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .monitoring-content {
            flex: 1;
        }

        .monitoring-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .monitoring-image-container {
            position: relative;
            max-width: 600px;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(55, 167, 222, 0.1),
                0 0 0 12px rgba(255, 255, 255, 0.8),
                0 0 0 14px rgba(55, 167, 222, 0.1);
            transition: all 0.4s ease;
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        }

        .monitoring-image {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.4s ease;
        }

        .monitoring-image-container:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(55, 167, 222, 0.2),
                0 0 0 12px rgba(255, 255, 255, 0.9),
                0 0 0 16px rgba(55, 167, 222, 0.15);
        }

        .monitoring-image-container:hover .monitoring-image {
            transform: scale(1.02);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(24, 35, 56, 0.9) 0%,
                    rgba(55, 167, 222, 0.7) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .monitoring-image-container:hover .image-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .monitoring-image-container:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content i {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }

        .overlay-content span {
            font-size: 18px;
            font-weight: 600;
            display: block;
        }

        .monitoring-features {
            margin-bottom: 40px;
        }

        .monitoring-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            border-radius: 12px;
            background: #f8fafc;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }

        .monitoring-feature:hover {
            background: white;
            border-left-color: var(--secondary);
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .monitoring-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .monitoring-feature:hover .monitoring-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .monitoring-text h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 600;
        }

        .monitoring-text p {
            color: var(--gray);
            margin: 0;
            line-height: 1.6;
            font-size: 15px;
        }

        .monitoring-cta {
            text-align: left;
        }

        /* Stats Counter */
        .stats-counter {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }

        /* Animations */
        @keyframes dashboardFloat {

            0%,
            100% {
                transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
            }

            50% {
                transform: perspective(1000px) rotateY(-3deg) rotateX(3deg) translateY(-10px);
            }
        }

        .monitoring-image-container {
            animation: dashboardFloat 8s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .monitoring-image-container {
                max-width: 500px;
            }
        }

        @media (max-width: 992px) {
            .monitoring-container {
                flex-direction: column-reverse;
                gap: 40px;
            }

            .monitoring-cta {
                text-align: center;
            }

            .monitoring-image-container {
                max-width: 100%;
                transform: none;
            }

            .stats-counter {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .monitoring-feature {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .monitoring-icon {
                align-self: center;
            }

            .stats-counter {
                flex-wrap: wrap;
                gap: 20px;
            }

            .stat-item {
                flex: 0 0 calc(50% - 20px);
            }

            .monitoring-image-container {
                box-shadow:
                    0 15px 30px rgba(0, 0, 0, 0.12),
                    0 0 0 1px rgba(55, 167, 222, 0.1),
                    0 0 0 8px rgba(255, 255, 255, 0.8),
                    0 0 0 10px rgba(55, 167, 222, 0.1);
            }
        }

        @media (max-width: 480px) {
            .stat-item {
                flex: 0 0 100%;
            }

            .stat-number {
                font-size: 28px;
            }

            .overlay-content i {
                font-size: 36px;
            }

            .overlay-content span {
                font-size: 16px;
            }

            .monitoring-image-container:hover {
                transform: translateY(-5px);
            }
        }