        :root {
            --blue-950: #020b1c;
            --blue-900: #031a3d;
            --blue-800: #052758;
            --blue-700: #003da5;
            --blue-600: #0057b8;
            --blue-500: #1572d3;
            --blue-300: #65aaff;
            --white: #ffffff;
            --gray-100: #eef4fb;
            --gray-200: #dce5f0;
            --gray-300: #b8c6d9;
            --gray-400: #8fa2ba;
            --gold: #d4af55;
            --container: 1240px;
            --header-height: 82px;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 28px;
            --shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Inter", sans-serif;
            color: var(--white);
            background: var(--blue-950);
            overflow-x: hidden;
        }
        body.menu-open {
            overflow: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button,
        input,
        textarea {
            font: inherit;
        }
        button {
            border: 0;
            cursor: pointer;
        }
        ul {
            list-style: none;
        }
        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }
        .section {
            position: relative;
            padding: 110px 0;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--blue-300);
            font-family: "Oswald", sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }
        .section-label::before {
            content: "";
            width: 44px;
            height: 2px;
            background: linear-gradient(
                90deg,
                var(--blue-300),
                transparent
            );
        }
        .section-title {
            max-width: 760px;
            font-family: "Oswald", sans-serif;
            font-size: clamp(42px, 6vw, 80px);
            font-weight: 600;
            line-height: 0.98;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        .section-title span {
            color: var(--blue-300);
        }
        .section-description {
            max-width: 650px;
            margin-top: 24px;
            color: var(--gray-300);
            font-size: 17px;
            line-height: 1.8;
        }
        .button {
            min-height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 24px;
            border-radius: var(--radius-sm);
            font-family: "Oswald", sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition:
                transform 0.25s ease,
                background-color 0.25s ease,
                border-color 0.25s ease;
        }
        .button:hover {
            transform: translateY(-3px);
        }
        .button-primary {
            color: var(--white);
            background: var(--blue-600);
        }
        .button-primary:hover {
            background: var(--blue-500);
        }
        .button-outline {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
        }
        .button-outline:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }
        /* ======================================================
           CABEÇALHO
        ====================================================== */
        .header {
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid transparent;
            transition:
                background-color 0.3s ease,
                border-color 0.3s ease,
                backdrop-filter 0.3s ease;
        }
        .header.scrolled {
            border-color: rgba(255, 255, 255, 0.09);
            background: rgba(2, 11, 28, 0.9);
            backdrop-filter: blur(18px);
        }
        .header-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 42px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 13px;
        }
        .brand-symbol {
            width: 46px;
            height: 46px;
            position: relative;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            color: var(--white);
            background: linear-gradient(
                145deg,
                var(--blue-600),
                var(--blue-900)
            );
            box-shadow: 0 10px 35px rgba(0, 87, 184, 0.35);
        }
        .brand-symbol::before {
            content: "✦";
            font-size: 24px;
        }
        .brand-text small {
            display: block;
            margin-bottom: 3px;
            color: var(--gray-300);
            font-family: "Oswald", sans-serif;
            font-size: 10px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
        }
        .brand-text strong {
            display: block;
            font-family: "Oswald", sans-serif;
            font-size: 21px;
            line-height: 1;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .nav {
            justify-self: center;
        }
        .nav-list {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-link {
            position: relative;
            padding: 12px 0;
            color: var(--gray-200);
            font-family: "Oswald", sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 3px;
            left: 0;
            height: 2px;
            background: var(--blue-300);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.25s ease;
        }
        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        .menu-toggle {
            width: 46px;
            height: 46px;
            display: none;
            place-items: center;
            border-radius: 50%;
            color: var(--white);
            background: rgba(255, 255, 255, 0.08);
        }
        /* ======================================================
           HERO
        ====================================================== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            background:
                linear-gradient(
                    90deg,
                    rgba(2, 11, 28, 0.97) 0%,
                    rgba(3, 26, 61, 0.87) 45%,
                    rgba(3, 26, 61, 0.35) 100%
                ),
                url("https://www.otempo.com.br/adobe/dynamicmedia/deliver/dm-aid--75f561cd-eaa7-429f-82e3-81b65330b9bc/cruzeiro-cruzeiro-mineirao-pedro-lourenco-1719948920.jpg?quality=90&preferwebp=true")
                center 35% / cover no-repeat;
        }
        .hero::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 260px;
            background: linear-gradient(
                180deg,
                transparent,
                var(--blue-950)
            );
        }
        .hero-grid {
            min-height: 100vh;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 760px) 1fr;
            align-items: center;
            padding-top: var(--header-height);
        }
        .hero-content {
            padding: 80px 0;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            color: var(--blue-300);
            font-family: "Oswald", sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
        }
        .hero-tag::before {
            content: "";
            width: 44px;
            height: 2px;
            background: linear-gradient(
                90deg,
                var(--blue-300),
                transparent
            );
        }
        .hero-title {
            max-width: 840px;
            font-family: "Oswald", sans-serif;
            font-size: clamp(58px, 8.5vw, 118px);
            font-weight: 600;
            line-height: 0.88;
            letter-spacing: -0.035em;
            text-transform: uppercase;
        }
        .hero-title span {
            display: block;
            color: transparent;
            -webkit-text-stroke: 1.5px var(--blue-300);
        }
        .hero-description {
            max-width: 590px;
            margin-top: 32px;
            color: var(--gray-200);
            font-size: clamp(16px, 1.6vw, 20px);
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 38px;
        }
        .hero-year {
            position: absolute;
            right: -20px;
            bottom: 100px;
            color: transparent;
            font-family: "Oswald", sans-serif;
            font-size: clamp(150px, 23vw, 360px);
            font-weight: 700;
            line-height: 0.7;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }
        .scroll-indicator {
            position: absolute;
            z-index: 3;
            bottom: 35px;
            left: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--gray-300);
            font-family: "Oswald", sans-serif;
            font-size: 9px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            transform: translateX(-50%);
        }
        .scroll-indicator::after {
            content: "";
            width: 1px;
            height: 45px;
            background: linear-gradient(
                180deg,
                var(--blue-300),
                transparent
            );
            animation: scrollPulse 1.8s infinite;
        }
        @keyframes scrollPulse {
            0%,
            100% {
                opacity: 0.35;
                transform: scaleY(0.6);
                transform-origin: top;
            }
            50% {
                opacity: 1;
                transform: scaleY(1);
            }
        }
        /* ======================================================
           NÚMEROS
        ====================================================== */
        .numbers {
            position: relative;
            z-index: 3;
            margin-top: -30px;
        }
        .numbers-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            background: rgba(3, 26, 61, 0.94);
            box-shadow: var(--shadow);
            backdrop-filter: blur(20px);
        }
        .number-card {
            position: relative;
            padding: 32px 22px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        .number-card:last-child {
            border-right: 0;
        }
        .number-value {
            display: block;
            color: var(--white);
            font-family: "Oswald", sans-serif;
            font-size: clamp(34px, 4vw, 55px);
            font-weight: 600;
            line-height: 1;
        }
        .number-label {
            display: block;
            margin-top: 10px;
            color: var(--gray-300);
            font-size: 12px;
            line-height: 1.4;
            text-transform: uppercase;
        }
        /* ======================================================
           APRESENTAÇÃO
        ====================================================== */
        .about {
            overflow: hidden;
            background:
                radial-gradient(
                    circle at 75% 35%,
                    rgba(0, 87, 184, 0.18),
                    transparent 35%
                ),
                var(--blue-950);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            align-items: center;
            gap: 90px;
        }
        .about-gallery {
            min-height: 620px;
            position: relative;
        }
        .about-main-image {
            width: 82%;
            height: 540px;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }
        .about-main-image img,
        .about-small-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-main-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 55%,
                rgba(2, 11, 28, 0.75)
            );
        }
        .about-small-image {
            width: 48%;
            height: 310px;
            position: absolute;
            right: 0;
            bottom: 0;
            overflow: hidden;
            border: 8px solid var(--blue-950);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
        }
        .about-stamp {
            width: 150px;
            height: 150px;
            position: absolute;
            z-index: 3;
            right: 18%;
            bottom: 110px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(101, 170, 255, 0.55);
            border-radius: 50%;
            color: var(--white);
            background: rgba(0, 87, 184, 0.88);
            backdrop-filter: blur(12px);
            font-family: "Oswald", sans-serif;
            font-size: 14px;
            letter-spacing: 0.08em;
            line-height: 1.45;
            text-align: center;
            text-transform: uppercase;
            transform: rotate(-8deg);
        }
        .about-features {
            display: grid;
            gap: 20px;
            margin: 36px 0;
        }
        .about-feature {
            display: grid;
            grid-template-columns: 50px 1fr;
            gap: 16px;
            align-items: start;
        }
        .about-feature-icon {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(101, 170, 255, 0.28);
            border-radius: 50%;
            color: var(--blue-300);
            background: rgba(0, 87, 184, 0.12);
        }
        .about-feature h3 {
            margin-bottom: 5px;
            font-family: "Oswald", sans-serif;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .about-feature p {
            color: var(--gray-400);
            font-size: 14px;
            line-height: 1.6;
        }
        /* ======================================================
           LINHA DO TEMPO
        ====================================================== */
        .timeline {
            overflow: hidden;
            background:
                linear-gradient(
                    rgba(3, 26, 61, 0.94),
                    rgba(2, 11, 28, 0.97)
                ),
                url("https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=2000&q=85")
                center / cover no-repeat;
        }
        .timeline-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 70px;
        }
        .timeline-controls {
            display: flex;
            gap: 10px;
        }
        .timeline-button {
            width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            color: var(--white);
            background: rgba(255, 255, 255, 0.04);
            transition: 0.25s ease;
        }
        .timeline-button:hover {
            border-color: var(--blue-300);
            background: var(--blue-600);
        }
        .timeline-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 0 35px;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }
        .timeline-track::-webkit-scrollbar {
            display: none;
        }
        .timeline-card {
            min-width: 340px;
            max-width: 340px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            background: rgba(2, 11, 28, 0.75);
            backdrop-filter: blur(15px);
            transition:
                transform 0.3s ease,
                border-color 0.3s ease;
        }
        .timeline-card:hover {
            border-color: rgba(101, 170, 255, 0.65);
            transform: translateY(-10px);
        }
        .timeline-image {
            height: 205px;
            position: relative;
            overflow: hidden;
        }
        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.65);
            transition:
                filter 0.4s ease,
                transform 0.5s ease;
        }
        .timeline-card:hover .timeline-image img {
            filter: grayscale(0);
            transform: scale(1.06);
        }
        .timeline-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 45%,
                rgba(2, 11, 28, 0.9)
            );
        }
        .timeline-year {
            position: absolute;
            z-index: 2;
            right: 18px;
            bottom: 12px;
            color: var(--white);
            font-family: "Oswald", sans-serif;
            font-size: 42px;
            font-weight: 600;
            line-height: 1;
        }
        .timeline-content {
            padding: 25px;
        }
        .timeline-content h3 {
            margin-bottom: 12px;
            font-family: "Oswald", sans-serif;
            font-size: 23px;
            font-weight: 500;
            text-transform: uppercase;
        }
        .timeline-content p {
            color: var(--gray-400);
            font-size: 14px;
            line-height: 1.7;
        }
        /* ======================================================
           ÍDOLOS
        ====================================================== */
        .idols {
            background:
                radial-gradient(
                    circle at 50% 0,
                    rgba(0, 87, 184, 0.22),
                    transparent 38%
                ),
                var(--blue-950);
        }
        .idols-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 55px;
        }
        .idols-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .idol-card {
            min-height: 500px;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            background: var(--blue-900);
        }
        .idol-card img {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            object-fit: cover;
            filter: grayscale(1);
            transition:
                filter 0.45s ease,
                transform 0.55s ease;
        }
        .idol-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 35%,
                rgba(2, 11, 28, 0.98)
            );
        }
        .idol-card:hover img {
            filter: grayscale(0);
            transform: scale(1.06);
        }
        .idol-content {
            position: absolute;
            z-index: 2;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 28px;
        }
        .idol-number {
            margin-bottom: 6px;
            color: var(--blue-300);
            font-family: "Oswald", sans-serif;
            font-size: 13px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .idol-name {
            font-family: "Oswald", sans-serif;
            font-size: 33px;
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
        }
        .idol-position {
            margin-top: 10px;
            color: var(--gray-300);
            font-size: 13px;
        }
        /* ======================================================
           TROFÉUS
        ====================================================== */
        .trophies {
            overflow: hidden;
            background:
                radial-gradient(
                    circle at 50% 35%,
                    rgba(212, 175, 85, 0.13),
                    transparent 28%
                ),
                linear-gradient(
                    180deg,
                    var(--blue-900),
                    var(--blue-950)
                );
        }
        .trophies-header {
            margin-bottom: 55px;
            text-align: center;
        }
        .trophies-header .section-label {
            justify-content: center;
        }
        .trophies-header .section-title,
        .trophies-header .section-description {
            margin-inline: auto;
        }
        .trophy-showcase {
            display: grid;
            grid-template-columns: 1fr 1.25fr 1fr;
            align-items: center;
            gap: 25px;
        }
        .trophy-side {
            display: grid;
            gap: 18px;
        }
        .trophy-card {
            padding: 26px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.035);
            transition:
                transform 0.3s ease,
                border-color 0.3s ease;
        }
        .trophy-card:hover {
            border-color: rgba(212, 175, 85, 0.55);
            transform: translateY(-6px);
        }
        .trophy-card-top {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .trophy-card h3 {
            color: var(--gray-200);
            font-family: "Oswald", sans-serif;
            font-size: 18px;
            text-transform: uppercase;
        }
        .trophy-card strong {
            color: var(--gold);
            font-family: "Oswald", sans-serif;
            font-size: 36px;
            line-height: 1;
        }
        .trophy-card p {
            margin-top: 15px;
            color: var(--gray-400);
            font-size: 13px;
            line-height: 1.6;
        }
        .main-trophy {
            min-height: 590px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            overflow: hidden;
            padding: 40px;
            border: 1px solid rgba(212, 175, 85, 0.25);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(
                    circle at 50% 32%,
                    rgba(212, 175, 85, 0.24),
                    transparent 34%
                ),
                rgba(255, 255, 255, 0.025);
        }
        .main-trophy-glow {
            width: 290px;
            height: 290px;
            position: absolute;
            top: 70px;
            left: 50%;
            border-radius: 50%;
            background: rgba(212, 175, 85, 0.16);
            filter: blur(45px);
            transform: translateX(-50%);
        }
        .trophy-placeholder {
            width: 250px;
            height: 320px;
            position: relative;
            z-index: 2;
            display: grid;
            place-items: center;
            color: var(--gold);
            font-size: 170px;
            filter: drop-shadow(
                0 30px 35px rgba(212, 175, 85, 0.28)
            );
        }
        .main-trophy-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .main-trophy-content small {
            color: var(--gold);
            font-family: "Oswald", sans-serif;
            font-size: 12px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }
        .main-trophy-content h3 {
            margin-top: 8px;
            font-family: "Oswald", sans-serif;
            font-size: 38px;
            text-transform: uppercase;
        }
        .main-trophy-content p {
            margin-top: 10px;
            color: var(--gray-400);
        }
        /* ======================================================
           ACERVO
        ====================================================== */
        .collection {
            background: var(--gray-100);
            color: var(--blue-950);
        }
        .collection .section-label {
            color: var(--blue-600);
        }
        .collection .section-description {
            color: #51647d;
        }
        .collection-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
        }
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 250px;
            gap: 16px;
        }
        .collection-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            background: var(--blue-900);
        }
        .collection-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }
        .collection-item.wide {
            grid-column: span 2;
        }
        .collection-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .collection-item:hover img {
            transform: scale(1.07);
        }
        .collection-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: var(--white);
            background: linear-gradient(
                180deg,
                transparent 35%,
                rgba(2, 11, 28, 0.92)
            );
        }
        .collection-overlay small {
            margin-bottom: 6px;
            color: var(--blue-300);
            font-family: "Oswald", sans-serif;
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .collection-overlay h3 {
            font-family: "Oswald", sans-serif;
            font-size: 23px;
            font-weight: 500;
            text-transform: uppercase;
        }
        /* ======================================================
           TORCIDA
        ====================================================== */
        .fans {
            min-height: 730px;
            display: flex;
            align-items: center;
            background:
                linear-gradient(
                    90deg,
                    rgba(2, 11, 28, 0.97) 0%,
                    rgba(3, 26, 61, 0.83) 50%,
                    rgba(3, 26, 61, 0.35) 100%
                ),
                url("https://images.unsplash.com/photo-1518604666860-9ed391f76460?auto=format&fit=crop&w=2000&q=88")
                center / cover no-repeat;
        }
        .fans-content {
            max-width: 680px;
        }
        .fans-quote {
            margin: 35px 0;
            padding-left: 25px;
            border-left: 3px solid var(--blue-300);
            color: var(--gray-200);
            font-size: 20px;
            font-style: italic;
            line-height: 1.7;
        }
        /* ======================================================
           CTA FINAL
        ====================================================== */
        .final-cta {
            padding: 130px 0;
            text-align: center;
            background:
                linear-gradient(
                    rgba(0, 55, 130, 0.88),
                    rgba(2, 11, 28, 0.95)
                ),
                url("https://images.unsplash.com/photo-1526232761682-d26e03ac148e?auto=format&fit=crop&w=2000&q=88")
                center / cover no-repeat;
        }
        .final-cta-content {
            max-width: 900px;
            margin-inline: auto;
        }
        .final-cta h2 {
            font-family: "Oswald", sans-serif;
            font-size: clamp(50px, 7vw, 96px);
            font-weight: 600;
            line-height: 0.95;
            text-transform: uppercase;
        }
        .final-cta p {
            max-width: 650px;
            margin: 25px auto 35px;
            color: var(--gray-200);
            font-size: 18px;
            line-height: 1.7;
        }
        .final-cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }
        /* ======================================================
           RODAPÉ
        ====================================================== */
        .footer {
            padding: 65px 0 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: #010713;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 50px;
            padding-bottom: 50px;
        }
        .footer-description {
            max-width: 380px;
            margin-top: 22px;
            color: var(--gray-400);
            font-size: 14px;
            line-height: 1.7;
        }
        .footer-title {
            margin-bottom: 18px;
            font-family: "Oswald", sans-serif;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
        }
        .footer-links {
            display: grid;
            gap: 12px;
            color: var(--gray-400);
            font-size: 14px;
        }
        .footer-links a:hover {
            color: var(--blue-300);
        }
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 24px;
        }
        .social-link {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            transition: 0.25s ease;
        }
        .social-link:hover {
            border-color: var(--blue-300);
            background: var(--blue-600);
            transform: translateY(-3px);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--gray-400);
            font-size: 12px;
        }

        /* ======================================================
           ROTA CINCO ESTRELAS
        ====================================================== */
        .five-stars-route {
            overflow: hidden;
            background:
                radial-gradient(circle at 85% 15%, rgba(212,175,85,.14), transparent 28%),
                radial-gradient(circle at 12% 82%, rgba(0,87,184,.22), transparent 32%),
                linear-gradient(180deg, #020b1c 0%, #031a3d 52%, #020b1c 100%);
        }
        .route-intro {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
            gap: 70px;
            align-items: end;
            margin-bottom: 55px;
        }
        .route-status {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            margin-bottom: 20px;
            padding: 8px 14px;
            border: 1px solid rgba(212,175,85,.38);
            border-radius: 999px;
            color: var(--gold);
            background: rgba(212,175,85,.06);
            font-family: "Oswald", sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
        }
        .route-status::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 5px rgba(212,175,85,.12);
        }
        .route-note {
            padding: 24px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius-md);
            background: rgba(255,255,255,.035);
            color: var(--gray-300);
            font-size: 14px;
            line-height: 1.75;
        }
        .route-note strong {
            display: block;
            margin-bottom: 8px;
            color: var(--white);
            font-family: "Oswald", sans-serif;
            font-size: 16px;
            text-transform: uppercase;
        }
        .route-map {
            position: relative;
            padding-top: 15px;
        }
        .route-line {
            position: absolute;
            top: 58px;
            left: 9%;
            right: 9%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--blue-300) 50%, var(--gold) 90%, transparent);
            opacity: .65;
        }
        .route-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .route-stop {
            position: relative;
            overflow: hidden;
            min-height: 410px;
            border: 1px solid rgba(255,255,255,.13);
            border-radius: var(--radius-md);
            background: rgba(2,11,28,.78);
            box-shadow: 0 20px 55px rgba(0,0,0,.22);
            transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
        }
        .route-stop:hover {
            transform: translateY(-10px);
            border-color: rgba(212,175,85,.62);
            box-shadow: 0 28px 65px rgba(0,0,0,.35);
        }
        .route-stop::before {
            content: "";
            position: absolute;
            z-index: 4;
            top: 21px;
            left: 50%;
            width: 18px;
            height: 18px;
            border: 4px solid var(--blue-950);
            border-radius: 50%;
            background: var(--gold);
            transform: translateX(-50%);
            box-shadow: 0 0 0 2px rgba(212,175,85,.42), 0 0 22px rgba(212,175,85,.45);
        }
        .route-stop-image {
            height: 235px;
            position: relative;
            overflow: hidden;
        }
        .route-stop-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(.72) contrast(1.08);
            transition: transform .55s ease, filter .4s ease;
        }
        .route-stop:hover .route-stop-image img {
            transform: scale(1.07);
            filter: saturate(1) contrast(1.05);
        }
        .route-stop-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(2,11,28,.05), rgba(2,11,28,.94));
        }
        .route-index {
            position: absolute;
            z-index: 3;
            right: 14px;
            bottom: 8px;
            color: transparent;
            font-family: "Oswald", sans-serif;
            font-size: 58px;
            font-weight: 700;
            line-height: 1;
            -webkit-text-stroke: 1px rgba(255,255,255,.34);
        }
        .route-stop-content {
            position: relative;
            padding: 22px 20px 25px;
        }
        .route-stop-icon {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            margin-bottom: 15px;
            border: 1px solid rgba(212,175,85,.35);
            border-radius: 50%;
            color: var(--gold);
            background: rgba(212,175,85,.07);
        }
        .route-stop h3 {
            margin-bottom: 9px;
            font-family: "Oswald", sans-serif;
            font-size: 21px;
            font-weight: 500;
            line-height: 1.15;
            text-transform: uppercase;
        }
        .route-stop p {
            color: var(--gray-400);
            font-size: 13px;
            line-height: 1.65;
        }
        .route-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            margin-top: 38px;
            padding: 24px 28px;
            border: 1px solid rgba(101,170,255,.2);
            border-radius: var(--radius-md);
            background: linear-gradient(90deg, rgba(0,87,184,.16), rgba(255,255,255,.025));
        }
        .route-footer p {
            max-width: 760px;
            color: var(--gray-300);
            font-size: 14px;
            line-height: 1.7;
        }
        @media (max-width: 1100px) {
            .route-grid { grid-template-columns: repeat(3, 1fr); }
            .route-line { display: none; }
        }
        @media (max-width: 900px) {
            .route-intro { grid-template-columns: 1fr; gap: 30px; }
            .route-grid { grid-template-columns: repeat(2, 1fr); }
            .route-footer { align-items: flex-start; flex-direction: column; }
        }
        @media (max-width: 620px) {
            .route-grid { grid-template-columns: 1fr; }
            .route-stop { min-height: 0; }
            .route-stop-image { height: 260px; }
            .route-footer .button { width: 100%; }
        }

        /* ======================================================
           ANIMAÇÕES
        ====================================================== */
        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition:
                opacity 0.8s ease,
                transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* ======================================================
           RESPONSIVIDADE
        ====================================================== */
        @media (max-width: 1100px) {
            .nav-list {
                gap: 18px;
            }
            .header-inner {
                gap: 20px;
            }
            .about-grid {
                gap: 55px;
            }
            .idols-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .trophy-showcase {
                grid-template-columns: 1fr 1fr;
            }
            .main-trophy {
                grid-column: span 2;
                grid-row: 1;
            }
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
            }
            .footer-grid > div:last-child {
                grid-column: 2;
            }
        }
        @media (max-width: 900px) {
            :root {
                --header-height: 72px;
            }
            .section {
                padding: 85px 0;
            }
            .header-inner {
                grid-template-columns: auto auto;
                justify-content: space-between;
            }
            .header .button {
                display: none;
            }
            .menu-toggle {
                display: grid;
            }
            .nav {
                width: 100%;
                height: calc(100vh - var(--header-height));
                position: fixed;
                top: var(--header-height);
                left: 0;
                display: flex;
                align-items: flex-start;
                padding: 35px 20px;
                background: rgba(2, 11, 28, 0.98);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-15px);
                transition: 0.3s ease;
            }
            .nav.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .nav-list {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
            }
            .nav-link {
                width: 100%;
                display: block;
                padding: 18px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                font-size: 20px;
            }
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .hero-year {
                right: -10px;
                bottom: 140px;
            }
            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .number-card {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .number-card:nth-child(2n) {
                border-right: 0;
            }
            .number-card:last-child {
                grid-column: span 2;
            }
            .about-grid {
                grid-template-columns: 1fr;
            }
            .about-gallery {
                max-width: 650px;
            }
            .timeline-header,
            .idols-header,
            .collection-header {
                align-items: flex-start;
                flex-direction: column;
            }
            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid > div:last-child {
                grid-column: auto;
            }
        }
        @media print {
            .header {
                position: relative;
            }
            .menu-toggle,
            .scroll-indicator,
            .timeline-controls {
                display: none !important;
            }
            .timeline-track {
                flex-wrap: wrap;
                overflow: visible;
            }
            .timeline-card {
                min-width: 300px;
            }
            .section,
            .hero,
            .fans,
            .final-cta {
                break-inside: avoid;
                page-break-inside: avoid;
            }
            body {
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
        }
        @media (max-width: 620px) {
            .container {
                width: min(calc(100% - 28px), var(--container));
            }
            .hero {
                background-position: 62% center;
            }
            .hero-content {
                padding: 110px 0 90px;
            }
            .hero-title {
                font-size: clamp(55px, 18vw, 80px);
            }
            .hero-description {
                font-size: 16px;
            }
            .hero-actions,
            .final-cta-actions {
                flex-direction: column;
            }
            .hero-actions .button,
            .final-cta-actions .button {
                width: 100%;
            }
            .scroll-indicator {
                display: none;
            }
            .numbers {
                margin-top: 0;
            }
            .number-card {
                padding: 25px 12px;
            }
            .about-gallery {
                min-height: 470px;
            }
            .about-main-image {
                width: 90%;
                height: 410px;
            }
            .about-small-image {
                width: 54%;
                height: 220px;
            }
            .about-stamp {
                width: 115px;
                height: 115px;
                right: 8%;
                bottom: 80px;
                font-size: 11px;
            }
            .timeline-card {
                min-width: 285px;
                max-width: 285px;
            }
            .idols-grid {
                grid-template-columns: 1fr;
            }
            .idol-card {
                min-height: 480px;
            }
            .trophy-showcase {
                grid-template-columns: 1fr;
            }
            .main-trophy {
                min-height: 530px;
                grid-column: auto;
            }
            .trophy-placeholder {
                font-size: 140px;
            }
            .collection-grid {
                display: block;
            }
            .collection-item,
            .collection-item.large,
            .collection-item.wide {
                height: 330px;
                margin-bottom: 14px;
            }
            .fans {
                min-height: 680px;
                background-position: 62% center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .footer-bottom {
                align-items: flex-start;
                flex-direction: column;
            }
        }
