<style>
        /* ================= VARIABLES ================= */
        :root {
            --blue: #003087;
            --blue-dark: #001f5c;
            --yellow: #ffbf00;
            --text-dark: #0f172a;
            --text-gray: #475569;
            --bg-white: #ffffff;
            --bg-soft: #f8fafc;
            --glass: rgba(255, 255, 255, 0.9);
            --transition: all 0.3s ease;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 40px -10px rgba(0, 48, 135, 0.08);
            --radius: 16px;
        }

        /* ================= RESET ================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; top: 0 !important; position: static !important; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        
        /* HIDE GOOGLE TRANSLATE UI */
        #google_translate_element { display: none !important; }
        .goog-te-banner-frame, .skiptranslate, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
        .goog-text-highlight { background: none !important; box-shadow: none !important; }

        /* ================= FLOATING BUTTONS ================= */
        .fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
        .fab { width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 24px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
        .fab:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(0,0,0,0.25); }
        .fab-wa { background: #25D366; }
        .fab-up { background: var(--blue); opacity: 0; visibility: hidden; transition: 0.3s; }
        .fab-up.visible { opacity: 1; visibility: visible; }

        /* ================= HEADER ================= */
        .header-wrapper {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            width: 95%; max-width: 1280px; z-index: 2000; transition: var(--transition);
        }
        header {
            background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.5); border-radius: 100px;
            padding: 0 24px; box-shadow: var(--shadow-sm);
        }
        header.scrolled { box-shadow: var(--shadow-lg); background: rgba(255, 255, 255, 0.98); }
        
        .nav-content { display: flex; justify-content: space-between; align-items: center; height: 75px; }
        .logo img { height: 40px; }

        /* Desktop Nav */
        .nav-links { display: flex; gap: 24px; height: 100%; align-items: center; }
        .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
        .nav-item > a { font-weight: 700; font-size: 14px; color: var(--blue); display: flex; align-items: center; gap: 6px; }
        .nav-item > a:hover { color: var(--yellow); }

        .dropdown {
            position: absolute; top: 100%; left: 0; background: var(--bg-white);
            border-radius: 16px; box-shadow: var(--shadow-lg); min-width: 260px; padding: 12px;
            opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
        }
        .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown li a { display: block; padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--text-gray); border-radius: 8px; }
        .dropdown li a:hover { background: var(--bg-soft); color: var(--blue); padding-left: 20px; }

        /* Mega Menu Polido */
        .mega-menu {
            position: absolute; top: 100%; left: -200px; background: var(--bg-white);
            border-radius: 24px; box-shadow: var(--shadow-lg); width: 850px; padding: 40px;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
            opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); border: 1px solid var(--bg-soft);
        }
        .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .mega-col h4 { font-size: 14px; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
        .mega-col h4 i { color: var(--yellow); font-size: 16px; }
        .mega-col ul li a { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 14px; color: var(--text-gray); font-weight: 500; }
        .mega-col ul li a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; color: transparent; transition: 0.3s; transform: translateX(-10px); }
        .mega-col ul li a:hover { color: var(--blue); }
        .mega-col ul li a:hover::before { color: var(--yellow); transform: translateX(0); }

        .header-actions { display: flex; align-items: center; gap: 20px; }
        
        .lang-switcher { position: relative; cursor: pointer; display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue); font-size: 14px; }
        .lang-dropdown { position: absolute; top: 150%; right: 0; background: var(--bg-white); border-radius: 12px; box-shadow: var(--shadow-lg); width: 130px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
        .lang-switcher:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-dropdown a { display: block; padding: 10px; font-size: 13px; font-weight: 600; color: var(--text-gray); border-radius: 8px; }
        .lang-dropdown a:hover { background: var(--bg-soft); color: var(--blue); }

        .btn-client { background: var(--blue); color: var(--bg-white); padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 13px; }
        .btn-client:hover { background: #002266; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(0, 48, 135, 0.2); }

        /* Mobile Menu Setup */
        .mobile-toggle { display: none; font-size: 24px; color: var(--blue); cursor: pointer; }
        .mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .mobile-overlay.active { opacity: 1; visibility: visible; }

        @media (max-width: 1024px) {
            .header-wrapper { width: 100%; top: 0; border-radius: 0; }
            header { border-radius: 0; border: none; padding: 0 16px; }
            .nav-links, .lang-switcher, .btn-client { display: none; }
            .mobile-toggle { display: block; }
            
            .nav-links.mobile-active {
                display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: 300px; height: 100vh;
                background: var(--bg-white); padding: 80px 24px 24px; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                align-items: flex-start; z-index: 2001; gap: 10px; overflow-y: auto;
            }
            .mobile-close { position: absolute; top: 20px; right: 24px; font-size: 24px; color: var(--blue); cursor: pointer; display: block; }
            .nav-item { height: auto; width: 100%; flex-direction: column; align-items: flex-start; }
            .nav-item > a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--bg-soft); justify-content: space-between; }
            
            .mega-menu, .dropdown { position: static; width: 100%; box-shadow: none; opacity: 1; visibility: visible; display: none; padding: 15px 0 15px 15px; transform: none; border: none; }
            .nav-item.open .mega-menu, .nav-item.open .dropdown { display: block; }
            .mega-menu { grid-template-columns: 1fr; gap: 20px; }
            .btn-client-mobile { display: block; width: 100%; text-align: center; margin-top: 20px; background: var(--blue); color: white; padding: 15px; border-radius: 50px; font-weight: 700; }
        }

        /* ================= HERO ================= */
        .hero { padding: 180px 0 80px; background: var(--bg-soft); overflow: hidden; }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-white); color: var(--blue); padding: 8px 16px; border-radius: 50px; font-weight: 800; font-size: 13px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
        .hero-badge i { color: var(--yellow); }
        .hero h1 { font-size: 56px; font-weight: 800; line-height: 1.1; color: var(--blue); letter-spacing: -1px; margin-bottom: 24px; }
        .highlight { position: relative; display: inline-block; z-index: 1; }
        .highlight::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 16px; background: var(--yellow); z-index: -1; opacity: 0.6; border-radius: 4px; transform: rotate(-1deg); }
        .hero p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; max-width: 90%; }
        .hero-btns { display: flex; gap: 24px; align-items: center; }
        .btn-main { background: var(--yellow); color: var(--blue); padding: 16px 32px; border-radius: 50px; font-weight: 800; font-size: 15px; }
        .btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 20px rgba(255, 191, 0, 0.3); }
        .btn-sec { font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 8px; font-size: 15px; }
        .btn-sec:hover { color: var(--yellow); gap: 12px; }
        .hero-img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; height: 500px; object-fit: cover; }

        /* ================= MARCAS ================= */
        .partners { padding: 40px 0; background: var(--bg-white); border-bottom: 1px solid var(--bg-soft); }
        .partners-label { text-align: center; font-size: 12px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
        .marquee-wrapper { overflow: hidden; white-space: nowrap; width: 100%; }
        .marquee { display: flex; gap: 80px; width: max-content; animation: scroll 30s linear infinite; }
        .marquee img { height: 45px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: 0.3s; }
        .marquee img:hover { filter: grayscale(0); opacity: 1; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ================= SOBRE NÓS ================= */
        .about { padding: 120px 0; background: var(--bg-white); }
        .about-text { text-align: center; max-width: 900px; margin: 0 auto 64px; }
        .about-text h2 { font-size: 36px; font-weight: 800; color: var(--blue); letter-spacing: -1px; margin-bottom: 24px; line-height: 1.3; }
        .about-text p { font-size: 18px; color: var(--text-gray); }
        .pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .pillar-card { background: var(--bg-soft); padding: 40px 32px; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid transparent; display: flex; flex-direction: column; align-items: center; }
        .pillar-card:hover { background: var(--bg-white); box-shadow: var(--shadow-lg); border-color: var(--yellow); transform: translateY(-8px); }
        .pillar-card i { font-size: 36px; color: var(--yellow); margin-bottom: 20px; }
        .pillar-card h4 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
        .pillar-card p { font-size: 14px; color: var(--text-gray); }

        /* ================= SERVIÇOS ================= */
        .services { padding: 120px 0; background: var(--bg-soft); }
        .section-header { text-align: center; margin-bottom: 64px; }
        .section-header h2 { font-size: 42px; font-weight: 800; color: var(--blue); letter-spacing: -1px; }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .service-card { background: var(--bg-white); padding: 48px 40px; border-radius: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
        .service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--yellow); transform: translateY(-5px); }
        .service-icon { width: 64px; height: 64px; background: rgba(0, 48, 135, 0.05); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--blue); margin-bottom: 24px; transition: var(--transition); }
        .service-card:hover .service-icon { background: var(--yellow); color: var(--blue); }
        .service-card h3 { font-size: 24px; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
        .service-card p { font-size: 15px; color: var(--text-gray); margin-bottom: 32px; line-height: 1.6; }
        .service-card a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); font-size: 14px; padding: 12px 24px; border: 2px solid var(--bg-soft); border-radius: 50px; }
        .service-card a i { transition: transform 0.3s; }
        .service-card a:hover { background: var(--blue); color: var(--bg-white); border-color: var(--blue); }
        .service-card a:hover i { transform: translateX(5px); }

        /* ================= PORQUÊ ESCOLHER ================= */
        .why-us { padding: 120px 0; background: var(--bg-white); }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
        .why-card { border-left: 3px solid var(--yellow); padding-left: 24px; }
        .why-card h4 { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
        .why-card p { font-size: 15px; color: var(--text-gray); }
        .why-footer { max-width: 900px; margin: 0 auto; text-align: center; background: var(--bg-soft); padding: 40px; border-radius: 24px; }
        .why-footer p { font-size: 16px; color: var(--text-dark); margin-bottom: 16px; font-weight: 500; }
        .why-footer p:last-child { margin-bottom: 0; font-weight: 700; color: var(--blue); }

        /* ================= PME 5% ================= */
        .pme-section { padding: 60px 0; background: var(--bg-soft); }
        .pme-banner { background: var(--bg-white); border: 1px solid rgba(0,0,0,0.05); border-radius: 32px; padding: 60px 40px; text-align: center; max-width: 1000px; margin: 0 auto; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr 250px; gap: 60px; align-items: center; }
        .pme-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; color: var(--blue); line-height: 1.2; text-align: left; }
        .pme-banner p { font-size: 16px; color: var(--text-gray); text-align: left; margin: 0; }
        .pme-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-sm); }

        /* ================= CTA BONITO COM IMAGEM ================= */
        .cta-section { padding: 100px 0; background: var(--blue); color: var(--bg-white); }
        .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .cta-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
        .cta-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
        .cta-phone { display: inline-flex; align-items: center; gap: 12px; background: var(--yellow); color: var(--blue); padding: 16px 40px; border-radius: 50px; font-size: 28px; font-weight: 900; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(255, 191, 0, 0.2); transition: var(--transition); }
        .cta-phone:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255, 191, 0, 0.3); }
        .cta-img img { border-radius: 24px; width: 100%; height: 400px; object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

        /* ================= AVALIAÇÕES ================= */
        .reviews { padding: 120px 0; background: var(--bg-soft); }
        .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
        .reviews-header h2 { font-size: 36px; font-weight: 800; color: var(--blue); }
        .btn-google-review { background: var(--bg-white); color: var(--blue); padding: 12px 24px; border-radius: 50px; font-weight: 700; border: 2px solid var(--blue); display: flex; align-items: center; gap: 10px; transition: var(--transition); }
        .btn-google-review:hover { background: var(--blue); color: white; }
        
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .review-card { background: var(--bg-white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; }
        .review-stars { color: var(--yellow); font-size: 14px; margin-bottom: 16px; }
        .review-card p { font-size: 14px; color: var(--text-gray); font-style: italic; margin-bottom: 24px; }
        .review-user { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--bg-soft); padding-top: 16px; }
        .review-user img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
        .review-user-info strong { display: block; font-size: 14px; color: var(--blue); font-weight: 700; }
        .review-user-info span { font-size: 12px; color: #94a3b8; }

        /* ================= BLOG ================= */
        .blog { padding: 120px 0; background: var(--bg-white); }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
        .blog-card { background: var(--bg-soft); border-radius: 24px; overflow: hidden; transition: var(--transition); border: 1px solid transparent; }
        .blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
        .blog-img { height: 220px; width: 100%; }
        .blog-img img { width: 100%; height: 100%; object-fit: cover; }
        .blog-content { padding: 32px; }
        .blog-content h4 { font-size: 20px; font-weight: 800; color: var(--blue); margin-bottom: 16px; line-height: 1.4; }
        .blog-content a { font-weight: 700; font-size: 14px; color: var(--yellow); text-transform: uppercase; }

        /* ================= FOOTER ================= */
        footer { background: var(--blue-dark); color: var(--bg-white); padding: 80px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; }
        
        .footer-logo { margin-bottom: 20px; }
        .footer-desc { font-size: 14px; color: #cbd5e1; line-height: 1.8; margin-bottom: 24px; }
        
        .footer-col h5 { color: var(--yellow); font-size: 16px; font-weight: 800; margin-bottom: 24px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { font-size: 14px; color: #cbd5e1; }
        .footer-col ul li a:hover { color: var(--yellow); }

        /* DESTAQUE REFINADO NO FOOTER */
        .highlight-link { 
            display: inline-block; 
            border: 1px solid rgba(255, 191, 0, 0.4); 
            padding: 4px 12px; 
            border-radius: 6px; 
            color: var(--yellow) !important; 
            font-weight: 600;
            margin-top: 4px;
            transition: var(--transition);
        }
        .highlight-link:hover { 
            background: rgba(255, 191, 0, 0.1); 
            border-color: var(--yellow); 
            transform: translateX(4px);
        }

        .footer-address { font-size: 13px; color: #cbd5e1; line-height: 1.6; margin-bottom: 24px; }
        .footer-address strong { display: block; color: var(--bg-white); font-size: 14px; margin-bottom: 4px; }

        .footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; font-size: 13px; color: #94a3b8; }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 1024px) {
            .hero-grid, .cta-grid, .pme-banner { grid-template-columns: 1fr; text-align: center; }
            .pme-banner { padding: 40px; gap: 30px; }
            .pme-banner h2, .pme-banner p { text-align: center; }
            .pme-image img { max-width: 200px; margin: 0 auto; }
            .cta-content { order: 2; }
            .cta-img { order: 1; }
            .about-grid, .pillars-grid, .services-grid, .why-grid, .reviews-grid, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
            .pillars-grid, .why-grid { grid-template-columns: 1fr 1fr; }
            .reviews-header { flex-direction: column; align-items: flex-start; gap: 15px; }
        }
        @media (max-width: 768px) {
            .pillars-grid, .why-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 42px; }
            .cta-box h2 { font-size: 32px; }
            .cta-phone { font-size: 20px; padding: 12px 30px; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
        }

        /* ANIMAÇÕES GERAIS */
        .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }
    </style>