* { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        
        html { 
            scroll-behavior: smooth; 
        }
        
        body { 
            font-family: 'Inter', sans-serif; 
            line-height: 1.6; 
            color: #333; 
            margin: 0;
            padding: 0;
        }
        
        h1, h2, h3, h4 { 
            font-family: 'Poppins', sans-serif; 
            font-weight: 700; 
        }
        
        img { 
            max-width: 100%; 
            height: auto; 
            display: block; 
        }
        
        a { 
            text-decoration: none; 
            color: inherit; 
        }
        
        /* UTILITÁRIOS */
        .container { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 24px; 
        }
        
        .gradient-blue { 
            background: linear-gradient(135deg, #021b79 0%, #0052d4 50%, #0072ff 100%); 
        }
        
        .gradient-gold { 
            background: linear-gradient(135deg, #E1AC0F 0%, #f5d142 100%); 
        }
        
        /* HEADER */
        header { 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            margin-top: -26px; /* Puxa para cima o espaço do padding */
        }
        
        nav { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 48px 24px; 
        }
        
        .logo { 
            display: flex; 
            align-items: center; 
            padding: 16px 0; 
        }
        
        .logo img { 
            height: 70px; 
        }
        
        .nav-links { 
            display: flex; 
            gap: 32px; 
            align-items: center; 
            list-style: none; 
        }
        
        .nav-links a { 
            color: white; 
            font-weight: 500; 
            transition: color 0.3s; 
        }
        
        .nav-links a:hover { 
            color: #fbbf24; 
        }
        
        .btn-primary { 
            background: #fbbf24; 
            color: #021b79 !important; 
            padding: 12px 24px; 
            border-radius: 50px; 
            font-weight: 600; 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            transition: all 0.3s; 
        }
        
        .btn-primary:hover { 
            background: #fcd34d; 
            transform: scale(1.05); 
        }
        
        /* HERO */
        .hero { 
            padding: 60px 0; 
            min-height: 85vh; 
            display: flex; 
            align-items: center; 
        }
        
        .hero-content { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 40px; 
            align-items: center; 
        }
        
        .hero-text { 
            color: white; 
        }
        
        .hero h1 { 
            font-size: 48px; 
            line-height: 1.1; 
            margin-bottom: 20px; 
        }
        
        .hero h1 span { 
            color: #fbbf24; 
        }
        
        .hero p { 
            font-size: 18px; 
            margin-bottom: 24px; 
            color: #e5e7eb; 
        }
        
        .hero-features { 
            list-style: none; 
            margin-bottom: 24px; 
        }
        
        .hero-features li { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            margin-bottom: 12px; 
            color: white; 
        }
        
        .hero-features i { 
            color: #fbbf24; 
            font-size: 18px; 
        }
        
        .hero-buttons { 
            display: flex; 
            gap: 16px; 
            flex-wrap: wrap; 
        }
        
        .btn-cta { 
            background: #fbbf24 !important; 
            color: #021b79 !important; 
            padding: 16px 32px; 
            border-radius: 50px; 
            font-weight: 700; 
            font-size: 18px; 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            box-shadow: 0 10px 30px rgba(251,191,36,0.3); 
            transition: all 0.3s; 
        }
        
        .btn-cta:hover { 
            transform: translateY(-2px); 
        }
        
        .btn-secondary { 
            border: 2px solid #fbbf24; 
            color: #fbbf24; 
            padding: 16px 32px; 
            border-radius: 50px; 
            font-weight: 700; 
            font-size: 18px; 
            transition: all 0.3s; 
        }
        
        .btn-secondary:hover { 
            background: #fbbf24; 
            color: #021b79; 
        }
        
        .hero-cards { 
            display: flex; 
            flex-direction: column; 
            gap: 16px; 
        }
        
        .hero-card { 
            background: white; 
            padding: 20px; 
            border-radius: 16px; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
            position: relative; 
            animation: floatCard 3s ease-in-out infinite; 
        }
        
        .hero-card:nth-child(1) { 
            animation-delay: 0s; 
        }
        
        .hero-card:nth-child(2) { 
            margin-left: 30px; 
            animation-delay: 1s; 
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .card-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            background: #dcfce7; 
            color: #166534; 
            padding: 4px 10px; 
            border-radius: 20px; 
            font-size: 12px; 
            font-weight: 600; 
            margin-bottom: 10px; 
        }
        
        .card-icon { 
            width: 40px; 
            height: 40px; 
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); 
            border-radius: 10px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin-bottom: 12px; 
        }
        
        .card-icon i { 
            font-size: 20px; 
            color: white; 
        }
        
        .hero-card h3 { 
            font-size: 18px; 
            color: #1f2937; 
            margin-bottom: 6px; 
        }
        
        .hero-card p { 
            font-size: 13px; 
            color: #6b7280; 
        }
        
        .speed-badge { 
            position: absolute; 
            top: -8px; 
            right: -8px; 
            background: white; 
            padding: 10px 14px; 
            border-radius: 10px; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
        }
        
        .speed-badge i { 
            font-size: 20px; 
            color: #3b82f6; 
        }
        
        .speed-badge strong { 
            font-size: 16px; 
            color: #1f2937; 
        }
        
        /* STATS */
        .stats { 
            padding: 32px 0; 
        }
        
        .stats-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 24px; 
        }
        
        .stat-item { 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 12px; 
        }
        
        .stat-item i { 
            font-size: 32px; 
            color: #021b79; 
        }
        
        .stat-text { 
            font-size: 22px; 
            font-weight: 700; 
            color: #021b79; 
        }
        
        /* SECTION HEADER */
        .section-header { 
            text-align: center; 
            margin-bottom: 60px; 
        }
        
        .section-header h2 { 
            font-size: 48px; 
            margin-bottom: 16px; 
            color: #1f2937; 
        }
        
        .section-header h2 span { 
            color: #0052d4; 
        }
        
        .section-header p { 
            font-size: 20px; 
            color: #6b7280; 
            max-width: 800px; 
            margin: 0 auto; 
        }
        
        /* SERVIÇOS */
        .services { 
            padding: 80px 0; 
            background: #f9fafb; 
        }
        
        .services-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 32px; 
        }
        
        .service-card { 
            background: white; 
            padding: 40px; 
            border-radius: 16px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
            transition: all 0.3s; 
            position: relative; 
        }
        
        .service-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 40px rgba(0,82,212,0.3); 
        }
        
        .service-card.featured { 
            border: 4px solid #fbbf24; 
        }
        
        .featured-badge { 
            position: absolute; 
            top: -16px; 
            left: 50%; 
            transform: translateX(-50%); 
            background: #fbbf24; 
            color: #021b79; 
            padding: 4px 16px; 
            border-radius: 50px; 
            font-size: 12px; 
            font-weight: 700; 
        }
        
        .service-icon { 
            width: 64px; 
            height: 64px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin-bottom: 24px; 
        }
        
        .service-icon i { 
            font-size: 32px; 
            color: white; 
        }
        
        .service-card h3 { 
            font-size: 24px; 
            margin-bottom: 16px; 
            color: #1f2937; 
        }
        
        .service-card p { 
            color: #6b7280; 
            margin-bottom: 24px; 
        }
        
        .service-features { 
            list-style: none; 
            margin-bottom: 24px; 
        }
        
        .service-features li { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            margin-bottom: 8px; 
            color: #4b5563; 
        }
        
        .service-features i { 
            color: #0052d4; 
        }
        
        .service-card .btn { 
            display: block; 
            text-align: center; 
            background: #0052d4; 
            color: white; 
            padding: 12px 24px; 
            border-radius: 8px; 
            font-weight: 600; 
            transition: all 0.3s; 
        }
        
        .service-card .btn:hover { 
            background: #003d9e; 
        }
        
        .service-card.featured .btn { 
            background: linear-gradient(135deg, #E1AC0F 0%, #f5d142 100%); 
        }
        
        /* DIFERENCIAIS */
        .diferenciais { 
            padding: 80px 0; 
        }
        
        .diferenciais .section-header h2, 
        .diferenciais .section-header p { 
            color: white; 
        }
        
        .diferenciais .section-header h2 span { 
            color: #fbbf24; 
        }
        
        .diferenciais-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 32px; 
            margin-bottom: 60px; 
        }
        
        .diferencial-card { 
            background: rgba(255,255,255,0.1); 
            padding: 40px; 
            border-radius: 16px; 
            text-align: center; 
            color: white; 
            transition: all 0.3s; 
        }
        
        .diferencial-card:hover { 
            transform: translateY(-10px); 
            background: rgba(255,255,255,0.15); 
        }
        
        .diferencial-icon { 
            width: 80px; 
            height: 80px; 
            background: #fbbf24; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin: 0 auto 24px; 
        }
        
        .diferencial-icon i { 
            font-size: 40px; 
            color: #021b79; 
        }
        
        .diferencial-card h3 { 
            font-size: 24px; 
            margin-bottom: 16px; 
        }
        
        .cta-center { 
            text-align: center; 
        }
        
        /* DEPOIMENTOS */
        .depoimentos { 
            padding: 80px 0; 
        }
        
        .depoimentos-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 32px; 
            margin-bottom: 48px; 
        }
        
        .depoimento-card { 
            background: white; 
            padding: 32px; 
            border-radius: 16px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
        }
        
        .video-wrapper { 
            position: relative; 
            padding-bottom: 56.25%; 
            height: 0; 
            overflow: hidden; 
            border-radius: 12px; 
            margin-bottom: 24px; 
        }
        
        .video-wrapper iframe { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
        }
        
        .stars { 
            display: flex; 
            gap: 4px; 
            color: #fbbf24; 
            font-size: 20px; 
            margin-bottom: 16px; 
        }
        
        .depoimento-card h4 { 
            font-size: 20px; 
            margin-bottom: 8px; 
            color: #1f2937; 
        }
        
        .depoimento-card p { 
            color: #6b7280; 
        }
        
        .google-reviews { 
            text-align: center; 
            background: white; 
            padding: 40px; 
            border-radius: 16px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
        }
        
        .google-reviews .stars { 
            justify-content: center; 
            font-size: 32px; 
        }
        
        /* CTA URGÊNCIA */
        .cta-urgencia { 
            padding: 50px 0; 
            text-align: center; 
        }
        
        .cta-urgencia h2 { 
            font-size: 48px; 
            color: #021b79; 
            margin-bottom: 20px; 
        }
        
        .cta-urgencia p { 
            font-size: 20px; 
            color: #1e40af; 
            max-width: 800px; 
            margin: 0 auto 24px; 
        }
        
        .cta-urgencia .btn-cta { 
            background: #021b79 !important; 
            color: #fbbf24 !important; 
        }
        
        /* CONTATO */
        .contato { 
            padding: 80px 0; 
            background: white; 
        }
        
        .contato-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 48px; 
        }
        
        .contato-info { 
            background: linear-gradient(135deg, #0052d4 0%, #1e3a8a 100%); 
            padding: 40px; 
            border-radius: 16px; 
            color: white; 
        }
        
        .contato-info h3 { 
            font-size: 24px; 
            margin-bottom: 24px; 
        }
        
        .contato-item { 
            display: flex; 
            align-items: center; 
            gap: 16px; 
            padding: 16px; 
            background: rgba(255,255,255,0.1); 
            border-radius: 12px; 
            margin-bottom: 16px; 
            transition: all 0.3s; 
        }
        
        .contato-item:hover { 
            background: rgba(255,255,255,0.2); 
        }
        
        .contato-icon { 
            width: 48px; 
            height: 48px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 20px; 
        }
        
        .bonus-box { 
            background: #fbbf24; 
            color: #021b79; 
            padding: 24px; 
            border-radius: 12px; 
            margin-top: 32px; 
        }
        
        .bonus-box p:first-child { 
            font-weight: 700; 
            font-size: 18px; 
            margin-bottom: 8px; 
        }
        
        .mapa-wrapper { 
            border-radius: 16px; 
            overflow: hidden; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
            height: 400px; 
        }
        
        .mapa-wrapper iframe { 
            width: 100%; 
            height: 100%; 
            border: 0; 
        }
        
        /* FAQ */
        .faq { 
            padding: 80px 0; 
            background: #f9fafb; 
        }
        
        .faq-container { 
            max-width: 800px; 
            margin: 0 auto; 
        }
        
        .faq-item { 
            background: white; 
            border-radius: 12px; 
            margin-bottom: 16px; 
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
        }
        
        .faq-question { 
            width: 100%; 
            padding: 24px; 
            text-align: left; 
            background: none; 
            border: none; 
            cursor: pointer; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            font-size: 18px; 
            font-weight: 600; 
            color: #1f2937; 
            transition: color 0.3s; 
        }
        
        .faq-question:hover { 
            color: #0052d4; 
        }
        
        .faq-question i { 
            transition: transform 0.3s; 
        }
        
        .faq-question.active i { 
            transform: rotate(180deg); 
        }
        
        .faq-answer { 
            max-height: 0; 
            overflow: hidden; 
            transition: max-height 0.3s ease; 
        }
        
        .faq-answer.show { 
            max-height: 500px; 
        }
        
        .faq-answer p { 
            padding: 0 24px 24px; 
            color: #6b7280; 
        }
        
        /* FOOTER */
        footer { 
            padding: 48px 0; 
            color: white; 
        }
        
        .footer-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 48px; 
            margin-bottom: 32px; 
        }
        
        footer h4 { 
            margin-bottom: 16px; 
        }
        
        footer .logo-footer { 
            display: block; 
            margin-bottom: 16px; 
        }
        
        footer .logo-footer img { 
            height: 60px; 
        }
        
        .social-links { 
            display: flex; 
            gap: 12px; 
            margin-top: 16px; 
        }
        
        .social-icon { 
            width: 40px; 
            height: 40px; 
            background: rgba(255,255,255,0.2); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: all 0.3s; 
        }
        
        .social-icon:hover { 
            background: rgba(255,255,255,0.3); 
            transform: scale(1.1); 
        }
        
        footer ul { 
            list-style: none; 
        }
        
        footer ul li { 
            margin-bottom: 8px; 
        }
        
        footer ul li a { 
            color: #e5e7eb; 
            transition: color 0.3s; 
        }
        
        footer ul li a:hover { 
            color: #fbbf24; 
        }
        
        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.2); 
            padding-top: 32px; 
            text-align: center; 
            color: #e5e7eb; 
        }
        
        /* WHATSAPP FLOAT */
        .whatsapp-float { 
            position: fixed; 
            bottom: 30px; 
            right: 30px; 
            width: 60px; 
            height: 60px; 
            background: #25d366; 
            color: white; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 30px; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
            z-index: 999; 
            transition: all 0.3s; 
        }
        
        .whatsapp-float:hover { 
            background: #128C7E; 
            transform: scale(1.1); 
        }
        
        /* LGPD BANNER */
        .lgpd-banner { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: rgba(2,27,121,0.98); 
            color: white; 
            padding: 24px; 
            z-index: 998; 
            transform: translateY(100%); 
            transition: transform 0.5s; 
        }
        
        .lgpd-banner.show { 
            transform: translateY(0); 
        }
        
        .lgpd-content { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            gap: 24px; 
            max-width: 1200px; 
            margin: 0 auto; 
        }
        
        .lgpd-buttons { 
            display: flex; 
            gap: 12px; 
        }
        
        .lgpd-buttons button { 
            padding: 12px 24px; 
            border-radius: 50px; 
            font-weight: 600; 
            cursor: pointer; 
            transition: all 0.3s; 
        }
        
        .btn-accept { 
            background: #fbbf24; 
            color: #021b79; 
            border: none; 
        }
        
        .btn-reject { 
            background: transparent; 
            color: white; 
            border: 2px solid white; 
        }
        
        /* RESPONSIVE - MOBILE */
        @media (max-width: 768px) {
            /* Header mobile - mostra apenas logo centralizada */
            nav {
                padding: 20px 16px;
                justify-content: center;
            }
            
            .logo img {
                height: 50px;
            }
            
            .nav-links {
                display: none;
            }
            
            .container { 
                padding: 0 16px; 
            }
            
            .hero-content { 
                grid-template-columns: 1fr; 
            }
            
            .hero-card:nth-child(2) { 
                margin-left: 0; 
            }
            
            .hero h1 { 
                font-size: 32px; 
                line-height: 1.2; 
                text-align: center; 
            }
            
            .hero p { 
                font-size: 16px; 
                text-align: center; 
            }
            
            .hero-buttons { 
                flex-direction: column; 
            }
            
            .btn-cta, .btn-secondary { 
                width: 100%; 
                justify-content: center; 
                font-size: 16px; 
                padding: 14px 24px; 
            }
            
            .stats-grid { 
                grid-template-columns: 1fr; 
                gap: 16px; 
            }
            
            .stat-item { 
                flex-direction: column; 
            }
            
            .stat-text { 
                font-size: 18px; 
                text-align: center; 
            }
            
            .section-header h2 { 
                font-size: 28px; 
            }
            
            .services-grid, 
            .diferenciais-grid, 
            .depoimentos-grid, 
            .contato-grid, 
            .footer-grid { 
                grid-template-columns: 1fr; 
            }
            
            .cta-urgencia h2 { 
                font-size: 28px; 
            }
            
            .lgpd-content { 
                flex-direction: column; 
                align-items: flex-start; 
            }
            
            .lgpd-buttons { 
                width: 100%; 
            }
            
            .lgpd-buttons button { 
                flex: 1; 
            }
        }