        /* --- IMPORTAÇÃO DE FONTES LOCAIS (GARET) --- */

        /* Garet Book (Usada para pesos normais - 400) */
        @font-face {
            font-family: 'Garet';
            src: url('fonts/Garet-Book.woff2') format('woff2'),
                url('fonts/Garet-Book.woff') format('woff'),
                url('fonts/Garet-Book.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        /* Garet Heavy (Usada para pesos negritos - 800) */
        @font-face {
            font-family: 'Garet';
            src: url('fonts/Garet-Heavy.woff2') format('woff2'),
                url('fonts/Garet-Heavy.woff') format('woff'),
                url('fonts/Garet-Heavy.ttf') format('truetype');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        /* --- VARIÁVEIS & RESET --- */
        :root {
            --bg-color: #050505;
            --surface-color: #0f0f0f;
            --text-main: #ffffff;
            --text-muted: #888888;

            /* Warm Gradient Streetwear */
            --gradient-warm: linear-gradient(135deg, #FF512F 0%, #F09819 50%, #DD2476 100%);
            --accent-glow: rgba(255, 81, 47, 0.3);

            /* Fontes */
            --font-body: 'Outfit', sans-serif;
            /* Para textos corridos */
            --font-headings: 'Garet', sans-serif;
            /* Para títulos */

            --easing: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Removendo seleção padrão para evitar problemas de contraste */
        ::selection {
            background: #FF512F;
            color: #fff;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-body);
            /* Padrão Outfit */
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            position: relative;
        }

        /* --- BACKGROUND ANIMADO --- */
        .ambient-light {
            position: fixed;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80vw;
            height: 80vw;
            max-width: 600px;
            max-height: 600px;
            background: var(--gradient-warm);
            filter: blur(120px);
            opacity: 0.08;
            border-radius: 50%;
            z-index: -1;
            animation: floatLight 10s infinite alternate ease-in-out;
            pointer-events: none;
        }

        @keyframes floatLight {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.08;
            }

            100% {
                transform: translate(-40%, -40%) scale(1.2);
                opacity: 0.12;
            }
        }

        /* --- TIPOGRAFIA & UTILITÁRIOS --- */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Aplica Garet nos Headings */
        h1,
        h2,
        h3 {
            font-family: var(--font-headings);
            font-weight: 800;
            /* Chama o arquivo Garet-Heavy */
            line-height: 1.1;
        }

        .gradient-text {
            background-image: var(--gradient-warm);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: background-position 0.5s ease;
        }

        .gradient-text:hover {
            background-position: right center;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.2rem 0;
            z-index: 100;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-headings);
            /* Garet na Logo */
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #FF512F;
        }

        .header-cta {
            font-size: 0.85rem;
            font-weight: 500;
            /* Reduzi um pouco o peso no botão */
            padding: 0.6rem 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--easing);
        }

        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-warm);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s var(--easing);
        }

        .header-cta:hover {
            border-color: transparent;
        }

        .header-cta:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .hero .header-cta {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
        }


        /* --- HERO (Section 1) --- */
        .hero {
            /* Removed min-height 100vh to allow scroll flow, handled by content now */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 14.375rem;
            /* Space for header */
            padding-bottom: 4rem;
        }


        .hero-title {
            font-size: clamp(2.5rem, 8vw, 6rem);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            /* Garet funciona melhor com kerning apertado */
        }

        .hero-tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 0 auto;
            font-weight: 300;
            /* Usa Outfit Light */
        }

        .manifesto {
            font-size: clamp(1.2rem, 4vw, 2rem);
            font-weight: 800;
            margin-bottom: 2.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: var(--font-headings);
        }

        .hero-pillars {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .pillar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pillar-title {
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 0.3rem;
            font-family: var(--font-headings);
        }

        .pillar-sub {
            font-weight: 300;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .hero-pillars {
                gap: 2rem;
                flex-direction: column;
            }
        }

        /* --- SECTION 2: WHAT WE DO --- */
        .section {
            padding: 6rem 0;
        }

        .section-header {
            margin-bottom: 3rem;
            text-align: center;
        }

        .label {
            display: block;
            text-align: center;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #FF512F;
            margin-bottom: 2rem;
            font-weight: 700;
            font-family: var(--font-body);
            /* Outfit para labels pequenas */
        }

        .grid-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .grid-pillars {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .section {
                padding: 4rem 0;
            }

            .hero {
                padding-top: 12.25rem;
            }
        }

        .card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            transition: all 0.5s var(--easing);
            position: relative;
            overflow: hidden;
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-warm);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--easing);
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .card:hover::after {
            transform: scaleX(1);
        }

        .card-icon {
            font-family: var(--font-headings);
            /* Garet nos números */
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            /* Peso 800 chama Garet Heavy */
            font-weight: 800;
        }

        .card p {
            color: var(--text-muted);
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- SECTION 3: MISSION --- */
        .mission-section {
            position: relative;
            padding: 8rem 0;
            text-align: center;
            overflow: hidden;
        }

        .mission-quote {
            font-family: var(--font-headings);
            font-size: clamp(1.8rem, 5vw, 3.5rem);
            font-weight: 800;
            /* Garet Heavy */
            line-height: 1.2;
            margin: 2rem auto;
            max-width: 900px;
        }

        .mission-quote span {
            color: var(--text-muted);
            transition: color 0.3s ease;
            /* Podemos usar o peso 400 (Garet Book) para a segunda parte da frase para contraste */
            font-weight: 400;
            font-family: var(--font-headings);
        }

        .mission-quote:hover span {
            color: #ccc;
        }

        .email-form {
            margin-top: 3rem;
            position: relative;
            display: inline-block;
            width: 100%;
            max-width: 400px;
        }

        .email-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 0;
            color: white;
            font-family: var(--font-body);
            font-size: 1rem;
            border-radius: 0;
        }

        .email-input:focus {
            outline: none;
            border-color: #FF512F;
        }

        .submit-arrow {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #FF512F;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .submit-arrow:hover {
            transform: translateY(-50%) translateX(5px);
        }

        /* --- SECTION 4: ROADMAP --- */
        .roadmap-section {
            padding: 10rem 0;
            text-align: center;
        }

        .roadmap-section .header-cta {
            display: inline-block;
            /* margin-top: 1.5rem; Handled inline in HTML currently or can move here */
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
        }


        /* --- FOOTER --- */
        .site-footer {
            background-color: #000;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 0 2rem 0;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        .footer-col h4 {
            font-family: var(--font-headings);
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            color: #fff;
        }

        .footer-link {
            display: block;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #FF512F;
        }

        .footer-logo {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .footer-logo span {
            color: #FF512F;
        }

        .footer-desc {
            color: var(--text-muted);
            max-width: 300px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            text-align: center;
            color: #444;
            font-size: 0.8rem;
        }

        .big-year {
            font-family: var(--font-headings);
            font-size: clamp(6rem, 20vw, 12rem);
            font-weight: 800;
            /* Garet Heavy */
            line-height: 1;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            cursor: default;
            transition: all 0.5s ease;
            letter-spacing: -5px;
            /* Ajuste fino para display fonts grandes */
        }

        .big-year:hover {
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transform: scale(1.02);
        }

        .roadmap-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .social-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 2px;
        }

        .social-link:hover {
            color: #FF512F;
            border-color: #FF512F;
        }

        /* --- ANIMATION CLASSES --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--easing);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        /* --- TRANSITION & WHY SECTION --- */
        .why-transition {
            min-height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 0;
        }

        .why-trigger {
            font-family: var(--font-headings);
            font-size: clamp(4rem, 15vw, 10rem);
            font-weight: 800;
            color: var(--text-main);
            transition: transform 0.3s ease;
        }

        .why-trigger:hover {
            transform: scale(1.05);
            color: #FF512F;
        }

        .why-scroll-section {
            position: relative;
            height: 300vh;
            /* Scrollable area */
            background: var(--bg-color);
        }

        .sticky-container {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            padding: 0 1.5rem;
        }

        .scroll-text-wrapper {
            position: relative;
            height: 150px;
            width: 100%;
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .scroll-text {
            position: absolute;
            font-family: var(--font-headings);
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            width: 100%;
        }

        .scroll-text.active {
            opacity: 1;
            transform: translateY(0);
        }

        .why-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .why-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .why-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- MODAL --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background-color: var(--surface-color);
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 90%;
            max-width: 500px;
            border-radius: 16px;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .close-modal {
            color: #aaa;
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close-modal:hover {
            color: #fff;
        }

        /* --- MANIFESTO SCROLL SECTION --- */
        .manifesto-scroll-section {
            height: 400vh;
            /* Long scroll area */
            position: relative;
            background: var(--bg-color);
        }

        .manifesto-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .manifesto-stage {
            position: absolute;
            text-align: center;
            opacity: 0;
            transform: translateY(100px) scale(0.8);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            will-change: transform, opacity;
            padding: 0 1rem;
        }

        .m-title {
            font-family: var(--font-headings);
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .m-msg {
            font-family: var(--font-body);
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: var(--text-muted);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease-out 0.2s;
            /* Delay for subtext */
        }

        /* Active states managed by JS */
        .manifesto-stage.active {
            opacity: 1;
            transform: translateY(0) scale(1.1);
            /* "fique grande" */
        }

        .manifesto-stage.active .m-msg {
            opacity: 1;
            transform: translateY(0);
        }

        .manifesto-stage.moved-up {
            opacity: 0.4;
            transform: translateY(-150px) scale(0.9);
            filter: blur(2px);
        }

        .manifesto-stage.moved-up-2 {
            opacity: 0.2;
            transform: translateY(-280px) scale(0.8);
            filter: blur(4px);
        }

        .manifesto-cta-container {
            position: absolute;
            bottom: 10%;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .manifesto-cta-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- WHAT WE DO SCROLL SECTION --- */
        .what-we-do-scroll-section {
            height: 350vh;
            position: relative;
            background: var(--bg-color);
        }

        .what-we-do-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1.5rem;
            overflow: hidden;
        }

        .what-we-do-sticky .label {
            position: absolute;
            top: 25%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .what-we-do-content {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 300px;
            /* Reserve space for text */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .wwd-item {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateY(40px);
            width: 100%;
            opacity: 0;
            transition: all 0.6s var(--easing);
            pointer-events: none;
        }

        .wwd-item.active {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(0);
            pointer-events: auto;
        }

        .wwd-number {
            font-family: var(--font-headings);
            font-weight: 800;
            font-size: 2rem;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            margin-bottom: 1rem;
            display: block;
        }

        .wwd-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .wwd-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
        }