        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 1px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }       
        
		.bg-pri {
			--bs-bg-opacity: 1;
			background-color: rgb(10 58 129) !important;
		}
		.hero-section {
            height: 100vh;
			padding-top: 110px; /* espaço suficiente para contato + navbar */
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
		.Geo-section {
			padding-top: 128px; /* espaço suficiente para contato + navbar */
		}
		.serv-section {
			padding-top: 135px; /* espaço suficiente para contato + navbar */
		}
		/* Estilo para os links */
		.card-title-link {
			text-decoration: none !important; /* Remove o sublinhado */
			color: inherit; /* Mantém a cor original do texto */
			display: block; /* Faz o link ocupar toda a área */
		  }
		  
		/* Efeito hover */
		.card-title-link:hover h5 {
			color: #0d6efd; /* Azul do Bootstrap (ou outra cor de sua preferência) */
			transition: color 0.3s ease; /* Suaviza a transição */
		  }
		/* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        /* Progress Bar */
        .progress-container {
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 1001;
        }
        
        .progress-bar {
            height: 4px;
            background: var(--primary-color);
            width: 0%;
            transition: width 0.1s ease;
        }
        
        /* Back to Top Button */
        .btn-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .btn-back-to-top:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        /* Hero Section */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            z-index: -2;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.5;
            z-index: -1;
        }
        
        .hero-content {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
            animation-delay: 0.3s;
        }
        
        /* Logo Animation */
        .logo-anim {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
            animation-delay: 0.5s;
        }
        
        .logo-anim-delay {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
            animation-delay: 0.7s;
        }
        
        .company-logo {
            width: 100%;
            max-width: 400px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
        }
        
        /* Hover Effects */
        .hover-scale {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Login Modal */
        .login-card {
            border: none;
            overflow: hidden;
        }
        
        .login-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .login-body {
            padding: 30px;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .hero-section {
                padding-top: 125px;
                height: auto;
                min-height: 100vh;
            }
            
            .company-logo {
                max-width: 300px;
                margin: 40px auto;
            }
        }
        
        @media (max-width: 768px) {
            .btn-back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }