:root {
            --black: #050505;
            --black-soft: #0a0a0a;
            --panel: #101010;
            --white: #ffffff;
            --silver: #d7d7d2;
            --silver-light: #f3f3ef;
            --silver-dark: #969690;
            --gold: #b8955c;
            --gold-light: #d2b37d;
            --line: rgba(255,255,255,.10);
            --muted: rgba(255,255,255,.68);
            --container-width: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 118px;
        }

        body {
            min-height: 100%;
            overflow-x: hidden;
            background:
                radial-gradient(circle at 12% 8%, rgba(184,149,92,.08), transparent 27%),
                radial-gradient(circle at 88% 34%, rgba(215,215,210,.045), transparent 26%),
                var(--black);
            color: var(--white);
            font-family: "Inter", Arial, sans-serif;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button, a {
            -webkit-tap-highlight-color: transparent;
        }

        /* MENU — MANTIDO CONFORME O HTML DE REFERÊNCIA */

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            width: 100%;
            border-bottom: 1px solid transparent;
            transition: background-color .35s ease, backdrop-filter .35s ease, border-color .35s ease;
        }

        .site-header.scrolled {
            background: rgba(5,5,5,.90);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom-color: rgba(255,255,255,.08);
        }

        .navbar {
            width: min(calc(100% - 80px), var(--container-width));
            min-height: 88px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 32px;
        }

        .brand {
            justify-self: start;
            display: inline-flex;
            align-items: center;
        }

        .brand-logo {
            display: block;
            width: auto;
            height: 120px;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            list-style: none;
        }

        .nav-menu a {
            position: relative;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 400;
            color: rgba(255,255,255,.82);
            transition: color .25s ease;
        }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 3px;
            width: 100%;
            height: 1px;
            background: var(--silver);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .3s ease;
        }

        .nav-menu a:hover {
            color: var(--white);
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .language-selector {
            position: relative;
        }

        .language-button {
            min-height: 44px;
            padding: 0 13px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border: 1px solid rgba(255,255,255,.25);
            border-radius: 2px;
            background: rgba(0,0,0,.25);
            color: rgba(255,255,255,.92);
            font: inherit;
            font-size: 11px;
            white-space: nowrap;
            cursor: pointer;
            transition: background-color .25s ease, border-color .25s ease;
        }

        .language-button:hover,
        .language-selector.open .language-button {
            background: rgba(255,255,255,.08);
            border-color: rgba(255,255,255,.5);
        }

        .language-current-flag,
        .language-option-flag {
            width: 28px;
            height: 20px;
            display: inline-flex;
            flex: 0 0 28px;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .flag-svg {
            display: block;
            width: 28px;
            height: 20px;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(255,255,255,.16);
        }

        .language-chevron {
            width: 14px;
            height: 14px;
            display: inline-flex;
            flex: 0 0 14px;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            line-height: 1;
            opacity: .7;
            transform-origin: center;
            transition: transform .25s ease;
        }

        .language-selector.open .language-chevron {
            transform: rotate(180deg);
        }

        .language-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            z-index: 1200;
            width: 290px;
            padding: 8px;
            display: none;
            list-style: none;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 4px;
            background: rgba(10,10,10,.98);
            box-shadow: 0 22px 60px rgba(0,0,0,.42);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .language-selector.open .language-menu {
            display: block;
        }

        .language-option {
            width: 100%;
            min-height: 44px;
            padding: 0 12px;
            display: flex;
            align-items: center;
            gap: 11px;
            border: 0;
            border-radius: 3px;
            background: transparent;
            color: rgba(255,255,255,.78);
            font: inherit;
            font-size: 12px;
            text-align: left;
            cursor: pointer;
            transition: color .2s ease, background-color .2s ease;
        }

        .language-option:hover,
        .language-option[aria-current="true"] {
            color: #fff;
            background: rgba(255,255,255,.08);
        }

        .language-option-text[dir="rtl"] {
            margin-left: auto;
            text-align: right;
        }

        .header-cta {
            min-height: 44px;
            padding: 0 21px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(215,215,210,.7);
            border-radius: 2px;
            background: linear-gradient(135deg,#eeeeea 0%,#c9c9c3 50%,#f5f5f1 100%);
            color: #0b0b0b;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .07em;
            text-transform: uppercase;
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,255,255,.12);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,.2);
            background: rgba(0,0,0,.25);
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 20px;
            height: 1px;
            margin: 5px auto;
            background: var(--white);
        }

        /* HERO — NORMAS DE USO / COMPOSIÇÃO EDITORIAL GCFC */

        .legal-hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid var(--line);
            background:
                radial-gradient(circle at 72% 36%, rgba(184,149,92,.11), transparent 29%),
                linear-gradient(180deg, rgba(5,5,5,.22), rgba(5,5,5,.94)),
                #050505;
        }

        .legal-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
            background-size: 88px 88px;
            mask-image: linear-gradient(to bottom, transparent 2%, black 24%, black 82%, transparent 100%);
        }

        .legal-hero::after {
            content: "";
            position: absolute;
            right: -290px;
            top: 50%;
            width: 700px;
            height: 700px;
            border: 1px solid rgba(216,186,134,.085);
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow:
                0 0 0 58px rgba(184,149,92,.015),
                0 0 110px rgba(184,149,92,.038);
            animation: legalHeroOrbit 34s linear infinite;
            pointer-events: none;
        }

        .legal-hero-inner {
            position: relative;
            z-index: 2;
            width: min(calc(100% - 80px), var(--container-width));
            margin: 0 auto;
            padding: 126px 0 54px;
            display: grid;
            grid-template-columns: minmax(0,1fr) 330px;
            gap: clamp(58px, 8vw, 110px);
            align-items: center;
        }

        .hero-meta {
            order:2;
            position: relative;
            display: grid;
            gap: 14px;
            padding-left: 22px;
        }

        .hero-meta::before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
            box-shadow: 0 0 18px rgba(216,186,134,.26);
        }

        .hero-meta span {
            position: relative;
            min-height: 74px;
            padding: 18px 20px 18px 58px;
            display: flex;
            align-items: center;
            border: 1px solid rgba(255,255,255,.095);
            background:
                linear-gradient(110deg, rgba(184,149,92,.06), rgba(255,255,255,.014));
            color: rgba(255,255,255,.72);
            font-size: 11px;
            line-height: 1.55;
            box-shadow: 0 16px 42px rgba(0,0,0,.18);
            transition:
                transform .4s cubic-bezier(.22,1,.36,1),
                border-color .35s ease,
                background .35s ease,
                box-shadow .35s ease;
            overflow: hidden;
        }

        .hero-meta span::before {
            content: "";
            position: absolute;
            left: 20px;
            top: 50%;
            width: 20px;
            height: 20px;
            border: 1.5px solid rgba(216,186,134,.58);
            background: rgba(184,149,92,.04);
            transform: translateY(-50%) rotate(45deg);
            box-shadow: 0 0 14px rgba(216,186,134,.08);
        }

        .hero-meta span::after {
            content: "";
            position: absolute;
            top: -70%;
            left: -42%;
            width: 22%;
            height: 240%;
            transform: skewX(-18deg) translateX(-180%);
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), rgba(216,186,134,.07), transparent);
            transition: transform .9s cubic-bezier(.22,1,.36,1);
        }

        .hero-meta span:hover {
            transform: translateX(8px);
            border-color: rgba(216,186,134,.38);
            background:
                linear-gradient(110deg, rgba(184,149,92,.10), rgba(255,255,255,.018));
            box-shadow: 0 22px 55px rgba(0,0,0,.28), 0 0 24px rgba(184,149,92,.05);
        }

        .hero-meta span:hover::after {
            transform: skewX(-18deg) translateX(620%);
        }

        .legal-hero-copy {
            position: relative;
            order:1;
            max-width: 820px;
            padding-left: 26px;
        }

        .legal-hero-copy::before {
            content: "";
            position: absolute;
            left: 0;
            top: 3px;
            width: 1px;
            height: 118px;
            background: linear-gradient(var(--gold-light), rgba(216,186,134,0));
            box-shadow: 0 0 18px rgba(216,186,134,.3);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
            color: var(--gold-light);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 36px;
            height: 1px;
            background: var(--gold);
            box-shadow: 0 0 10px rgba(184,149,92,.28);
        }

        .legal-hero h1 {
            max-width: 800px;
            font-family: "Manrope", sans-serif;
            font-size: clamp(48px, 5.8vw, 78px);
            font-weight: 500;
            line-height: 1.02;
            letter-spacing: -.055em;
            text-wrap: balance;
        }

        .legal-hero h1 strong {
            color: var(--silver);
            font-weight: 500;
        }

        .hero-summary {
            max-width: 740px;
            margin-top: 24px;
            color: var(--muted);
            font-size: clamp(15px, 1.35vw, 18px);
            font-weight: 300;
            line-height: 1.72;
        }

        @keyframes legalHeroOrbit {
            to { transform: translateY(-50%) rotate(360deg); }
        }

        /* CONTEÚDO — NAVEGAÇÃO E ACORDEÃO EDUCATIVO */

        .legal-page {
            width: min(calc(100% - 96px), var(--container-width));
            margin: 0 auto;
            padding: 92px 0 120px;
            display: grid;
            grid-template-columns: 300px minmax(0, 1fr);
            gap: 54px;
            align-items: start;
        }

        .legal-nav {
            position: sticky;
            top: 112px;
            padding: 24px;
            border: 1px solid rgba(216,186,134,.22);
            background:
                radial-gradient(circle at 0 0, rgba(184,149,92,.08), transparent 34%),
                linear-gradient(145deg, rgba(21,21,20,.96), rgba(7,7,7,.98));
            box-shadow: 0 28px 70px rgba(0,0,0,.34);
            overflow: hidden;
        }

        .legal-nav::before {
            content: "";
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(255,255,255,.045);
            pointer-events: none;
        }

        .legal-nav-head {
            position: relative;
            z-index: 2;
            padding-bottom: 18px;
            margin-bottom: 14px;
            border-bottom: 1px solid rgba(255,255,255,.075);
        }

        .legal-nav-head strong {
            display: block;
            color: var(--gold-light);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .legal-nav-head span {
            display: block;
            margin-top: 8px;
            color: rgba(255,255,255,.44);
            font-size: 10px;
            line-height: 1.5;
        }

        .legal-nav ol {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 5px;
            list-style: none;
            counter-reset: legal-nav;
            max-height: calc(100svh - 230px);
            overflow-y: auto;
            padding-right: 6px;
            scrollbar-width: thin;
            scrollbar-color: rgba(216,186,134,.28) transparent;
        }

        .legal-nav li {
            counter-increment: legal-nav;
        }

        .legal-nav a {
            position: relative;
            min-height: 44px;
            padding: 10px 34px 10px 34px;
            display: flex;
            align-items: center;
            border: 1px solid transparent;
            color: rgba(255,255,255,.58);
            font-size: 11px;
            line-height: 1.4;
            transition: color .25s ease, transform .25s ease, border-color .25s ease, background .25s ease;
        }

        .legal-nav a::before {
            content: counter(legal-nav, decimal-leading-zero);
            position: absolute;
            left: 10px;
            color: rgba(216,186,134,.72);
            font-size: 8px;
            letter-spacing: .08em;
        }

        .legal-nav a::after {
            content: "↗";
            position: absolute;
            right: 10px;
            color: rgba(255,255,255,.22);
            font-size: 11px;
            transition: transform .25s ease, color .25s ease;
        }

        .legal-nav a:hover,
        .legal-nav a.active {
            color: #fff;
            transform: translateX(3px);
            border-color: rgba(216,186,134,.22);
            background: linear-gradient(90deg, rgba(184,149,92,.07), rgba(255,255,255,.015));
        }

        .legal-nav a:hover::after,
        .legal-nav a.active::after {
            color: var(--gold-light);
            transform: translate(2px,-2px);
        }

        .legal-content {
            min-width: 0;
        }

        .intro-card {
            position: relative;
            margin-bottom: 26px;
            padding: 30px 34px 30px 72px;
            overflow: hidden;
            border: 1px solid rgba(216,186,134,.28);
            background:
                linear-gradient(110deg, rgba(184,149,92,.085), rgba(255,255,255,.015));
            box-shadow: 0 22px 60px rgba(0,0,0,.24);
        }

        .intro-card::before {
            content: "!";
            position: absolute;
            left: 24px;
            top: 50%;
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(216,186,134,.45);
            color: var(--gold-light);
            font-family: "Manrope";
            font-size: 12px;
            transform: translateY(-50%) rotate(45deg);
        }

        .intro-card::after {
            content: "";
            position: absolute;
            top: -70%;
            left: -45%;
            width: 22%;
            height: 240%;
            transform: skewX(-18deg) translateX(-180%);
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), rgba(216,186,134,.07), transparent);
            animation: legalIntroSheen 8s ease-in-out infinite;
        }

        .intro-card strong {
            color: var(--gold-light);
        }

        .intro-card p {
            position: relative;
            z-index: 2;
            margin: 0;
            color: rgba(255,255,255,.78);
            font-size: 14px;
            line-height: 1.8;
        }

        .legal-accordion {
            display: grid;
            gap: 12px;
        }

        .legal-section {
            position: relative;
            margin: 0;
            padding: 0;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.09);
            background:
                radial-gradient(circle at 0 0, rgba(255,255,255,.04), transparent 32%),
                linear-gradient(145deg, rgba(20,20,20,.96), rgba(7,7,7,.99));
            box-shadow: 0 18px 52px rgba(0,0,0,.18);
            transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
        }

        .legal-section:hover {
            border-color: rgba(216,186,134,.24);
        }

        .legal-section.open {
            border-color: rgba(216,186,134,.34);
            box-shadow: 0 26px 70px rgba(0,0,0,.3), 0 0 32px rgba(184,149,92,.05);
        }

        .legal-section::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
            transform: scaleY(.25);
            opacity: .25;
            transition: transform .4s ease, opacity .4s ease;
        }

        .legal-section.open::before {
            transform: scaleY(1);
            opacity: .9;
        }

        .legal-section-header {
            position: relative;
            width: 100%;
            min-height: 92px;
            padding: 22px 72px 22px 88px;
            display: flex;
            align-items: center;
            border: 0;
            background: transparent;
            color: #fff;
            text-align: left;
            cursor: pointer;
        }

        .section-number {
            position: absolute;
            left: 24px;
            top: 50%;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(216,186,134,.36);
            color: var(--gold-light);
            background: rgba(184,149,92,.045);
            font-family: "Manrope";
            font-size: 10px;
            transform: translateY(-50%) rotate(45deg);
        }

        .section-number span {
            transform: rotate(-45deg);
        }

        .legal-section-header h2 {
            margin: 0;
            font-family: "Manrope", sans-serif;
            font-size: clamp(21px, 2.5vw, 30px);
            font-weight: 500;
            line-height: 1.18;
            letter-spacing: -.03em;
        }

        .legal-section-toggle {
            position: absolute;
            right: 24px;
            top: 50%;
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255,255,255,.12);
            background: rgba(255,255,255,.018);
            transform: translateY(-50%);
            transition: transform .35s ease, border-color .35s ease, background .35s ease;
        }

        .legal-section-toggle::before,
        .legal-section-toggle::after {
            content: "";
            position: absolute;
            width: 13px;
            height: 1px;
            background: var(--gold-light);
            transition: transform .35s ease, opacity .35s ease;
        }

        .legal-section-toggle::after {
            transform: rotate(90deg);
        }

        .legal-section.open .legal-section-toggle {
            border-color: rgba(216,186,134,.4);
            background: rgba(184,149,92,.08);
            transform: translateY(-50%) rotate(180deg);
        }

        .legal-section.open .legal-section-toggle::after {
            opacity: 0;
            transform: rotate(0);
        }

        .legal-section-body {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            border-top: 1px solid transparent;
            transition: grid-template-rows .5s cubic-bezier(.22,1,.36,1), opacity .35s ease, border-color .35s ease;
        }

        .legal-section.open .legal-section-body {
            grid-template-rows: 1fr;
            opacity: 1;
            border-top-color: rgba(255,255,255,.075);
        }

        .legal-section-inner {
            min-height: 0;
            overflow: hidden;
        }

        .legal-section-content {
            padding: 26px 34px 32px 88px;
            background: linear-gradient(180deg, rgba(255,255,255,.012), transparent);
        }

        .legal-section h3 {
            margin: 26px 0 12px;
            color: var(--silver-light);
            font-family: "Manrope", sans-serif;
            font-size: 17px;
            font-weight: 500;
        }

        .legal-section p {
            margin-bottom: 16px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.82;
        }

        .legal-section p:last-child {
            margin-bottom: 0;
        }

        .legal-section ul {
            margin: 18px 0 20px;
            display: grid;
            gap: 10px;
            list-style: none;
        }

        .legal-section li {
            position: relative;
            padding: 13px 15px 13px 42px;
            border: 1px solid rgba(255,255,255,.065);
            background: rgba(255,255,255,.014);
            color: rgba(255,255,255,.69);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.65;
        }

        .legal-section li::before {
            content: "";
            position: absolute;
            left: 15px;
            top: 50%;
            width: 9px;
            height: 9px;
            border: 1px solid var(--gold);
            transform: translateY(-50%) rotate(45deg);
        }

        .legal-section b,
        .legal-section strong {
            color: rgba(255,255,255,.94);
            font-weight: 500;
        }

        .warning-box,
        .allowed-box {
            margin: 24px 0 4px;
            padding: 24px 26px;
            border: 1px solid rgba(216,186,134,.2);
            border-left: 2px solid var(--gold);
            background: linear-gradient(90deg, rgba(184,149,92,.07), rgba(255,255,255,.012));
        }

        .warning-box h3,
        .allowed-box h3 {
            margin-top: 0;
        }

        .quote-examples {
            display: grid;
            grid-template-columns: repeat(2, minmax(0,1fr));
            gap: 14px;
            margin-top: 22px;
        }

        .example-card {
            padding: 22px;
            border: 1px solid rgba(255,255,255,.085);
            background: rgba(255,255,255,.018);
        }

        .example-card span {
            display: block;
            margin-bottom: 12px;
            color: var(--gold-light);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .example-card p {
            margin: 0;
            color: rgba(255,255,255,.79);
            font-size: 13px;
            line-height: 1.65;
        }

        .accordion-controls {
            margin-bottom: 14px;
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            flex-wrap: wrap;
        }

        .accordion-control {
            min-height: 36px;
            padding: 0 13px;
            border: 1px solid rgba(255,255,255,.13);
            background: rgba(255,255,255,.02);
            color: rgba(255,255,255,.65);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: .3s ease;
        }

        .accordion-control:hover {
            color: #fff;
            border-color: rgba(216,186,134,.38);
            background: rgba(184,149,92,.07);
        }

        @keyframes legalIntroSheen {
            0%,22% { transform: skewX(-18deg) translateX(-180%); opacity: 0; }
            36% { opacity: 1; }
            58%,100% { transform: skewX(-18deg) translateX(650%); opacity: 0; }
        }

        .legal-footer-note {
            margin-top: 70px;
            padding: 38px;
            border: 1px solid rgba(255,255,255,.12);
            background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
        }

        .legal-footer-note h2 {
            margin-bottom: 16px;
            font-family: "Manrope", sans-serif;
            font-size: 27px;
            font-weight: 500;
        }

        .legal-footer-note p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .site-footer {
            border-top: 1px solid var(--line);
            padding: 38px 24px;
            color: rgba(255,255,255,.48);
            text-align: center;
            font-size: 11px;
            line-height: 1.7;
        }

        @media (max-width: 1040px) {
            .navbar {
                grid-template-columns: 1fr auto;
                width: min(calc(100% - 56px), var(--container-width));
            }

            .nav-menu {
                position: fixed;
                top: 78px;
                left: 20px;
                right: 20px;
                display: none;
                padding: 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                background: rgba(5,5,5,.97);
                border: 1px solid rgba(255,255,255,.1);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu a {
                display: block;
                width: 100%;
                padding: 12px 0;
                font-size: 15px;
            }

            .nav-actions {
                gap: 8px;
            }

            .header-cta {
                display: none;
            }

            .language-button {
                width: 44px;
                padding: 0;
            }

            .language-current-text,
            .language-chevron {
                display: none;
            }

            .language-menu {
                position: fixed;
                top: 76px;
                right: 20px;
                left: 20px;
                width: auto;
            }

            .menu-toggle {
                display: block;
            }

            .legal-page {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .legal-nav {
                position: static;
            }

            .legal-nav ol {
                grid-template-columns: repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 640px) {
            .navbar {
                min-height: 76px;
                width: min(calc(100% - 32px), var(--container-width));
            }

            .brand-logo {
                height: 96px;
            }

            .legal-hero {
                min-height: auto;
            }

            .legal-hero-inner,
            .legal-page {
                width: min(calc(100% - 40px), var(--container-width));
            }

            .legal-hero-inner {
                padding: 118px 0 54px;
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .hero-meta {
                max-width: 520px;
                order: 2;
            }

            .legal-hero-copy {
                padding-left: 18px;
                order: 1;
            }

            .legal-hero h1 {
                font-size: 43px;
            }

            .legal-page {
                padding: 66px 0 84px;
            }

            .legal-nav ol {
                grid-template-columns: 1fr;
            }

            .intro-card {
                padding: 26px 24px;
            }

            .legal-section {
                padding-left: 0;
                padding-top: 69px;
                padding-bottom: 42px;
                margin-bottom: 42px;
            }

            .section-number {
                top: 0;
            }

            .quote-examples {
                grid-template-columns: 1fr;
            }

            .warning-box,
            .allowed-box,
            .legal-footer-note {
                padding: 24px 22px;
            }
        }

            .legal-hero h1 {
                font-size: clamp(44px, 5vw, 66px);
            }

            .hero-summary {
                margin-top: 18px;
                font-size: 15px;
            }

            .legal-visual {
                min-height: 500px;
            }

            .legal-license-panel {
                width: 390px;
                padding: 23px;
            }

            .legal-panel-core {
                padding: 22px 6px 20px;
            }

            .legal-panel-core-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 16px;
            }

            .legal-panel-core h2 {
                font-size: 23px;
            }

            .hero-meta span {
                min-height: 48px;
                padding-top: 11px;
                padding-bottom: 11px;
            }
        }

            .legal-panel-head {
                gap: 12px;
            }

            .legal-panel-symbol {
                width: 76px;
                height: 50px;
                flex-basis: 76px;
            }

            .legal-panel-symbol::before,
            .legal-panel-symbol::after {
                width: 36px;
                height: 34px;
            }

            .legal-panel-brand strong {
                font-size: 15px;
            }

            .legal-panel-core h2 {
                font-size: 22px;
            }
        }


        @media (max-width: 1040px) {
            .legal-hero {
                min-height: auto;
            }

            .legal-hero-inner {
                grid-template-columns: 1fr;
                padding-top: 132px;
                padding-bottom: 66px;
            }

            .legal-hero-copy {
                order: 1;
            }

            .hero-meta {
                order: 2;
                max-width: 620px;
            }
        }

        @media (max-height: 800px) and (min-width: 1041px) {
            .legal-hero-inner {
                padding-top: 105px;
                padding-bottom: 30px;
                gap: 56px;
            }

            .legal-hero h1 {
                font-size: clamp(44px, 5vw, 66px);
            }

            .hero-summary {
                margin-top: 18px;
                font-size: 15px;
            }

            .hero-meta span {
                min-height: 62px;
                padding-top: 14px;
                padding-bottom: 14px;
            }
        }

        @media (max-width: 520px) {
            .hero-meta {
                padding-left: 16px;
            }

            .hero-meta span {
                min-height: 66px;
                padding: 15px 15px 15px 52px;
                font-size: 10px;
            }

            .hero-meta span::before {
                left: 17px;
                width: 18px;
                height: 18px;
            }
        }


        @media (max-width: 1040px) {
            .legal-page {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .legal-nav {
                position: static;
            }

            .legal-nav ol {
                grid-template-columns: repeat(2, minmax(0,1fr));
                max-height: none;
                overflow: visible;
            }
        }

        @media (max-width: 640px) {
            .legal-page {
                width: min(calc(100% - 32px), var(--container-width));
                padding: 62px 0 84px;
            }

            .legal-nav {
                padding: 20px;
            }

            .legal-nav ol {
                grid-template-columns: 1fr;
            }

            .intro-card {
                padding: 24px 20px 24px 58px;
            }

            .intro-card::before {
                left: 18px;
            }

            .legal-section-header {
                min-height: 82px;
                padding: 18px 58px 18px 72px;
            }

            .section-number {
                left: 18px;
                width: 36px;
                height: 36px;
            }

            .legal-section-toggle {
                right: 16px;
                width: 34px;
                height: 34px;
            }

            .legal-section-content {
                padding: 22px 20px 26px;
            }

            .quote-examples {
                grid-template-columns: 1fr;
            }
        }

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

/* Destaque automático da página atual */
.site-header[data-current-page="normas-de-uso-selo"] a[href="/normas-de-uso-selo"] { opacity: 1; }
