  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            position: relative;
        }

        /* Bolhas de Sabão Animadas */
        .soap-bubbles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(62,219,250,0.6), rgba(168,225,53,0.3), rgba(163,171,190,0.2));
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.3);
            animation: float 20s infinite linear;
        }

        .bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; animation-duration: 25s; }
        .bubble:nth-child(2) { width: 50px; height: 50px; left: 20%; animation-delay: 5s; animation-duration: 30s; }
        .bubble:nth-child(3) { width: 120px; height: 120px; left: 70%; animation-delay: 10s; animation-duration: 35s; }
        .bubble:nth-child(4) { width: 60px; height: 60px; left: 80%; animation-delay: 2s; animation-duration: 28s; }
        .bubble:nth-child(5) { width: 90px; height: 90px; left: 40%; animation-delay: 15s; animation-duration: 32s; }
        .bubble:nth-child(6) { width: 40px; height: 40px; left: 90%; animation-delay: 8s; animation-duration: 26s; }
        .bubble:nth-child(7) { width: 60px; height: 60px; left: 50%; animation-delay: 5s; animation-duration: 27s; }

        @keyframes float {
            0% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0.3; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { transform: translateY(-100px) scale(1) rotate(360deg); opacity: 0; }
        }

        /* HEADER CORRIGIDO - GARANTIDO FUNCIONAMENTO */
        header {
            background: rgba(10, 11, 17, 0.98);
            background: linear-gradient(135deg, #1c97ef, #a8e135, #a1abbe, #1c97ef, #001b6c, #001b6c, #001b6c, rgba(10, 11, 17, 0.98));
            color: white !important;
            padding: 0.5rem 0 !important;
            position: fixed !important;
            width: 100% !important;
            top: 0 !important;
            z-index: 9999 !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
            backdrop-filter: blur(10px);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 0 2rem !important;
            height: 64px !important;
            flex-wrap: nowrap;
        }

        /* LOGO CORRIGIDO */
        .logo-nte {
            margin-top: 6rem;
            max-width: 160px;
        }

        .logo-nte img {
            width: 100% !important;
        }

        /* LINKS DESKTOP - SEMPRE VISÍVEIS */
        .nav-links {
            display: flex !important;
            list-style: none !important;
            gap: 2rem !important;
            align-items: center !important;
            margin: 0 !important;
            padding: 0 !important;
            flex-shrink: 0;
        }

        .nav-links li {
            margin: 0 !important;
            text-shadow: 1px 1px 3px #001b6c;
        }

        .nav-links a {
            color: white !important;
            text-decoration: none !important;
            font-weight: 500 !important;
            font-size: 1rem;
            transition: all 0.3s ease !important;
            padding: 0.5rem 1rem !important;
            display: block !important;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #a8e135 !important;
            background: rgba(168,225,53,0.1);
            border-radius: 5px;
        }

        .nav-links .orca {
            border: 1px solid #a8e135;
            border-radius: 50px;
        }

        .mobile-menu .orca {
            padding: 0.5rem 1rem 0.7rem;
            border: 1px solid #a8e135;
            border-radius: 50px;
        }

        /* HAMBURGUER - APENAS MOBILE */
        .hamburger {
            display: none !important;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
            z-index: 1002;
            flex-shrink: 0;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #a8e135;
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* MENU MOBILE */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, rgba(10, 11, 17, 0.98), #001b6c);
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
            list-style: none;
            padding: 2rem 0;
            margin: 0;
            gap: 2rem;
            z-index: -1;
            align-items: center;
            display: none;
        }

        .mobile-menu.active {
            transform: translateY(0);
            display: flex !important;
            flex-direction: column;
        }

        .mobile-menu li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,27,108,0.85), rgba(0,27,108,0.85)), 
                        url('img/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin-top: 70px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content #tmb, .tmb {
            display: none;
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .feature {
            background: rgba(255,255,255,0.1);
            padding: 1rem 2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid #a8e135;
        }

        /* Demais seções (mantidas iguais) */
        .destaque {
            padding: 5rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
        }

        .destaque h2 { font-size: 2.2rem; color: #001b6c; margin-bottom: 1.5rem; }
        .destaque p { font-size: 1.3rem; color: #333; margin-bottom: 1rem; line-height: 1.7; }

        .destaque .whatsapp-call {
            display: inline-block;
            background: linear-gradient(135deg, #a8e135, #8dc92b);
            color: #0a0b11;
            padding: 1.2rem 3rem;
            font-size: 1.4rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(168,225,53,0.4);
            transition: all 0.3s;
        }

        .destaque .whatsapp-call:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(168,225,53,0.6);
        }

        .gallery { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; background: white; }
        .gallery h2 { text-align: center; font-size: 2.5rem; color: #001b6c; margin-bottom: 3rem; }

        .gallery-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .gallery-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: none;
            transition: opacity 0.5s ease-in-out;
        }

        .gallery-image.active { display: block; opacity: 1; }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,27,108,0.8);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .gallery-nav:hover {
            background: #a8e135;
            color: #0a0b11;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn { left: 20px; }
        .next-btn { right: 20px; }

        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #a1abbe;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active { background: #a8e135; transform: scale(1.3); }

        .video-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            text-align: center;
        }

        .video-section h2 { font-size: 2.5rem; color: #001b6c; margin-bottom: 2rem; }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #1c97ef, #a8e135, #a1abbe, #1c97ef, #001b6c, #001b6c, rgba(10, 11, 17, 0.98));
        }

        .video-container video { width: 100%; height: 67vh; display: block; }

        .services {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: #f8f9fa;
        }

        .services h2 { text-align: center; font-size: 2.5rem; color: #001b6c; margin-bottom: 3rem; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-card i { font-size: 3rem; color: #1c97ef; margin-bottom: 1rem; }

        .footer-form {
            background: linear-gradient(135deg, #001b6c 0%, #1c97ef 100%);
            color: white;
            padding: 5.8rem 2rem 4rem;
            margin: 5rem 2rem 2rem;
            border-radius: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-form h3 { text-align: center; font-size: 1.8rem; margin-bottom: 2rem; }

        .footer-form form { display: flex; flex-direction: column; gap: 1rem; }

        .footer-form select,
        .footer-form input,
        .footer-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            transition: all 0.3s;
        }

        .footer-form select:focus,
        .footer-form input:focus,
        .footer-form textarea:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(163,171,190,0.3);
            transform: scale(1.02);
        }

        .footer-form textarea { resize: vertical; min-height: 100px; }

        .footer-form button {
            background: #a8e135;
            color: #0a0b11;
            border: none;
            padding: 1.2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .footer-form button:hover {
            background: #8dc92b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(168,225,53,0.4);
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 20px;
            background: #a8e135;
            color: #0a0b11;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(168,225,53,0.4);
            z-index: 1001;
            transition: all 0.3s;
            animation: pulse 2s infinite;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(168,225,53,0.6);
        }

        @keyframes pulse {
            0% { box-shadow: 0 10px 30px rgba(168,225,53,0.4); }
            50% { box-shadow: 0 10px 30px rgba(168,225,53,0.7); }
            100% { box-shadow: 0 10px 30px rgba(168,225,53,0.4); }
        }

        footer {
            background: #0a0b11;
            color: #a1abbe;
            text-align: center;
            padding: 2rem;
        }

        footer div {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 15px;
        }

        footer .ads {
          font-size: 12px;
          margin-top: -10px;
          letter-spacing: 1px;
          color: var(--accent);
          margin-right: 5px;
        }

        footer div img {
          width: 64px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
        }

        .social-links a {
            color: #a1abbe;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover { color: #a8e135; }

        /* RESPONSIVO - APENAS MOBILE MUDA */
        @media (max-width: 870px) {
            .nav-links {
                display: flex;
                gap: 1rem!important;
            }
        }
        @media (max-width: 780px) {
            .logo-nte {
                margin-top: 3rem;
                max-width: 120px;
            }

            .hamburger {
                display: flex !important;
            }

            .nav-links {
                display: none !important;
            }

            nav {
                padding: 0 1rem !important;
            }

            .features {
                display: flex;
                gap: 1.2rem;
                flex-direction: column;
                align-items: center;
            }

            .gallery-image { height: 300px; }
            .gallery-nav { width: 40px; height: 40px; font-size: 1.2rem; }
            .prev-btn { left: 10px; }
            .next-btn { right: 10px; }
            .destaque h2 { font-size: 1.8rem; }
            .destaque p { font-size: 1.1rem; }
        }

        @media (max-width: 540px) {
            .tmb {
                display: flex;
            }

            .desk {
                display: none;
            }
        }

        /* FORÇA VISIBILIDADE DESKTOP */
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
            
            .hamburger {
                display: none !important;
            }
        }
