:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #1e293b;
            --accent: #5dd2f9;
            --dark: #0f172a;
            --light: #f8fafc;
            --trci-blue: #00529b;
            --trci-orange: #00529b;
            --trci-dark: #1a1a1a;
            --trci-light: #f8f9fa;
            --microsoft-blue: #00529b;
            --microsoft-dark-blue: #004e8c;
            --microsoft-orange: #a52e2e;
            --microsoft-dark: #1a1a1a;
            --microsoft-light: #f8f9fa;
            --sharepoint-purple: #6a1b9a;
            --trci-brown: #654321;
            --trci-green: #2d745a;
            --trci-gray: #717171;
            --trci-red: #a52e2e;
            --trci-purple: #41105f;
            --trci-dark-light: #1a1a1ac0;

            --accent-dark: #c0392b;
            --gray: #95a5a6;
            --gray-light: #bdc3c7;
            --white: #ffffff;
            --success: #27ae60;
            --warning: #f39c12;
            --info: #2980b9;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 9999px;
            
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--secondary);
            overflow-x: hidden;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .dropdown-item{
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
            color: #0f172a;
        }

        .logo{
            width: 35%;
        }
        
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-red {
            background: linear-gradient(135deg, var(--dark) 30%, var(--microsoft-orange) 100%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-brown {
            background: linear-gradient(135deg, var(--dark) 0%, var(--trci-brown) 70%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-green {
            background: linear-gradient(135deg, var(--dark) 30%, var(--trci-green) 100%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-blue {
            background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-white {
            background: linear-gradient(135deg, var(--dark) 20%, var(--trci-gray) 100%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-purple {
            background: linear-gradient(135deg, var(--dark) 20%, var(--trci-purple) 100%);
            position: relative;
            overflow: hidden;
            
        }

        .hero-red::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .hero-brown::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .hero-green::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .hero-blue::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .hero-white::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }

        .hero-purple::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/fundo.jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .titulo{
            color:var(--microsoft-orange);
        }

        .icone{
            color:var(--microsoft-orange);
        }

        
        .service-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }

        .descricao{
           font-size: 12px; 
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--dark) 100%);
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg,var(--dark) 0%, var(--primary) 100%);
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
        }
        
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
        }
        
        .btn-outline-primary:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }
        
        .tech-logo {
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .tech-logo:hover {
            filter: grayscale(0%) brightness(1);
            opacity: 1;
        }
        
         .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        
        .tech-badge {
            background-color: rgba(32, 146, 245, 0.1);
            color: var(--trci-orange);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-orange);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }

        .pfsense-feature {
            background-color: rgba(0, 82, 155, 0.05);
            border-left: 4px solid var(--trci-orange);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }
        
        
        .stats-item {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .cta{
            background: var(--dark);
        }
        
        footer {
            background: var(--dark);
            color: white;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://assets.codepen.io/285131/footer-bg-pattern.svg') center/cover no-repeat;
            opacity: 0.05;
        }
        
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .hero-m365 {
            background: linear-gradient(rgba(0, 120, 212, 0.9), rgba(0, 120, 212, 0.9)), 
                        url('https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/Microsoft-365-Copilot-Hero-1920x600-2x:VP1-539x440');
            background-size: cover;
            background-position: center;
        }
        
        .btn-m365 {
            background-color: var(--microsoft-blue);
            border-color: var(--microsoft-blue);
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            color: var(--light);
        }

        .btn-m365:hover {
            background: linear-gradient(135deg,var(--dark) 0%, var(--primary) 100%);
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            color: var(--light);
        }
        
        .btn-outline-m365 {
            border-color: white;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
        }
        
        .btn-outline-m365:hover {
            background-color: white;
            color: var(--microsoft-blue);
        }

        .sharepoint-badge {
            background-color: rgba(106, 27, 154, 0.1);
            color: var(--sharepoint-purple);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .sharepoint-icon {
            background-color: rgba(106, 27, 154, 0.1);
            color: var(--sharepoint-purple);
        }
        
        .solution-feature {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--microsoft-blue);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

         .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--microsoft-blue);
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 20px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--microsoft-blue);
        }

         .compliance-card {
            border-left: 4px solid var(--microsoft-orange);
            transition: all 0.3s ease;
        }
        
        .compliance-card:hover {
            transform: translateX(5px);
        }
        
        .app-icon {
            font-size: 35px;
            margin-bottom: 15px;
        }
        
        .word-icon { color: #2b579a; }
        .excel-icon { color: #217346; }
        .ppt-icon { color: #b7472a; }
        .outlook-icon { color: #0072c6; }
        .teams-icon { color: #6264a7; }
        .onedrive-icon { color: #094ab2; }

    /* Configurações exclusivas de cores nas páginas*/

    
        /*Marrom - LGPD*/
		.feature-icon-brown {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-brown);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }
		
		.feature-icon-mini-brown {
			color: var(--trci-brown);
        }
		
		.solution-feature-brown {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--trci-brown);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

         .timeline-brown {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-brown:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--trci-brown);
        }
        
        .timeline-brown-item {
            position: relative;
            padding-bottom: 20px;
        }
        
        .timeline-brown-item:before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--trci-brown);
        }
		
		.service-icon-brown {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }

        /*Azul - Segurança de Rede*/

        /*Verde - Infraestrutura de TI*/

		.feature-icon-green {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-green);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }
		
		.feature-icon-mini-green{
			color: var(--trci-green);
        }
		
		.solution-feature-green {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--trci-green);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

         .timeline-green {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-green:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--trci-green);
        }
        
        .timeline-green-item {
            position: relative;
            padding-bottom: 20px;
        }
        
        .timeline-green-item:before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--trci-green);
        }
		
		.service-icon-green {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }
        /*Cinza - Microsoft 365*/
        
		.feature-icon-gray {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-gray);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }
		
		.feature-icon-mini-gray {
			color: var(--trci-gray);
        }
		
		.solution-feature-gray {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--trci-gray);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

         .timeline-gray {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-gray:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--trci-gray);
        }
        
        .timeline-gray-item {
            position: relative;
            padding-bottom: 20px;
        }
        
        .timeline-gray-item:before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--trci-gray);
        }
		
		.service-icon-gray{
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }

         .compliance-card-gray {
            border-left: 4px solid var(--trci-gray);
            transition: all 0.3s ease;
        }
        
        .compliance-card-gray:hover {
            transform: translateX(5px);
        }

        /*Vermelho - Monitoramento 24/7*/

        .feature-icon-red {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-red);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }
		
		.feature-icon-mini-red {
			color: var(--trci-red);
        }
		
		.solution-feature-red {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--trci-red);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

		
		.service-icon-red{
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }

         .compliance-card-red {
            border-left: 4px solid var(--trci-red);
            transition: all 0.3s ease;
        }
        
        .compliance-card-red:hover {
            transform: translateX(5px);
        }

        /*Roxo - Testes de Invasão*/
        .feature-icon-purple {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;           
            color: var(--trci-purple);
            font-size: 24px;
            margin-bottom: 20px;
            background-color: rgba(32, 146, 245, 0.1);
        }
		
		.feature-icon-mini-purple {
			color: var(--trci-purple);
        }
		
		.solution-feature-purple {
            background-color: rgba(0, 120, 212, 0.05);
            border-left: 4px solid var(--trci-purple);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
        }

		
		.service-icon-purple{
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 28px;
        }

         .compliance-card-purple {
            border-left: 4px solid var(--trci-purple);
            transition: all 0.3s ease;
        }
        
        .compliance-card-purple:hover {
            transform: translateX(5px);
        }

        .timeline-purple {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline-purple:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--trci-purple);
        }
        
        .timeline-purple-item {
            position: relative;
            padding-bottom: 20px;
        }
        
        .timeline-purple-item:before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--trci-purple);
        }

        .compliance-card-purple {
            border-left: 4px solid var(--trci-purple);
            transition: all 0.3s ease;
        }
        
        .compliance-card-purple:hover {
            transform: translateX(5px);
        }

        /*Página Appliances*/
                /* Comparação */
        .comparison {
            background-color: #f8fafc;
        }
        
        .comparison-table {
            width: 100%;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: none;
            border-radius: 16px;
            background: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background-color: var(--dark);
            color: var(--light);
            font-weight: 600;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .feature-category {
            font-weight: 600;
            background-color: #f1f5f9 !important;
        }
        
        .highlight {
            background-color: #e3f2fd;
            position: relative;
        }
        
        .highlight::after {
            content: "✓ Melhor opção";
            position: absolute;
            right: 5px;
            color: var(--success);
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .pros {
            color: var(--success);
            font-weight: 500;
        }
        
        .cons {
            color: var(--trci-red);
            font-weight: 500;
        }
        
        .why-choose {
            background: #e3f2fd;
            padding: 2rem;
            border-radius: var(--radius-md);
            margin-top: 3rem;
        }
        
        .why-choose ul {
            columns: 2;
        }
        
        .why-choose li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
            break-inside: avoid;
        }
        
        .why-choose li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
        }
        

    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }

    .whatsapp-button:hover {
      background-color: #1ebc5c;
      text-decoration: none;
    }

    .whatsapp-button i {
      font-size: 28px;
    }

    /* Cookies*/
    #cookie-banner {
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    #cookie-banner a {
        text-decoration: underline;
    }