
        /* ────────────────────────────────────────
           SMOOTH SCROLL
        ──────────────────────────────────────── */
        html { scroll-behavior: smooth; }

        /* ────────────────────────────────────────
           CORE RESETS
        ──────────────────────────────────────── */
        *, *::before, *::after {
            box-sizing: border-box; margin: 0; padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        html, body {
            overflow-x: hidden; max-width: 100%;
            background-color: #050505; color: #fff;
            font-family: 'Inter', sans-serif;
        }
        section[id] { scroll-margin-top: 72px; }
        img { max-width: 100%; height: auto; }
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #050505; }
        ::-webkit-scrollbar-thumb { background: #ff2a00; border-radius: 10px; }

        /* ────────────────────────────────────────
           LAYOUT
        ──────────────────────────────────────── */
        .container-nox {
            width: min(100% - 2rem, 1340px);
            margin-inline: auto;
        }
        @media (max-width: 480px) {
            .container-nox { width: min(100% - 1.5rem, 1340px); }
        }

        /* ────────────────────────────────────────
           LOGO SYSTEM
        ──────────────────────────────────────── */
        .nox-logo { display: block; object-fit: contain; flex-shrink: 0; }
        .nox-logo-nav {
            height: 42px; width: auto; max-width: 130px;
        }
        .nox-logo-hero-wm { display: none; }
        .card-logo-hover {
            position: absolute; top: 1rem; right: 1rem;
            width: 30px; height: 30px; object-fit: contain;
            opacity: 0; filter: brightness(10) drop-shadow(0 0 6px rgba(255,42,0,0.5));
            transition: opacity 0.45s ease; z-index: 6; pointer-events: none;
        }
        .modality-card:hover .card-logo-hover { opacity: 0.55; }
        .nox-logo-video {
            position: absolute; bottom: 11%; right: 1.5rem;
            width: clamp(32px, 5vw, 50px); height: auto; object-fit: contain;
            opacity: 0.18; filter: brightness(10); z-index: 7;
            pointer-events: none; transition: opacity 0.3s ease;
        }
        #nox-thumb:hover .nox-logo-video { opacity: 0.32; }
        .nox-logo-footer {
            height: clamp(72px, 9vw, 110px); width: auto;
            object-fit: contain; filter: drop-shadow(0 0 18px rgba(255,42,0,0.25)); opacity: 1;
        }

        /* ────────────────────────────────────────
           TYPOGRAPHY — clamp() em tudo
        ──────────────────────────────────────── */
        .text-huge {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2.4rem, 10vw, 10rem);
            line-height: 0.88; text-transform: uppercase;
            letter-spacing: -0.02em; display: block;
        }
        .text-stroke-orange {
            -webkit-text-stroke: 2px #ff2a00; color: transparent;
            filter: drop-shadow(0 0 10px rgba(255,42,0,0.3));
        }
        @media (max-width: 375px) {
            .text-stroke-orange { -webkit-text-stroke: 1.5px #ff2a00; }
        }
        .section-label {
            display: block; font-family: 'Inter', sans-serif;
            font-weight: 700; font-size: 0.6rem;
            letter-spacing: 0.35em; text-transform: uppercase;
            color: #ff2a00; margin-bottom: 0.75rem;
        }

        /* ────────────────────────────────────────
           GRAIN / VIGNETTE
        ──────────────────────────────────────── */
        .grain {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.025; pointer-events: none; z-index: 9999;
        }
        .vignette {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.9) 100%);
            pointer-events: none;
        }
        .ambient-glow {
            position: absolute; width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(255,42,0,0.09) 0%, transparent 70%);
            pointer-events: none; filter: blur(100px); z-index: 0;
        }
        @media (max-width: 768px) {
            .ambient-glow { width: 400px; height: 400px; }
        }

        /* ────────────────────────────────────────
           NAVBAR
        ──────────────────────────────────────── */
        .nox-nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 0 1.5rem; height: 68px;
            display: flex; justify-content: space-between; align-items: center;
            background: linear-gradient(to bottom,rgba(5,5,5,0.96),rgba(5,5,5,0.7),transparent);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        }
        .nav-desktop {
            display: flex; gap: 2rem; align-items: center;
            font-weight: 700; font-size: 0.62rem;
            text-transform: uppercase; letter-spacing: 0.28em;
        }
        @media (max-width: 1180px) { .nav-desktop { gap: 1.4rem; } }

        /* ── HAMBURGER ── */
        .nav-hamburger {
            display: none; flex-direction: column; justify-content: center;
            gap: 5px; width: 36px; height: 36px; cursor: pointer;
            background: none; border: none; padding: 4px;
        }
        .nav-hamburger span {
            display: block; width: 100%; height: 2px;
            background: #fff; border-radius: 2px;
            transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), opacity 0.25s ease, background 0.25s ease;
            transform-origin: center;
        }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background:#ff2a00; }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background:#ff2a00; }

        /* ── MOBILE DRAWER ── */
        .nav-mobile-drawer {
            position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
            background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
            z-index: 999; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 2.5rem;
            transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
            border-top: 1px solid rgba(255,42,0,0.15);
        }
        .nav-mobile-drawer.open { transform: translateX(0); }
        .nav-mobile-drawer a {
            font-family: 'Anton', sans-serif; font-size: clamp(1.6rem, 6vw, 2.2rem);
            text-transform: uppercase; letter-spacing: 0.08em;
            color: #fff; text-decoration: none;
            transition: color 0.2s ease; display: block;
        }
        .nav-mobile-drawer a:hover, .nav-mobile-drawer a:active { color: #ff2a00; }
        .nav-mobile-drawer .drawer-cta {
            background: #ff2a00; color: #000 !important;
            padding: 0.9rem 2.5rem; font-size: clamp(1rem, 4vw, 1.2rem) !important;
        }
        .nav-mobile-drawer .drawer-divider {
            width: 40px; height: 1px; background: rgba(255,42,0,0.3);
        }

        @media (max-width: 1023px) {
            .nav-desktop { display: none; }
            .nav-hamburger { display: flex; }
        }
        @media (min-width: 1024px) {
            .nav-mobile-drawer { display: none !important; }
        }

        /* ────────────────────────────────────────
           HERO
        ──────────────────────────────────────── */
        .hero-title-container {
            display: flex; flex-direction: column; align-items: center;
            transform: skewY(-2deg);
        }
        @media (max-width: 480px) {
            .hero-title-container { transform: skewY(-1deg); }
        }
        .text-white-solid { color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .text-machine-outline {
            color: transparent; -webkit-text-stroke: 2px #ff2a00;
            position: relative; filter: drop-shadow(0 0 15px rgba(255,42,0,0.4));
        }
        .hero-subtitle {
            font-size: clamp(0.7rem, 2.2vw, 1.25rem);
            letter-spacing: clamp(0.15em, 1.5vw, 0.4em);
        }
        .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
        .hero-btn {
            font-family: 'Anton', sans-serif;
            font-size: clamp(1rem, 3vw, 1.5rem);
            padding: clamp(0.8rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 3rem);
            text-align: center; display: inline-block;
            text-decoration: none; transition: all 0.3s ease;
            min-width: clamp(160px, 40vw, 260px);
        }

        /* ────────────────────────────────────────
           MODALITY CARDS
        ──────────────────────────────────────── */
        .cards-grid {
            display: grid; gap: 0.75rem; width: 100%;
            grid-template-columns: repeat(1, 1fr);
        }
        @media (min-width: 480px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 820px)  { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1180px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

        .modality-card {
            background: #111; border: 1px solid rgba(255,255,255,0.06);
            height: clamp(300px, 48vw, 440px);
            position: relative; overflow: hidden; cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.25,1,0.5,1), box-shadow 0.4s ease;
        }
        @media (min-width: 820px) { .modality-card { height: 380px; } }
        @media (min-width: 1180px) { .modality-card { height: 440px; } }
        .modality-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255,42,0,0.12);
        }
        .modality-card .card-bg-img {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; object-position: center 20%;
            filter: grayscale(100%) contrast(1.15) brightness(0.65);
            transition: filter 0.7s ease, transform 0.7s cubic-bezier(0.25,1,0.5,1);
        }
        .modality-card:hover .card-bg-img {
            filter: grayscale(20%) contrast(1.05) brightness(0.8);
            transform: scale(1.07);
        }
        .modality-card .card-dark {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.6) 45%, rgba(5,5,5,0.08) 100%);
            transition: opacity 0.5s ease;
        }
        .modality-card:hover .card-dark { opacity: 0.7; }
        .modality-card .card-orange {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(255,42,0,0.55) 0%, rgba(255,42,0,0.20) 30%, transparent 70%);
            mix-blend-mode: multiply;
        }
        .modality-card .card-glow {
            position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
            background: linear-gradient(to top, rgba(255,42,0,0.28), transparent);
            opacity: 0; transition: opacity 0.5s ease;
        }
        .modality-card:hover .card-glow { opacity: 1; }
        .modality-card .card-frame {
            position: absolute; inset: 0; border: 2px solid transparent;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            pointer-events: none; z-index: 8;
        }
        .modality-card:hover .card-frame {
            border-color: rgba(255,42,0,0.8);
            box-shadow: 0 0 20px rgba(255,42,0,0.2), inset 0 0 20px rgba(255,42,0,0.04);
        }
        .modality-card .card-content {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: clamp(1rem, 2.5vw, 1.5rem); z-index: 5;
        }
        .modality-card .card-num {
            font-family: 'Anton', sans-serif; font-size: 2rem;
            color: #ff2a00; line-height: 1; opacity: 0.18;
            transition: opacity 0.4s ease; display: block;
        }
        .modality-card:hover .card-num { opacity: 0.8; }
        .modality-card .card-name {
            font-family: 'Anton', sans-serif;
            font-size: clamp(1.1rem, 2.8vw, 1.75rem);
            text-transform: uppercase; line-height: 1.05; color: #fff;
            text-shadow: 0 2px 16px rgba(0,0,0,0.9); margin: 0.3rem 0 0.5rem;
        }
        .modality-card .card-line {
            height: 2px; background: #ff2a00; width: 2rem;
            box-shadow: 0 0 10px rgba(255,42,0,0.8);
            transition: width 0.5s cubic-bezier(0.25,1,0.5,1);
        }
        .modality-card:hover .card-line { width: 100%; }
        .modality-card .card-desc {
            font-size: 0.7rem; color: rgba(255,255,255,0.7);
            line-height: 1.55; margin-top: 0.5rem;
            max-height: 0; overflow: hidden; opacity: 0;
            transition: max-height 0.45s ease, opacity 0.4s ease 0.08s;
        }
        .modality-card:hover .card-desc { max-height: 70px; opacity: 1; }
        .modality-card::after {
            content: ''; position: absolute; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.035; pointer-events: none; z-index: 7;
        }



        /* ────────────────────────────────────────
           MOBILE MODALIDADES — 2 COLUNAS + EXPANDIR
        ──────────────────────────────────────── */
        .modalities-toggle-wrap { display: none; }
        @media (max-width: 767px) {
            #classes .mb-14 { margin-bottom: 1.8rem; }
            #classes .cards-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
            }
            #classes .modality-card {
                height: clamp(170px, 55vw, 230px);
                min-height: 0;
            }
            #classes .modality-card:nth-child(n+7) {
                display: none;
            }
            #classes.modalities-expanded .modality-card:nth-child(n+7) {
                display: block;
            }
            #classes .modality-card .card-bg-img {
                object-position: center center;
                filter: grayscale(95%) contrast(1.18) brightness(0.58);
            }
            #classes .modality-card .card-content {
                padding: 0.65rem;
            }
            #classes .modality-card .card-num {
                font-size: 1.05rem;
                opacity: 0.7;
            }
            #classes .modality-card .card-name {
                font-size: clamp(0.82rem, 4.2vw, 1.08rem);
                line-height: 0.98;
                margin: 0.18rem 0 0.35rem;
            }
            #classes .modality-card .card-line {
                width: 1.35rem;
                height: 2px;
            }
            #classes .modality-card .card-desc,
            #classes .card-logo-hover {
                display: none;
            }
            #classes .modality-card:hover {
                transform: translateY(-3px);
            }
            .modalities-toggle-wrap {
                display: flex;
                justify-content: center;
                margin-top: 1.4rem;
            }
            .modalities-toggle-btn {
                font-family: 'Anton', sans-serif;
                background: #ff2a00;
                color: #050505;
                border: 1px solid #ff2a00;
                padding: 0.9rem 1.45rem;
                font-size: 0.95rem;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                transform: skewX(-10deg);
                box-shadow: 0 0 22px rgba(255,42,0,0.28);
                transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            }
            .modalities-toggle-btn span {
                display: inline-block;
                transform: skewX(10deg);
            }
            .modalities-toggle-btn:active {
                transform: skewX(-10deg) scale(0.97);
            }
            #classes.modalities-expanded .modalities-toggle-btn {
                background: transparent;
                color: #ff2a00;
            }
        }

        /* ────────────────────────────────────────
           NOX CARD
        ──────────────────────────────────────── */
        .nox-card {
            background: linear-gradient(135deg, rgba(18,18,18,0.9) 0%, rgba(8,8,8,0.97) 100%);
            border: 1px solid rgba(255,42,0,0.15);
            position: relative; overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25,1,0.5,1);
        }
        .nox-card:hover {
            border-color: #ff2a00; transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255,42,0,0.1);
        }

        /* ────────────────────────────────────────
           SCHEDULE TABS
        ──────────────────────────────────────── */
        .schedule-tab {
            transform: skewX(-10deg); transition: all 0.28s ease;
            white-space: nowrap; flex-shrink: 0;
        }
        .schedule-tab span { display: inline-block; transform: skewX(10deg); }
        .schedule-tab.active {
            background-color: #ff2a00; color: #050505;
            border-color: #ff2a00; box-shadow: 0 0 22px rgba(255,42,0,0.45);
        }
        #schedule-display-grid { transition: opacity 0.22s ease, transform 0.22s ease; }
        .hide-scroll::-webkit-scrollbar { display: none; }

        /* ────────────────────────────────────────
           FEATURES GRID
        ──────────────────────────────────────── */
        .features-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
        @media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

        /* ────────────────────────────────────────
           TESTIMONIALS
        ──────────────────────────────────────── */
        .testimonials-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
        @media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

        /* ────────────────────────────────────────
           SKEW BUTTONS
        ──────────────────────────────────────── */
        .skew-btn {
            transform: skewX(-12deg); transition: all 0.3s cubic-bezier(0.25,1,0.5,1);
            display: inline-flex; align-items: center;
            justify-content: center; text-align: center;
        }
        .skew-btn span { transform: skewX(12deg); display: inline-block; }
        .skew-btn:hover {
            box-shadow: 0 0 25px rgba(255,42,0,0.6);
            transform: skewX(-12deg) scale(1.04);
        }

        /* ────────────────────────────────────────
           VIDEO SECTION
        ──────────────────────────────────────── */
        @keyframes noxPulse {
            0%   { transform: scale(0.92); opacity: 0.55; }
            50%  { transform: scale(1.18); opacity: 0.12; }
            100% { transform: scale(0.92); opacity: 0.55; }
        }
        .nox-play-ring-1 {
            position: absolute; inset: -18px; border-radius: 50%;
            border: 1px solid rgba(255,42,0,0.35);
            animation: noxPulse 2.6s ease-in-out infinite;
        }
        .nox-play-ring-2 {
            position: absolute; inset: -9px; border-radius: 50%;
            border: 1px solid rgba(255,42,0,0.55);
            animation: noxPulse 2.6s ease-in-out 0.65s infinite;
        }

        /* ────────────────────────────────────────
           SECTION PADDING — responsivo
        ──────────────────────────────────────── */
        .section-py { padding-top: clamp(2.8rem, 6vw, 5.25rem); padding-bottom: clamp(2.8rem, 6vw, 5.25rem); }

        /* ────────────────────────────────────────
           LOCALIZAÇÃO — grid responsivo
        ──────────────────────────────────────── */
        .loc-grid {
            display: grid; gap: 2rem;
            grid-template-columns: 1fr;
        }
        @media (min-width: 900px) {
            .loc-grid { grid-template-columns: 1fr 1.6fr; align-items: start; }
        }
        .loc-map-wrapper {
            position: relative; border: 1px solid rgba(255,42,0,0.2);
            overflow: hidden; min-height: 340px;
        }
        @media (min-width: 900px) { .loc-map-wrapper { min-height: 460px; } }
        .loc-map-wrapper iframe {
            width: 100%; height: 100%; min-height: 340px; border: none; display: block;
            filter: grayscale(85%) contrast(1.1) brightness(0.85);
        }
        @media (min-width: 900px) { .loc-map-wrapper iframe { min-height: 460px; } }

        /* ────────────────────────────────────────
           VISIBILITY SAFETY
        ──────────────────────────────────────── */
        .modality-card, .nox-card, .testimonials-grid > div {
            opacity: 1; transform: none;
        }
    
        /* ────────────────────────────────────────
           PREMIUM MOTION / MICROINTERACTIONS
        ──────────────────────────────────────── */
        .hero-bg-premium {
            will-change: transform;
            transform: translate3d(0,0,0);
        }

        .hero-title-container {
            position: relative;
            isolation: isolate;
        }

        .hero-title-container::after {
            content: "";
            position: absolute;
            inset: -38px -60px;
            background: radial-gradient(circle at center, rgba(255,42,0,0.18), transparent 68%);
            filter: blur(42px);
            z-index: -1;
            pointer-events: none;
        }

        .nox-nav {
            border-bottom: 1px solid rgba(255,255,255,0.055);
            box-shadow: 0 10px 40px rgba(0,0,0,0.18);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 1px;
            background: #ff2a00;
            box-shadow: 0 0 12px rgba(255,42,0,0.8);
            transition: width .32s cubic-bezier(.25,1,.5,1);
        }

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

        .reveal-up {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity .45s cubic-bezier(.25,1,.5,1),
                transform .45s cubic-bezier(.25,1,.5,1);
        }

        .reveal-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: .02s; }
        .reveal-delay-2 { transition-delay: .04s; }
        .reveal-delay-3 { transition-delay: .06s; }

        .modality-card {
            will-change: transform;
        }

        .modality-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 100%, rgba(255,42,0,0.16), transparent 55%),
                linear-gradient(135deg, rgba(255,255,255,0.035), transparent 38%);
            opacity: 0;
            transition: opacity .5s ease;
            pointer-events: none;
            z-index: 4;
        }

        .modality-card:hover::before {
            opacity: 1;
        }

        .modality-card:hover {
            transform: translateY(-8px) scale(1.012);
        }

        .nox-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            background: linear-gradient(120deg, transparent, rgba(255,42,0,0.12), transparent);
            opacity: 0;
            transform: translateX(-35%);
            transition: opacity .45s ease, transform .75s cubic-bezier(.25,1,.5,1);
            pointer-events: none;
        }

        .nox-card:hover::before {
            opacity: 1;
            transform: translateX(35%);
        }

        .hero-btn,
        .skew-btn,
        .schedule-tab,
        .modalities-toggle-btn {
            will-change: transform;
        }

        .hero-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 40px rgba(255,42,0,0.38);
        }

        .hero-btn:nth-child(2):hover {
            border-color: rgba(255,42,0,.7) !important;
            color: #ff2a00 !important;
            box-shadow: 0 0 32px rgba(255,42,0,0.22);
        }

        #schedule-display-grid > div {
            transition:
                transform .35s cubic-bezier(.25,1,.5,1),
                border-color .35s ease,
                box-shadow .35s ease,
                background .35s ease;
        }

        #schedule-display-grid > div:hover {
            transform: translateY(-4px);
            border-color: rgba(255,42,0,0.95) !important;
            box-shadow: 0 18px 50px rgba(255,42,0,0.11);
            background: linear-gradient(135deg, rgba(255,42,0,0.055), rgba(10,10,10,0.98)) !important;
        }

        #video-institucional .reveal-up,
        #experience .reveal-up,
        #schedule .reveal-up,
        #testimonials .reveal-up,
        #localizacao .reveal-up {
            will-change: opacity, transform;
        }

        .section-py {
            position: relative;
        }

        .section-py::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            width: min(76vw, 980px);
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, rgba(255,42,0,0.22), transparent);
            pointer-events: none;
            opacity: .65;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal-up {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        @media (max-width: 768px) {
            .hero-title-container::after {
                inset: -24px -24px;
                filter: blur(30px);
                opacity: .85;
            }
            .hero-btn:hover,
            .modality-card:hover,
            #schedule-display-grid > div:hover {
                transform: none;
            }
        }

    
        /* ────────────────────────────────────────
           HIGH-END INTERACTIONS — MAGNETIC / MOUSE GLOW / ACTIVE NAV
        ──────────────────────────────────────── */
        .mouse-glow {
            position: fixed;
            width: 420px;
            height: 420px;
            left: 0;
            top: 0;
            transform: translate3d(-50%, -50%, 0);
            pointer-events: none;
            z-index: 2;
            opacity: .55;
            background: radial-gradient(circle, rgba(255,42,0,.12) 0%, rgba(255,42,0,.045) 34%, transparent 68%);
            filter: blur(18px);
            mix-blend-mode: screen;
            will-change: transform;
        }

        .nox-nav.scrolled {
            background: rgba(5,5,5,.86);
            border-bottom-color: rgba(255,42,0,.14);
            box-shadow: 0 14px 44px rgba(0,0,0,.36);
        }

        .nav-link.active {
            color: #ff2a00 !important;
        }

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

        .magnetic {
            position: relative;
            overflow: hidden;
        }

        .magnetic::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 34%);
            opacity: 0;
            transition: opacity .28s ease;
            pointer-events: none;
        }

        .magnetic:hover::before {
            opacity: .32;
        }

        .modality-card {
            transform-style: preserve-3d;
        }

        .modality-card .card-content {
            transition: transform .45s cubic-bezier(.25,1,.5,1);
        }

        .modality-card:hover .card-content {
            transform: translateY(-6px);
        }

        .modality-card .card-name {
            transition: letter-spacing .35s ease, text-shadow .35s ease;
        }

        .modality-card:hover .card-name {
            letter-spacing: .025em;
            text-shadow: 0 0 22px rgba(255,42,0,.22), 0 2px 16px rgba(0,0,0,.9);
        }

        .section-py {
            scroll-margin-top: 86px;
        }

        .section-py::after {
            content: "";
            position: absolute;
            right: -16vw;
            bottom: -18vw;
            width: 42vw;
            height: 42vw;
            min-width: 300px;
            min-height: 300px;
            background: radial-gradient(circle, rgba(255,42,0,.035), transparent 68%);
            pointer-events: none;
            filter: blur(30px);
        }

        #classes .cards-grid {
            perspective: 1200px;
        }

        .tilt-card {
            transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px)) scale(var(--scale, 1));
        }

        .tilt-card:hover {
            --ty: -8px;
            --scale: 1.012;
        }

        .cta-premium-pulse {
            position: relative;
            isolation: isolate;
        }

        .cta-premium-pulse::before {
            content: "";
            position: absolute;
            inset: -22px;
            background: radial-gradient(circle, rgba(255,42,0,.28), transparent 68%);
            filter: blur(26px);
            opacity: .45;
            z-index: -1;
            animation: ctaGlowPulse 3.2s ease-in-out infinite;
        }

        @keyframes ctaGlowPulse {
            0%, 100% { opacity: .28; transform: scale(.98); }
            50% { opacity: .58; transform: scale(1.04); }
        }

        .page-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            width: 0%;
            z-index: 2000;
            background: linear-gradient(90deg, #ff2a00, #ff6a4d);
            box-shadow: 0 0 18px rgba(255,42,0,.85);
            pointer-events: none;
        }

        @media (max-width: 768px), (pointer: coarse) {
            .mouse-glow {
                display: none;
            }
            .tilt-card,
            .tilt-card:hover {
                transform: none !important;
            }
            .magnetic {
                transform: none !important;
            }
        }


        /* ────────────────────────────────────────
           CONVERSION UPGRADE — TRUST / CTA / MOBILE POLISH
        ──────────────────────────────────────── */
        .hero-proof-row {
            margin: clamp(1.8rem, 3vw, 2.6rem) auto 0;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: .75rem;
            max-width: 860px;
        }
        .hero-proof-card {
            border: 1px solid rgba(255,42,0,.20);
            background: linear-gradient(180deg, rgba(255,42,0,.055), rgba(255,255,255,.018));
            padding: .9rem .75rem;
            min-height: 82px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 20px 60px rgba(0,0,0,.22);
        }
        .hero-proof-card strong {
            font-family: 'Anton', sans-serif;
            color: #ff2a00;
            font-size: clamp(1.2rem, 3vw, 2.1rem);
            line-height: 1;
        }
        .hero-proof-card span {
            margin-top: .35rem;
            color: rgba(255,255,255,.58);
            font-size: .62rem;
            text-transform: uppercase;
            letter-spacing: .18em;
            font-weight: 800;
        }
        .floating-cta-nox {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 1800;
            display: inline-flex;
            align-items: center;
            gap: .65rem;
            padding: .9rem 1.15rem;
            background: #ff2a00;
            color: #050505;
            font-family: 'Anton', sans-serif;
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: .78rem;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,.14);
            box-shadow: 0 0 32px rgba(255,42,0,.42), 0 18px 50px rgba(0,0,0,.55);
            transform: skewX(-10deg);
        }
        .floating-cta-nox span { display:inline-block; transform: skewX(10deg); }
        .floating-cta-nox:hover { filter: brightness(1.08); }
        .elite-strip {
            border-top: 1px solid rgba(255,42,0,.16);
            border-bottom: 1px solid rgba(255,42,0,.16);
            background: linear-gradient(90deg, rgba(255,42,0,.08), rgba(255,255,255,.02), rgba(255,42,0,.08));
            overflow: hidden;
        }
        .elite-strip-track {
            display: flex;
            width: max-content;
            animation: noxMarquee 28s linear infinite;
        }
        .elite-strip span {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            padding: .85rem 1.4rem;
            font-size: .67rem;
            letter-spacing: .26em;
            text-transform: uppercase;
            font-weight: 900;
            color: rgba(255,255,255,.72);
            white-space: nowrap;
        }
        .elite-strip b { color:#ff2a00; }
        @keyframes noxMarquee { to { transform: translateX(-50%); } }
        .premium-badge {
            display:inline-flex;
            align-items:center;
            gap:.5rem;
            color: rgba(255,255,255,.78);
            border: 1px solid rgba(255,42,0,.22);
            background: rgba(255,42,0,.055);
            padding: .55rem .85rem;
            text-transform: uppercase;
            letter-spacing: .22em;
            font-size: .58rem;
            font-weight: 900;
            margin-bottom: 1.25rem;
        }
        .premium-badge::before {
            content:"";
            width: .45rem;
            height: .45rem;
            border-radius: 999px;
            background:#ff2a00;
            box-shadow:0 0 14px rgba(255,42,0,.9);
        }
        @media (max-width: 640px) {
            .hero-proof-row { grid-template-columns: 1fr; max-width: 320px; gap: .55rem; }
            .hero-proof-card { min-height: 68px; padding: .75rem .6rem; }
            .floating-cta-nox { left: 1rem; right: 1rem; justify-content:center; bottom: .75rem; }
            footer { padding-bottom: 4.8rem; }
        }



        /* ────────────────────────────────────────
           NOX UNIQUE GYM SYSTEM — visual mais exclusivo
        ──────────────────────────────────────── */
        .arena-lines {
            position:absolute; inset:0; z-index:2; pointer-events:none; opacity:.34;
            background:
                linear-gradient(115deg, transparent 0 38%, rgba(255,42,0,.12) 38.2%, transparent 39.2% 100%),
                linear-gradient(70deg, transparent 0 58%, rgba(255,255,255,.06) 58.2%, transparent 59.2% 100%),
                repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px);
            mask-image: radial-gradient(circle at 50% 50%, black 0 58%, transparent 82%);
        }
        .hero-terminal {
            position:absolute; left:clamp(1rem,4vw,3.5rem); bottom:clamp(1rem,5vw,4rem); z-index:4;
            display:grid; gap:.55rem; width:min(310px, calc(100vw - 2rem));
            font-size:.62rem; text-transform:uppercase; letter-spacing:.18em; color:rgba(255,255,255,.62);
        }
        .hero-terminal-row {
            display:flex; justify-content:space-between; align-items:center;
            border:1px solid rgba(255,42,0,.18); background:rgba(5,5,5,.42);
            backdrop-filter:blur(12px); padding:.7rem .85rem;
        }
        .hero-terminal-row b { color:#ff2a00; font-family:'Anton',sans-serif; letter-spacing:.08em; font-size:.85rem; }
        .hero-vertical-mark {
            position:absolute; right:clamp(.75rem,3vw,2.5rem); top:50%; transform:translateY(-50%); z-index:4;
            writing-mode:vertical-rl; text-orientation:mixed; font-family:'Anton',sans-serif;
            letter-spacing:.24em; color:rgba(255,255,255,.18); font-size:clamp(.8rem,1.4vw,1.15rem);
        }
        .nox-arena-section {
            position:relative; overflow:hidden; background:#070707; border-top:1px solid rgba(255,42,0,.14); border-bottom:1px solid rgba(255,42,0,.14);
        }
        .nox-arena-section::before {
            content:""; position:absolute; inset:0; pointer-events:none;
            background:
                radial-gradient(circle at 20% 20%, rgba(255,42,0,.12), transparent 34%),
                radial-gradient(circle at 80% 70%, rgba(255,42,0,.08), transparent 38%),
                linear-gradient(180deg, rgba(255,42,0,.035), transparent 34%);
        }
        .arena-grid {
            display:grid; grid-template-columns:1fr; gap:1.25rem; align-items:stretch;
        }
        @media (min-width: 980px) { .arena-grid { grid-template-columns:1.1fr .9fr; gap:1.75rem; } }
        .arena-map {
            min-height:520px; position:relative; overflow:hidden; border:1px solid rgba(255,42,0,.18);
            background:linear-gradient(135deg, rgba(255,42,0,.08), rgba(255,255,255,.025) 35%, rgba(0,0,0,.72));
            box-shadow:inset 0 0 80px rgba(0,0,0,.55), 0 28px 80px rgba(0,0,0,.42);
        }
        .arena-map::before {
            content:""; position:absolute; inset:22px; border:1px solid rgba(255,255,255,.08);
            background:repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,.035) 38px 39px), repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,.035) 38px 39px);
        }
        .arena-zone {
            position:absolute; border:1px solid rgba(255,42,0,.32); background:rgba(255,42,0,.065);
            padding:1rem; text-transform:uppercase; letter-spacing:.18em; font-size:.58rem; color:rgba(255,255,255,.62);
        }
        .arena-zone strong { display:block; font-family:'Anton',sans-serif; color:white; font-size:clamp(1.25rem,2.2vw,2rem); letter-spacing:.02em; margin-bottom:.3rem; }
        .zone-1 { left:7%; top:9%; width:42%; height:29%; }
        .zone-2 { right:7%; top:15%; width:36%; height:22%; }
        .zone-3 { left:12%; bottom:10%; width:36%; height:30%; }
        .zone-4 { right:10%; bottom:13%; width:38%; height:34%; }
        .arena-core {
            position:absolute; left:50%; top:52%; transform:translate(-50%,-50%); width:138px; height:138px;
            border-radius:50%; border:1px solid rgba(255,42,0,.55); display:grid; place-items:center;
            font-family:'Anton',sans-serif; color:#ff2a00; letter-spacing:.16em; background:rgba(5,5,5,.64);
            box-shadow:0 0 42px rgba(255,42,0,.20), inset 0 0 28px rgba(255,42,0,.08);
        }
        .arena-side { display:grid; gap:1rem; }
        .protocol-card {
            position:relative; overflow:hidden; border:1px solid rgba(255,255,255,.08); background:linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,42,0,.045));
            padding:clamp(1.2rem,2.5vw,1.8rem); min-height:150px;
        }
        .protocol-card::after { content:""; position:absolute; right:-60px; top:-60px; width:160px; height:160px; border-radius:50%; background:radial-gradient(circle, rgba(255,42,0,.16), transparent 68%); }
        .protocol-card span { color:#ff2a00; font-size:.62rem; letter-spacing:.32em; font-weight:900; text-transform:uppercase; }
        .protocol-card h3 { font-family:'Anton',sans-serif; font-size:clamp(1.6rem,3.6vw,2.6rem); line-height:.95; margin:.55rem 0 .75rem; text-transform:uppercase; }
        .protocol-card p { color:rgba(255,255,255,.55); font-size:.85rem; line-height:1.7; max-width:35rem; }
        .nox-stat-wall { display:grid; grid-template-columns:repeat(2,1fr); gap:.8rem; }
        .stat-tile { border:1px solid rgba(255,42,0,.18); background:rgba(5,5,5,.56); padding:1rem; min-height:110px; }
        .stat-tile b { font-family:'Anton',sans-serif; color:#ff2a00; font-size:clamp(1.8rem,4vw,3.2rem); line-height:1; }
        .stat-tile span { display:block; color:rgba(255,255,255,.48); text-transform:uppercase; font-size:.58rem; letter-spacing:.2em; margin-top:.5rem; }
        .nox-method-strip {
            display:grid; grid-template-columns:1fr; gap:.8rem; margin-top:1.4rem;
        }
        @media (min-width: 760px){ .nox-method-strip { grid-template-columns:repeat(4,1fr); } }
        .method-step { border-top:1px solid rgba(255,42,0,.35); padding-top:1rem; }
        .method-step small { color:#ff2a00; font-weight:900; letter-spacing:.22em; }
        .method-step strong { display:block; font-family:'Anton',sans-serif; font-size:1.3rem; text-transform:uppercase; margin:.35rem 0; }
        .method-step p { color:rgba(255,255,255,.45); font-size:.75rem; line-height:1.55; }
        @media (max-width: 768px) {
            .hero-terminal, .hero-vertical-mark { display:none; }
            .arena-map { min-height:390px; }
            .arena-zone { padding:.7rem; font-size:.48rem; letter-spacing:.12em; }
            .arena-zone strong { font-size:1rem; }
            .arena-core { width:96px; height:96px; font-size:.8rem; }
        }


        /* ────────────────────────────────────────
           PLANOS / PREÇOS — CONVERSÃO PARA SISTEMA PACTO
        ──────────────────────────────────────── */
        .pricing-section {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 15%, rgba(255,42,0,.13), transparent 34%),
                radial-gradient(circle at 80% 80%, rgba(255,42,0,.08), transparent 36%),
                #070707;
            border-top: 1px solid rgba(255,42,0,.16);
            border-bottom: 1px solid rgba(255,42,0,.16);
        }
        .pricing-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(115deg, transparent 0 42%, rgba(255,42,0,.08) 42.2%, transparent 43.2% 100%),
                repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 110px);
            opacity: .34;
            pointer-events: none;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        @media (min-width: 860px) {
            .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        .pricing-card {
            position: relative;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.085);
            background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,42,0,.035) 42%, rgba(0,0,0,.82));
            padding: clamp(1.2rem, 2.5vw, 1.75rem);
            box-shadow: 0 24px 80px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
            transition: transform .38s cubic-bezier(.25,1,.5,1), border-color .38s ease, box-shadow .38s ease;
        }
        .pricing-card::after {
            content: "";
            position: absolute;
            right: -90px;
            top: -90px;
            width: 220px;
            height: 220px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(255,42,0,.18), transparent 68%);
            pointer-events: none;
        }
        .pricing-card:hover {
            transform: translateY(-7px);
            border-color: rgba(255,42,0,.62);
            box-shadow: 0 28px 90px rgba(255,42,0,.11), 0 24px 80px rgba(0,0,0,.5);
        }
        .pricing-card.featured {
            border-color: rgba(255,42,0,.75);
            background: linear-gradient(145deg, rgba(255,42,0,.13), rgba(255,255,255,.045) 35%, rgba(0,0,0,.84));
        }
        .pricing-tag {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            gap: .45rem;
            color: #ff2a00;
            border: 1px solid rgba(255,42,0,.28);
            background: rgba(255,42,0,.07);
            padding: .48rem .7rem;
            text-transform: uppercase;
            letter-spacing: .22em;
            font-size: .53rem;
            font-weight: 900;
        }
        .pricing-title {
            font-family: 'Anton', sans-serif;
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            line-height: .95;
            text-transform: uppercase;
            margin-top: 1.1rem;
        }
        .pricing-price {
            margin: 1.25rem 0 1rem;
            display: flex;
            align-items: flex-end;
            gap: .35rem;
        }
        .pricing-price strong {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2.35rem, 5vw, 4rem);
            line-height: .88;
            color: #fff;
            letter-spacing: .01em;
        }
        .pricing-price span {
            color: rgba(255,255,255,.56);
            font-size: .8rem;
            padding-bottom: .3rem;
        }
        .pricing-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .5rem;
            margin: 1rem 0 1.25rem;
        }
        .pricing-meta div {
            border: 1px solid rgba(255,255,255,.075);
            background: rgba(5,5,5,.44);
            padding: .75rem .55rem;
        }
        .pricing-meta small {
            display: block;
            color: rgba(255,255,255,.38);
            font-size: .54rem;
            text-transform: uppercase;
            letter-spacing: .14em;
            margin-bottom: .25rem;
        }
        .pricing-meta b {
            color: rgba(255,255,255,.86);
            font-size: .72rem;
            font-weight: 800;
        }
        .pricing-list {
            display: grid;
            gap: .65rem;
            margin: 1.25rem 0;
            color: rgba(255,255,255,.62);
            font-size: .84rem;
            line-height: 1.5;
        }
        .pricing-list li {
            list-style: none;
            display: flex;
            gap: .55rem;
            align-items: flex-start;
        }
        .pricing-list li::before {
            content: "";
            width: .45rem;
            height: .45rem;
            margin-top: .42rem;
            flex: 0 0 auto;
            border-radius: 999px;
            background: #ff2a00;
            box-shadow: 0 0 12px rgba(255,42,0,.75);
        }
        .pricing-btn {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 52px;
            background: #ff2a00;
            color: #050505;
            font-family: 'Anton', sans-serif;
            text-transform: uppercase;
            letter-spacing: .12em;
            text-decoration: none;
            transform: skewX(-10deg);
            border: 1px solid rgba(255,255,255,.12);
            box-shadow: 0 0 28px rgba(255,42,0,.28);
            transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
        }
        .pricing-btn span { display: inline-block; transform: skewX(10deg); }
        .pricing-btn:hover {
            transform: skewX(-10deg) scale(1.025);
            filter: brightness(1.08);
            box-shadow: 0 0 38px rgba(255,42,0,.5);
        }
        .pricing-note {
            color: rgba(255,255,255,.42);
            font-size: .72rem;
            line-height: 1.65;
        }


        /* ────────────────────────────────────────
           REFINO PREMIUM — MAIS CONVERSÃO, MENOS POLUIÇÃO
        ──────────────────────────────────────── */
        .nav-planos {
            color:#ff2a00 !important;
            border:1px solid rgba(255,42,0,.36);
            padding:.42rem .82rem;
            box-shadow:0 0 18px rgba(255,42,0,.10);
        }
        .drawer-planos { color:#ff2a00 !important; }
        .hero-terminal { opacity:.68; }
        .arena-lines { opacity:.22; }
        .hero-proof-row { max-width:760px; }
        .hero-proof-card { min-height:74px; background:rgba(5,5,5,.38); }
        .pricing-priority { margin-top:0; }
        .pricing-intro { margin-bottom:clamp(2rem,4vw,3.2rem); }
        .pricing-intro-grid {
            display:grid;
            grid-template-columns:1fr;
            gap:1.4rem;
            align-items:end;
        }
        @media (min-width: 980px) {
            .pricing-intro-grid { grid-template-columns:1.12fr .88fr; }
        }
        .pricing-intro-copy {
            border-left:1px solid rgba(255,42,0,.22);
            padding-left:clamp(1rem,2vw,1.5rem);
        }
        .pricing-intro-copy p:first-child {
            color:rgba(255,255,255,.74);
            font-size:clamp(.95rem,1.4vw,1.08rem);
            line-height:1.75;
        }
        .pricing-trust-row {
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            margin-top:1rem;
        }
        .pricing-trust-row span {
            border:1px solid rgba(255,42,0,.18);
            background:rgba(255,42,0,.055);
            color:rgba(255,255,255,.72);
            padding:.55rem .7rem;
            font-size:.58rem;
            text-transform:uppercase;
            letter-spacing:.18em;
            font-weight:900;
        }
        .pricing-grid-premium { align-items:stretch; }
        @media (min-width: 860px) {
            .pricing-grid-premium .pricing-card.featured {
                transform:translateY(-14px);
                min-height:455px;
            }
            .pricing-grid-premium .pricing-card.featured:hover {
                transform:translateY(-20px);
            }
        }
        .pricing-card { backdrop-filter:blur(14px); }
        .best-value {
            box-shadow:0 0 0 1px rgba(255,42,0,.35), 0 36px 100px rgba(255,42,0,.16), inset 0 1px 0 rgba(255,255,255,.08);
        }
        .best-ribbon {
            position:absolute;
            top:1rem;
            right:-2.7rem;
            width:10rem;
            text-align:center;
            transform:rotate(38deg);
            background:#ff2a00;
            color:#050505;
            font-family:'Anton',sans-serif;
            text-transform:uppercase;
            letter-spacing:.09em;
            font-size:.72rem;
            padding:.35rem 0;
            z-index:5;
            box-shadow:0 0 24px rgba(255,42,0,.5);
        }
        .pricing-bottom-cta {
            margin-top:clamp(1.4rem,3vw,2rem);
            display:flex;
            flex-direction:column;
            gap:1rem;
            align-items:flex-start;
            justify-content:space-between;
            border:1px solid rgba(255,42,0,.18);
            background:linear-gradient(90deg, rgba(255,42,0,.07), rgba(255,255,255,.025));
            padding:clamp(1rem,2vw,1.35rem);
        }
        .pricing-bottom-cta p {
            color:rgba(255,255,255,.64);
            font-size:.9rem;
            line-height:1.65;
            max-width:650px;
        }
        .pricing-bottom-cta .skew-btn {
            background:#ff2a00;
            color:#050505;
            padding:.95rem 1.25rem;
            font-family:'Anton',sans-serif;
            text-transform:uppercase;
            letter-spacing:.11em;
            text-decoration:none;
        }
        @media (min-width: 760px) {
            .pricing-bottom-cta { flex-direction:row; align-items:center; }
        }
        #classes { background:linear-gradient(180deg, #050505, #080808 48%, #050505) !important; }
        #video-institucional { background:linear-gradient(180deg,#060606,#090909) !important; }
        .nox-arena-section { background:linear-gradient(180deg,#080808,#050505) !important; }
        @media (max-width: 640px) {
            .pricing-intro-copy { border-left:0; padding-left:0; }
            .pricing-card { min-height:auto; padding:1.05rem; }
            .pricing-price strong { font-size:2.45rem; }
            .pricing-meta { grid-template-columns:1fr; }
            .best-ribbon { font-size:.62rem; right:-3rem; top:.7rem; }
            .premium-badge { margin-bottom:.9rem; }
        }

        /* FOTO REAL NA SEÇÃO DE ESTRUTURA — MENOS CONCEITO, MAIS CREDIBILIDADE */
        .arena-real-photo {
            min-height: 520px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,42,0,.20);
            background: #080808;
            box-shadow: inset 0 0 90px rgba(0,0,0,.46), 0 28px 80px rgba(0,0,0,.42);
        }
        .arena-real-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: grayscale(14%) contrast(1.08) brightness(.72);
            transform: scale(1.02);
        }
        .arena-real-photo::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.32) 45%, rgba(5,5,5,.72)),
                linear-gradient(180deg, transparent 35%, rgba(5,5,5,.92));
            pointer-events: none;
        }
        .arena-photo-content {
            position: absolute;
            left: clamp(1rem, 3vw, 2rem);
            right: clamp(1rem, 3vw, 2rem);
            bottom: clamp(1rem, 3vw, 2rem);
            z-index: 2;
            max-width: 580px;
        }
        .arena-photo-kicker {
            display: inline-flex;
            color: #ff2a00;
            border: 1px solid rgba(255,42,0,.34);
            background: rgba(5,5,5,.48);
            padding: .55rem .75rem;
            text-transform: uppercase;
            letter-spacing: .22em;
            font-size: .55rem;
            font-weight: 900;
            margin-bottom: .9rem;
        }
        .arena-photo-content h3 {
            font-family: 'Anton', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: .92;
            text-transform: uppercase;
            text-shadow: 0 10px 32px rgba(0,0,0,.72);
        }
        .arena-photo-content p {
            margin-top: .85rem;
            color: rgba(255,255,255,.68);
            font-size: .92rem;
            line-height: 1.7;
            max-width: 35rem;
        }
        .arena-photo-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: .55rem;
            margin-top: 1rem;
        }
        .arena-photo-metrics span {
            border: 1px solid rgba(255,255,255,.12);
            background: rgba(5,5,5,.48);
            color: rgba(255,255,255,.76);
            padding: .55rem .65rem;
            font-size: .58rem;
            text-transform: uppercase;
            letter-spacing: .16em;
            font-weight: 900;
        }
        @media (max-width: 768px) {
            .arena-real-photo { min-height: 420px; }
            .arena-real-photo img { object-position: center; }
            .arena-photo-content p { font-size: .82rem; }
        }


    


/* =========================================================
   AJUSTE FINAL DO HERO DESKTOP — NOX
   Objetivo: abrir em 100% de zoom com o mesmo enquadramento
   dos mockups no monitor curvo, sem depender de Ctrl -.
========================================================= */
@media (min-width: 1024px) {
  section.nox-hero-monitor {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 980px !important;
    padding: 72px 0 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  section.nox-hero-monitor .container-nox {
    width: min(100% - 3rem, 1280px) !important;
    transform: translateY(10px) !important;
  }

  section.nox-hero-monitor picture img {
    opacity: .40 !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: grayscale(100%) contrast(1.25) brightness(.78) !important;
  }

  section.nox-hero-monitor .vignette {
    background:
      radial-gradient(ellipse at center, rgba(5,5,5,.04) 0%, rgba(5,5,5,.35) 55%, rgba(5,5,5,.92) 100%),
      linear-gradient(180deg, rgba(5,5,5,.35), rgba(5,5,5,.08) 35%, rgba(5,5,5,.72) 100%) !important;
  }

  section.nox-hero-monitor .flex.justify-center.mb-10 {
    margin-top: 0 !important;
    margin-bottom: clamp(1.1rem, 2.1vh, 2rem) !important;
  }

  section.nox-hero-monitor .flex.justify-center.mb-10 img {
    width: clamp(122px, 10vw, 178px) !important;
    max-height: 150px !important;
    object-fit: contain !important;
  }

  section.nox-hero-monitor .hero-title-container {
    transform: skewY(-1.1deg) !important;
  }

  section.nox-hero-monitor .text-huge {
    font-size: clamp(4.4rem, 7.2vw, 8.9rem) !important;
    line-height: .82 !important;
    letter-spacing: -.018em !important;
  }

  section.nox-hero-monitor .text-machine-outline {
    -webkit-text-stroke: clamp(1.4px, .16vw, 2px) #ff2a00 !important;
    filter: drop-shadow(0 0 16px rgba(255,42,0,.34)) !important;
  }

  section.nox-hero-monitor .hero-subtitle {
    margin-top: clamp(1.1rem, 2.2vh, 1.8rem) !important;
    max-width: 840px !important;
    font-size: clamp(.78rem, 1.05vw, 1rem) !important;
    line-height: 1.55 !important;
    letter-spacing: clamp(.16em, .8vw, .32em) !important;
  }

  section.nox-hero-monitor .hero-btns {
    margin-top: clamp(1.5rem, 3vh, 2.4rem) !important;
    gap: clamp(.8rem, 1.4vw, 1.3rem) !important;
  }

  section.nox-hero-monitor .hero-btn {
    min-width: clamp(190px, 16vw, 260px) !important;
    padding: clamp(.82rem, 1.45vh, 1.05rem) clamp(1.6rem, 2.4vw, 2.6rem) !important;
    font-size: clamp(1rem, 1.35vw, 1.35rem) !important;
  }

  section.nox-hero-monitor .hero-proof-row {
    margin-top: clamp(1.35rem, 2.4vh, 2rem) !important;
    max-width: 760px !important;
    gap: .65rem !important;
  }

  section.nox-hero-monitor .hero-proof-card {
    min-height: clamp(58px, 8vh, 74px) !important;
    padding: .65rem .7rem !important;
  }

  section.nox-hero-monitor .hero-proof-card strong {
    font-size: clamp(1.15rem, 2vw, 1.75rem) !important;
  }

  section.nox-hero-monitor .hero-proof-card span {
    font-size: .56rem !important;
    letter-spacing: .16em !important;
  }

  section.nox-hero-monitor .hero-terminal {
    bottom: clamp(1.1rem, 3vh, 2.2rem) !important;
    left: clamp(1rem, 3vw, 2.5rem) !important;
    width: min(280px, 22vw) !important;
    opacity: .58 !important;
  }

  section.nox-hero-monitor .hero-terminal-row {
    padding: .58rem .72rem !important;
  }

  section.nox-hero-monitor .hero-vertical-mark {
    opacity: .7 !important;
    right: clamp(.8rem, 2vw, 1.8rem) !important;
  }

  section.nox-hero-monitor + .elite-strip {
    margin-top: 0 !important;
  }
}

@media (min-width: 1024px) and (max-height: 760px) {
  section.nox-hero-monitor {
    padding-top: 64px !important;
    padding-bottom: 18px !important;
  }
  section.nox-hero-monitor .flex.justify-center.mb-10 img {
    width: clamp(96px, 8.2vw, 138px) !important;
  }
  section.nox-hero-monitor .text-huge {
    font-size: clamp(3.8rem, 6.35vw, 7.2rem) !important;
  }
  section.nox-hero-monitor .hero-subtitle {
    margin-top: 1rem !important;
    font-size: .74rem !important;
  }
  section.nox-hero-monitor .hero-btns {
    margin-top: 1.2rem !important;
  }
  section.nox-hero-monitor .hero-proof-row {
    margin-top: 1rem !important;
  }
  section.nox-hero-monitor .hero-terminal {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  section.nox-hero-monitor {
    min-height: 100svh !important;
  }
}



/* =========================================================
   CORREÇÃO FINAL — logo e título do hero NOX
   Desktop: logo maior no topo.
   Mobile: logo menor e título mais forte.
========================================================= */
@media (min-width: 1024px) {
  section.nox-hero-monitor .flex.justify-center.mb-10 img {
    width: clamp(165px, 13vw, 250px) !important;
    max-height: 220px !important;
  }

  section.nox-hero-monitor .flex.justify-center.mb-10 {
    margin-bottom: clamp(1rem, 1.8vh, 1.7rem) !important;
  }
}

@media (max-width: 1023px) {
  section.nox-hero-monitor .flex.justify-center.mb-10 img {
    width: clamp(82px, 22vw, 132px) !important;
    max-height: 118px !important;
  }

  section.nox-hero-monitor .flex.justify-center.mb-10 {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  section.nox-hero-monitor .text-huge {
    font-size: clamp(4.1rem, 18vw, 6.2rem) !important;
    line-height: .82 !important;
    letter-spacing: -.02em !important;
  }

  section.nox-hero-monitor .hero-title-container {
    transform: skewY(-1deg) scale(1.04) !important;
  }

  section.nox-hero-monitor .hero-subtitle {
    margin-top: 1.1rem !important;
    font-size: clamp(.72rem, 2.6vw, .9rem) !important;
  }
}

@media (max-width: 430px) {
  section.nox-hero-monitor .flex.justify-center.mb-10 img {
    width: clamp(74px, 24vw, 104px) !important;
    max-height: 96px !important;
  }

  section.nox-hero-monitor .text-huge {
    font-size: clamp(3.7rem, 18.5vw, 5.25rem) !important;
  }

  section.nox-hero-monitor .hero-btn {
    min-width: min(260px, 82vw) !important;
  }
}



                @media(min-width:900px){ .loc-grid{ grid-template-columns: 1fr 1.6fr !important; align-items:start; } }
            

/* =========================================================
   FIX ESTÁVEL — SCROLL NATIVO + PERFORMANCE
   Não existe mais scroll artificial via JavaScript.
   A roda do mouse fica 100% nativa para não descer sozinha.
========================================================= */
html {
  scroll-behavior: smooth;
  overflow-y: auto;
}
body {
  overflow-x: hidden;
  overflow-y: auto !important;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
}
body.drawer-open {
  overflow: hidden !important;
}
.mouse-glow {
  display: none !important;
}
iframe {
  max-width: 100%;
}
/* Evita o mapa roubar a roda do mouse durante a navegação da página */
.loc-map-wrapper iframe,
#localizacao iframe {
  pointer-events: none;
}
#localizacao .loc-map-wrapper,
#localizacao [style*="min-height:420px"] {
  touch-action: pan-y;
}
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.25,1,.5,1), transform .55s cubic-bezier(.25,1,.5,1);
}
.reveal-up.is-visible,
.modality-card.is-visible,
.nox-card.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 768px) {
  .modality-card,
  .nox-card,
  .hero-bg-premium,
  .reveal-up {
    will-change: auto !important;
  }
  .modality-card:hover,
  .nox-card:hover,
  .hero-btn:hover,
  .skew-btn:hover,
  .pricing-card:hover {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}
