        body {
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        h1, h2, h3, h4 {
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .janela {
            background-color: #1f35b5;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .janela:hover {
            background-color: #E36B00;
        }

        .teste {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .teste:hover {
            background-color: #E36B00;
        }
        
        .btn {
            display: inline-block;
            background: #EF9F34;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 1px 1px 1px 1px rgba(31 31 31 / 30%);
        }
        
        .btn:hover {
            background: #E36B00;
            transform: translateY(-3px);
            box-shadow: 1px 1px 1px 1px rgba(31 31 31 / 30%);
			color: #fff;
        }
        
        .btn-accent {
            background: var(--accent);
            box-shadow: 0 5px 15px rgba(0, 204, 153, 0.3);
        }
        
        .btn-accent:hover {
            background: var(--primary);
            box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
        }
        
        .btn-nav {
            padding: 10px 20px;
            font-size: 0.9rem;
            margin-left: 15px;
        }
        
        section {
            padding: 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background-color: #fff !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .top-header {
            background-color: #1f35b5 !important;
			color: #fff;
			font-size: 1.2rem;
            width: 100%;
            top: 0;
            z-index: 1000;
			padding: 10px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
			max-width: 200px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        nav ul li {
            margin-left: 10px;
        }
        
        nav ul li a {
            color: #1f35b5;
            padding: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #EF9F34;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about, .contact {
                flex-direction: column;
            }
            
            .about-image, .about-content, .contact-info, .contact-form {
                width: 100%;
            }
            
            nav ul li {
                margin-left: 15px;
            }
            
            .btn-nav {
                margin-left: 15px;
                padding: 8px 15px;
                font-size: 0.8rem;
            }
			
			.logo {
                margin-left: 15px;
				max-width: 150px;
            }
			
			.teste {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .header-container {
                padding: 15px 0;
            }
            
            nav {
                position: fixed;
                top: 10px;
                left: 5px;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
                align-items: flex-start;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .btn-nav {
                margin: 15px 0 0 0;
                display: block;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
			.logo {
                margin-left: 15px;
            }
			
			.teste {
            display: inline-block;
            background: #25d366;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
			.logo {
                margin-left: 15px;
				max-width: 150px;
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 75px;
            right: 10px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-float i {
            margin-top: 5px;
        }
        
        /* Tooltip */
        .whatsapp-tooltip {
            visibility: hidden;
            width: 120px;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
        }
        

        
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 75px;
                right: 12px;
                font-size: 25px;
            }
            
            
        }

        /* Rest of your existing CSS... */
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(55 55 55 / 80%)), url('../imagens/banner_topo.jpg') no-repeat center center/cover;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
			height: 650px;
        }
        
        .hero h1 {
            color: white;
            margin-bottom: 20px;
        }
        
        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* Seções Gerais */
        .section-padding, .services-section {
            padding: 60px 0;
        }
        .bg-white {
            background-color: var(--white) !important;
        }
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #5460cc;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        p {
            line-height: 1.2;
            font-size: 1.1rem;
        }
        .text-lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-color);
        }

        /* Seção de Vídeo e Imagem com Texto */
        .img-fluid-custom {
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,.1);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,.1);
        }
        .video-container iframe,
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Cards de Depoimentos */
        .testimonial-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,.08);
            text-align: center;
            height: 100%; /* Garante que os cards tenham a mesma altura */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--secondary-color);
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .testimonial-card strong {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Sessão de Perguntas Frequentes (FAQ) */
        .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: var(--light-bg);
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        .accordion-button {
            font-weight: 600;
			font-size: 1.2rem;
        }

        .services-section {
            background-color: #fff;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,.05);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }

        .footer {
	        background-color: #1f35b5 !important;
            font-weight: 600;
	        font-size: 1.2rem;
        }


        /* Botão Flutuante Voltar ao Topo */
        #backToTopBtn {
            display: none; /* Escondido por padrão, JavaScript mostra */
            position: fixed;
            bottom: 20px;
            right: 10px;
            width: 50px;
            height: 50px;
            z-index: 99;
			text-align: center;
            border: none;
            outline: none;
            background-color: #EF9F34;
            color: var(--white);
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            font-size: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,.2);
            transition: background-color 0.3s ease;
        }
        #backToTopBtn:hover {
            background-color: #E36B00;
        }

        /* Banner Flutuante LGPD */
        #lgpdConsentBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgb(249 249 249 / 90%);
            color: #1f35b5;
			font-weight: 600;
            padding: 15px 20px;
            text-align: center;
            z-index: 1000; /* Alto z-index para garantir visibilidade sobre outros elementos */
            display: none; /* **IMPORTANTE: Escondido por padrão no CSS. JavaScript mostrará se necessário.** */
            flex-wrap: wrap; /* Permite que o conteúdo quebre linha em telas pequenas */
            justify-content: center;
            align-items: center;
            gap: 15px; /* Espaço entre o texto e o botão */
            transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
            /* A classe hidden NÃO será usada para a visibilidade inicial, apenas para esconder após o clique */
        }
        #lgpdConsentBanner.hidden { /* Classe para esconder o banner com transição */
            transform: translateY(100%);
            /* O display: none; será aplicado via JS após a transição, para garantir que não ocupe espaço */
        }
        #lgpdConsentBanner button {
            background-color: #1f35b5;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        #lgpdConsentBanner button:hover {
            background-color: #E36B00;
        }

        /* Media Queries para Responsividade */
        @media (max-width: 768px) {
            .hero-banner-content h1 {
                font-size: 2rem;
            }
            .hero-banner-content p {
                font-size: 1rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.75rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .navbar-nav .btn-action-nav {
                display: block; /* Garante que o botão fique visível no mobile */
                margin-top: 1rem;
                width: 100%;
            }
            .order-md-1 {
                order: 1; /* Para alinhar o texto primeiro no mobile, se a imagem estiver à esquerda */
            }
            .order-md-2 {
                order: 2; /* Para alinhar a imagem depois no mobile */
            }
        }