.header-navigation-section {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navigation-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .brand-logo-link {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .brand-logo-link:hover {
            color: #f39c12;
            transform: scale(1.05);
        }

        .main-navigation-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .navigation-menu-item {
            position: relative;
        }

        .navigation-menu-link {
            color: white;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
            white-space: nowrap;
        }

        .navigation-menu-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            transition: width 0.3s ease;
        }

        .navigation-menu-link:hover {
            color: #f39c12;
        }

        .navigation-menu-link:hover::after {
            width: 100%;
        }

        .navigation-menu-link.active {
            color: #f39c12;
        }

        .navigation-menu-link.active::after {
            width: 100%;
        }

        .btnContato {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
            white-space: nowrap;
        }

        .btnContato:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
            background: linear-gradient(45deg, #e67e22, #d35400);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-bar {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Animação do hamburguer quando ativo */
        .mobile-menu-toggle.active .mobile-menu-bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .mobile-menu-bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .mobile-menu-bar:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }   
        

        @media (max-width: 1024px) {
            .main-navigation-menu {
                gap: 1.5rem;
            }
            
            .navigation-menu-link {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 900px) {
            .main-navigation-menu {
                gap: 1rem;
            }
            
            .navigation-menu-link {
                font-size: 0.85rem;
            }

             .btnContato {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .navigation-container {
                padding: 0 1rem;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .main-navigation-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 1000;
            }

            .main-navigation-menu.active {
                transform: translateX(0);
            }

            .navigation-menu-link {
                font-size: 1.2rem;
                padding: 1rem;
                text-align: center;
            }

            .navigation-menu-item {
                width: 100%;
                text-align: center;
            }

            .header-navigation-section {
                padding: 12px 0;
            }

            .btnContato {
                margin-top: 1rem;
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .navigation-container {
                padding: 0 0.5rem;
            }

            .brand-logo-link {
                font-size: 1.3rem;
            }

            .mobile-menu-bar {
                width: 22px;
                height: 2.5px;
            }

            .navigation-menu-link {
                font-size: 1.1rem;
            }
        }