/* ==========================================
           PALETA DE CORES E VARIÁVEIS CYBERPUNK/B2B
           ========================================== */
        :root {
            --bg-main: #0B0F19;         /* Azul Escuro Profundo / Espacial */
            --bg-card: #131A2C;         /* Tom de cartão ligeiramente mais claro */
            --bg-card-hover: #1A233D;   /* Destaque interativo do cartão */
            --primary: #00F0FF;         /* Ciano Elétrico (Inovação/Futuro) */
            --secondary: #00FFA3;       /* Verde Esmeralda Neon (Segurança/Sucesso/Conversão) */
            --text-main: #F3F4F6;       /* Branco acinzentado ultra legível */
            --text-muted: #9CA3AF;      /* Cinza para textos secundários */
            --border-glow: rgba(0, 240, 255, 0.15);
            --font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* CONFIGURAÇÃO GERAL */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-family);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* EFEITO DE FUNDO GLOW INTERATIVO */
        body::before {
            content: '';
            position: absolute;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
            top: -150px;
            right: -50px;
            z-index: 0;
            pointer-events: none;
        }
/* ==========================================================================
   CSS RESPONSIVO PARA EQUIPAMENTOS MÓVEIS (TABLETS E SMARTPHONES)
   ========================================================================== */

/* 1. Ajustes para Tablets (Telas até 992px) */
@media screen and (max-width: 992px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-container, 
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .services-grid, 
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr); /* Passa para 2 colunas nos tablets */
        gap: 20px;
    }

    .dual-buttons-grid {
        grid-template-columns: 1fr; /* Botões do formulário empilham se faltar espaço */
        gap: 10px;
    }
}

/* 2. Ajustes para Smartphones / iPhones e Android (Telas até 768px) */
@media screen and (max-width: 768px) {
    /* Ajustes de Tipografia */
    h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    p, .intro-text {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* Seções e Espaçamentos */
    .hero-section {
        padding: 60px 0;
    }

    .content-area, 
    .diferenciais-section, 
    .contact-section {
        padding: 40px 0;
    }

    /* Forçar tudo a virar uma única coluna no celular */
    .services-grid, 
    .diferenciais-grid, 
    .dual-buttons-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .hero-actions, .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Ajuste de botões para mobile */
    .btn-primary, .btn-whatsapp, .btn-submit {
        width: 100%; /* Botões ocupam a largura total da tela no celular, facilitando o toque */
        text-align: center;
        box-sizing: border-box;
        padding: 14px 20px;
    }

    /* Ajuste específico para o formulário */
    .contact-form-area {
        margin-top: 30px;
        width: 100%;
    }
    
    .form-group input, 
    .form-group select {
        font-size: 16px !important; /* Evita que o iOS (iPhone) dê zoom automático indesejado ao focar no campo */
    }
}
        /* ==========================================
           HEADER / NAVEGAÇÃO PREMIUM
           ========================================== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .gmc-logo {
            height: 38px;
            width: auto;
            filter: drop-shadow(0px 0px 8px rgba(0, 240, 255, 0.3));
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .logo-area:hover .gmc-logo {
            transform: rotate(10deg) scale(1.08);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .main-nav {
            display: flex;
            gap: 32px;
        }

        .main-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
            position: relative;
            padding: 4px 0;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--text-main);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .btn-header-contact {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
        }

        .btn-header-contact:hover {
            background: var(--primary);
            color: var(--bg-main);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
            transform: translateY(-2px);
        }

        /* ==========================================
           HERO SECTION INTERATIVA
           ========================================== */
        .hero-section {
            padding: 180px 0 100px 0;
            position: relative;
            background: radial-gradient(ellipse at bottom, #131A2C 0%, var(--bg-main) 80%);
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1.5px;
            max-width: 900px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FFFFFF 30%, #9CA3AF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 680px;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #00B2FF 100%);
            color: var(--bg-main);
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 25px rgba(0, 240, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 35px rgba(0, 240, 255, 0.5);
        }

        /* ==========================================
           SOLUÇÕES / CARDS ALINHADOS (3 EM CIMA, 2 EM BAIXO)
           ========================================== */
        .content-area {
            padding: 100px 0;
        }

        .section-title-area {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-area h2 {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .intro-text {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center; /* Centraliza perfeitamente os cards da linha inferior */
        }

        .service-card {
            background-color: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            
            /* Distribuição matemática precisa para 3 por linha mantendo o espaçamento */
            flex: 1 1 calc(33.333% - 24px);
            min-width: 290px;
            max-width: calc(33.333% - 16px);
        }

        /* Linha decorativa superior sutil */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            background-color: var(--bg-card-hover);
            transform: translateY(-8px);
            border-color: rgba(0, 240, 255, 0.2);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.05);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 24px;
            background: rgba(0, 240, 255, 0.08);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--bg-main);
            background: var(--primary);
            box-shadow: 0 0 15px var(--primary);
            transform: scale(1.05);
        }

        /* Ícone diferenciado Microsoft */
        .service-card[data-service="microsoft"] .service-icon {
            color: #00A4EF;
            background: rgba(0, 164, 239, 0.08);
        }
        .service-card[data-service="microsoft"]:hover .service-icon {
            color: #FFF;
            background: #00A4EF;
            box-shadow: 0 0 15px #00A4EF;
        }

        .service-card h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ==========================================
           DIFERENCIAIS / CONFIANÇA B2B
           ========================================== */
        .diferenciais-section {
            padding: 100px 0;
            background: rgba(19, 26, 44, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
            position: relative;
        }

        .diferenciais-section h2 {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 60px;
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .diferencial-item {
            text-align: left;
            padding: 16px;
        }

        .diferencial-item i {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 20px;
            display: block;
        }

        .diferencial-item h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .diferencial-item p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ==========================================
           CONTATO E FORMULÁRIO INTERATIVO (GATILHO)
           ========================================== */
        .contact-section {
            padding: 120px 0;
            position: relative;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 60px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 40px;
        }

        .btn-whatsapp {
            background: #25D366;
            color: #FFF;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
            background: #20ba59;
        }

        /* CARD DO FORMULÁRIO INTEGRADO */
        .contact-form-area {
            background-color: var(--bg-card);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .contact-form-area::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(0, 255, 163, 0.05) 0%, rgba(0,0,0,0) 70%);
            bottom: -50px;
            left: -50px;
            pointer-events: none;
        }

        .b2b-form .form-group {
            margin-bottom: 24px;
        }

        .b2b-form label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #E5E7EB;
            letter-spacing: 0.3px;
        }

        .b2b-form input, 
        .b2b-form select {
            width: 100%;
            background-color: var(--bg-main);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 14px 16px;
            border-radius: 8px;
            color: #FFF;
            font-family: var(--font-family);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .b2b-form input:focus, 
        .b2b-form select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
            background-color: rgba(11, 15, 25, 0.6);
        }

        .b2b-form select option {
            background-color: var(--bg-card);
            color: #FFF;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, #00C880) !important;
            color: var(--bg-main) !important;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 255, 163, 0.2);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 255, 163, 0.4);
            filter: brightness(1.1);
        }

        /* ==========================================
           MOTOR DOS DOIS BOTÕES INLINE RESPONSIVOS
           ========================================== */
        .dual-buttons-grid {
            display: flex !important;
            flex-direction: row !important; /* Força os dois botões na mesma linha */
            gap: 16px !important;           /* Separação ideal entre os botões */
            margin-top: 24px !important;
            width: 100% !important;
        }
        .btn-dual-action {
            flex: 1 !important;
            width: auto !important;         /* Anula o bloco 100% do CSS nativo */
            margin: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            text-decoration: none !important;
            border: none !important;
            white-space: nowrap !important; /* Evita quebras de texto */
        }
        .btn-action-whatsapp-green {
            background: #25D366 !important;
            color: #FFFFFF !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2) !important;
        }
        .btn-action-whatsapp-green:hover {
            background: #20ba59 !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4) !important;
        }

        /* RESPONSIVIDADE ADAPTATIVA */
        @media (max-width: 992px) {
            .service-card {
                flex: 1 1 calc(50% - 24px);
                max-width: calc(50% - 12px);
            }
        }

        @media (max-width: 768px) {
            .main-nav { display: none; }
            .hero-text h1 { font-size: 32px; }
            .contact-container { grid-template-columns: 1fr; }
            .footer-brand { flex-direction: column; text-align: center; }
        }

        @media (max-width: 520px) {
            .dual-buttons-grid {
                flex-direction: column !important;
                gap: 12px !important;
            }
            .btn-dual-action {
                width: 100% !important;
            }
        }

        @media (max-width: 600px) {
            .service-card {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
    </style>