/* Variáveis baseadas no Tailwind (Zinc, Cyan, Emerald) */
        :root {
            --zinc-50: #fafafa;
            --zinc-200: #e4e4e7;
            --zinc-300: #d4d4d8;
            --zinc-400: #a1a1aa;
            --zinc-500: #71717a;
            --zinc-600: #52525b;
            --zinc-700: #3f3f46;
            --zinc-800: #27272a;
            --zinc-900: #18181b;
            --zinc-950: #09090b;

            --cyan-300: #67e8f9;
            --cyan-400: #22d3ee;
            --cyan-500: #06b6d4;

            --blue-400: #60a5fa;
            --blue-500: #3b82f6;

            --emerald-400: #34d399;
            --emerald-500: #10b981;

            --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        [id] {
            scroll-margin-top: 88px;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--zinc-950);
            color: var(--zinc-50);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;

            & ::selection {
                background-color: rgba(6, 182, 212, 0.3);
            }
        }

        body.modal-open {
            overflow: hidden;
        }

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

        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--cyan-300);
            outline-offset: 3px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .skip-link {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 100;
            padding: 10px 14px;
            color: var(--zinc-950);
            background: var(--cyan-300);
            border-radius: 8px;
            font-weight: 700;
            transform: translateY(-160%);
            transition: transform 0.2s ease;

            &:focus {
                transform: translateY(0);
            }
        }

        .brand-icon {
            width: 1.25rem;
            height: 1.25rem;
            flex: none;
            fill: currentColor;
        }

        .container {
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Utilitários Visuais */
        .text-cyan {
            color: var(--cyan-400);
        }

        .bg-cyan {
            background-color: var(--cyan-500);
        }

        .text-zinc-400 {
            color: var(--zinc-400);
        }

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

        /* --- Navbar --- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.3s ease;
            padding: 20px 0;
            border-bottom: 1px solid transparent;

            &.scrolled {
                background-color: rgba(9, 9, 11, 0.8);
                backdrop-filter: blur(12px);
                padding: 12px 0;
                border-bottom-color: var(--zinc-800);
            }

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

            & .logo {
                font-family: 'Aldrich', var(--font-sans);
                font-weight: 400;
                font-size: 1.25rem;
                letter-spacing: -0.05em;
                display: flex;
                align-items: center;
                gap: 8px;
                cursor: pointer;
            }

            & .desktop-menu {
                display: none;
                align-items: center;
                gap: 32px;
                font-size: 0.875rem;
                font-weight: 500;
                color: var(--zinc-400);

                @media (min-width: 768px) {
                    display: flex;
                }

                & .nav-link {
                    color: inherit;
                    transition: color 0.2s;
                    display: flex;
                    align-items: center;
                    gap: 4px;

                    &:hover {
                        color: var(--zinc-50);
                    }
                }

                & .btn-primary {
                    background-color: var(--cyan-500);
                    color: var(--zinc-950);
                    padding: 8px 20px;
                    border-radius: 9999px;
                    font-weight: 600;
                    transition: background-color 0.2s;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    &:hover {
                        background-color: var(--cyan-400);
                    }
                }
            }

            & .mobile-toggle {
                color: var(--zinc-300);

                @media (min-width: 768px) {
                    display: none;
                }
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--zinc-900);
            border-bottom: 1px solid var(--zinc-800);
            padding: 24px;
            flex-direction: column;
            gap: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

            &.open {
                display: flex;
            }

            & .nav-link {
                text-align: left;
                color: var(--zinc-300);
                font-size: 1.125rem;
                padding: 8px 0;

                &:hover {
                    color: var(--zinc-50);
                }
            }

            & .btn-primary {
                margin-top: 16px;
                background-color: var(--cyan-500);
                color: var(--zinc-950);
                padding: 12px 20px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            padding: 164px 24px 96px;
            overflow: hidden;
            text-align: center;

            & .hero-glow {
                position: absolute;
                top: 25%;
                left: 50%;
                transform: translateX(-50%);
                width: 600px;
                height: 600px;
                background-color: rgba(6, 182, 212, 0.1);
                border-radius: 50%;
                filter: blur(120px);
                pointer-events: none;
                z-index: -1;
            }

            & .hero-eyebrow {
                display: inline-flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 6px 16px;
                padding: 7px 14px;
                border-radius: 9999px;
                background-color: rgba(24, 24, 27, 0.72);
                border: 1px solid rgba(63, 63, 70, 0.8);
                color: var(--zinc-300);
                margin-bottom: 26px;
                font-size: 0.78rem;
                font-weight: 700;

                & .hero-role,
                & .hero-availability {
                    display: inline-flex;
                    align-items: center;
                    gap: 7px;
                }

                & .hero-role {
                    color: var(--cyan-300);

                    & svg {
                        width: 14px;
                        height: 14px;
                    }
                }

                & .dot {
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background-color: var(--emerald-500);
                    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
                    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
                }
            }

            & h1 {
                font-size: clamp(3rem, 6vw, 5.25rem);
                font-weight: 700;
                letter-spacing: -0.045em;
                margin-bottom: 22px;
                max-width: 1040px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.02;

                & .gradient-text {
                    color: transparent;
                    background-clip: text;
                    -webkit-background-clip: text;
                    background-image: linear-gradient(to right, var(--cyan-400), var(--blue-500));
                }
            }

            & .hero-description {
                font-size: 1.05rem;
                color: var(--zinc-400);
                max-width: 700px;
                margin: 0 auto 32px;
                line-height: 1.65;

                @media (min-width: 768px) {
                    font-size: 1.15rem;
                }
            }

            & .cta-group {
                display: flex;
                flex-direction: column;
                gap: 16px;
                justify-content: center;

                @media (min-width: 640px) {
                    flex-direction: row;
                }

                & button,
                & a {
                    padding: 14px 28px;
                    border-radius: 10px;
                    font-weight: 800;
                    font-size: 1rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    transition: all 0.2s;

                    &.primary {
                        background-color: white;
                        color: var(--zinc-950);

                        &:hover {
                            background-color: var(--zinc-200);
                        }
                    }

                    &.secondary {
                        background-color: var(--zinc-900);
                        border: 1px solid var(--zinc-800);
                        color: white;

                        &:hover {
                            background-color: var(--zinc-800);
                        }
                    }
                }
            }

            & .hero-proof {
                width: min(100%, 660px);
                margin: 42px auto 0;
                padding: 18px 0;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                border-top: 1px solid var(--zinc-800);
                border-bottom: 1px solid var(--zinc-800);

                & > div {
                    display: grid;
                    gap: 3px;
                    padding: 0 12px;

                    &:not(:last-child) {
                        border-right: 1px solid var(--zinc-800);
                    }
                }

                & strong {
                    color: var(--zinc-50);
                    font-size: 1.45rem;
                    line-height: 1;
                }

                & span {
                    color: var(--zinc-400);
                    font-size: 0.68rem;
                    font-weight: 700;
                    letter-spacing: 0.08em;
                    text-transform: uppercase;
                }
            }

            & .hero-socials {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin-top: 18px;

                & a {
                    display: inline-flex;
                    align-items: center;
                    gap: 7px;
                    color: var(--zinc-400);
                    font-size: 0.78rem;
                    font-weight: 700;
                    transition: color 0.2s ease;

                    &:hover {
                        color: var(--cyan-300);
                    }

                    & svg {
                        width: 15px;
                        height: 15px;
                    }
                }
            }

            @media (max-width: 560px) {
                padding-top: 136px;

                & .hero-eyebrow {
                    border-radius: 16px;
                }

                & .hero-proof {
                    & span {
                        letter-spacing: 0.03em;
                    }
                }
            }
        }

        /* --- Projetos Section --- */
        .projetos {
            position: relative;
            padding: 96px 0;
            background:
                radial-gradient(900px 380px at 100% 0%, rgba(6, 182, 212, 0.08), transparent 58%),
                radial-gradient(700px 320px at 0% 100%, rgba(59, 130, 246, 0.06), transparent 52%),
                var(--zinc-950);
            isolation: isolate;

            &::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
                background-size: 64px 64px;
                mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent 60%);
                pointer-events: none;
                z-index: 0;
            }

            & .container {
                position: relative;
                z-index: 1;
            }

            & .section-header {
                margin-bottom: 28px;

                &.projects-header {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;

                    @media (min-width: 768px) {
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: flex-end;
                    }
                }

                & .projects-intro {
                    max-width: 720px;
                }

                & .section-eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 6px 12px;
                    margin-bottom: 16px;
                    border: 1px solid rgba(34, 211, 238, 0.22);
                    border-radius: 9999px;
                    background: rgba(9, 9, 11, 0.65);
                    color: var(--cyan-300);
                    font-size: 0.75rem;
                    font-weight: 700;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                }

                & h2 {
                    font-size: clamp(2.25rem, 4vw, 3.4rem);
                    font-weight: 700;
                    letter-spacing: -0.045em;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 14px;
                }

                & p {
                    color: var(--zinc-400);
                    font-size: 1.05rem;
                    max-width: 60ch;
                }

                & .projects-stats {
                    display: grid;
                    grid-template-columns: repeat(2, minmax(120px, 1fr));
                    gap: 12px;
                    min-width: min(100%, 280px);
                }

                & .projects-stat {
                    display: grid;
                    gap: 2px;
                    padding: 14px 16px;
                    border-radius: 18px;
                    background: rgba(24, 24, 27, 0.72);
                    border: 1px solid var(--zinc-800);
                    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);

                    & strong {
                        font-size: 1.5rem;
                        line-height: 1;
                        letter-spacing: -0.04em;
                    }

                    & span {
                        color: var(--zinc-400);
                        font-size: 0.8rem;
                        font-weight: 600;
                        text-transform: uppercase;
                        letter-spacing: 0.08em;
                    }

                    &.accent {
                        border-color: rgba(34, 211, 238, 0.22);

                        & strong {
                            color: var(--cyan-300);
                        }
                    }
                }
            }

            & .grid-projetos {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;

                @media (min-width: 768px) {
                    grid-template-columns: repeat(2, 1fr);
                }

            }
        }

        /* --- Servicos / O que eu faco Section --- */
        .servicos {
            padding: 96px 0;
            background-color: var(--zinc-950);
            position: relative;

            & .section-header {
                text-align: center;
                max-width: 680px;
                margin: 0 auto 56px;

                & .section-eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 6px 12px;
                    margin-bottom: 16px;
                    border: 1px solid rgba(34, 211, 238, 0.22);
                    border-radius: 9999px;
                    background: rgba(9, 9, 11, 0.65);
                    color: var(--cyan-300);
                    font-size: 0.75rem;
                    font-weight: 700;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                }

                & h2 {
                    font-size: clamp(2rem, 4vw, 3rem);
                    font-weight: 700;
                    letter-spacing: -0.045em;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    margin-bottom: 14px;
                }

                & p {
                    color: var(--zinc-400);
                    font-size: 1.05rem;
                    margin: 0 auto;
                }
            }

            & .services-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;

                @media (min-width: 640px) {
                    grid-template-columns: repeat(2, 1fr);
                }

                @media (min-width: 1024px) {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            & .service-card {
                padding: 28px;
                border-radius: 18px;
                background: rgba(24, 24, 27, 0.72);
                border: 1px solid var(--zinc-800);
                transition: transform 0.3s, border-color 0.3s;

                &:hover {
                    transform: translateY(-4px);
                    border-color: rgba(34, 211, 238, 0.35);
                }

                & .service-icon {
                    display: inline-flex;
                    padding: 12px;
                    border-radius: 12px;
                    background-color: rgba(6, 182, 212, 0.1);
                    color: var(--cyan-400);
                    border: 1px solid rgba(6, 182, 212, 0.2);
                    margin-bottom: 18px;
                }

                & h3 {
                    font-size: 1.2rem;
                    font-weight: 700;
                    color: var(--zinc-100);
                    margin-bottom: 10px;
                }

                & p {
                    color: var(--zinc-400);
                    font-size: 0.95rem;
                    line-height: 1.6;
                    margin-bottom: 18px;
                }

                & .service-tags {
                    list-style: none;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;

                    & li {
                        padding: 4px 10px;
                        border-radius: 9999px;
                        background: rgba(9, 9, 11, 0.65);
                        border: 1px solid var(--zinc-800);
                        color: var(--zinc-300);
                        font-size: 0.75rem;
                        font-weight: 600;
                    }
                }
            }
        }

        /* --- Ferramentas / Ecossistema Section --- */
        .ferramentas {
            padding: 96px 0;
            background-color: var(--zinc-900);
            position: relative;
            border-top: 1px solid var(--zinc-800);
            border-bottom: 1px solid var(--zinc-800);

            /* Grid Background Pattern */
            &::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
                background-size: 24px 24px;
                z-index: 1;
            }

            & .container {
                position: relative;
                z-index: 10;
                display: grid;
                gap: 64px;
                align-items: center;

                @media (min-width: 1024px) {
                    grid-template-columns: 1fr 1fr;
                }
            }

            & .badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 4px 12px;
                border-radius: 8px;
                background-color: rgba(6, 182, 212, 0.1);
                color: var(--cyan-400);
                font-size: 0.875rem;
                font-weight: 600;
                border: 1px solid rgba(6, 182, 212, 0.2);
                margin-bottom: 24px;
            }

            & h2 {
                font-size: 2.25rem;
                font-weight: 700;
                margin-bottom: 24px;
                line-height: 1.2;

                @media (min-width: 768px) {
                    font-size: 3rem;
                }
            }

            & p.desc {
                font-size: 1.125rem;
                color: var(--zinc-400);
                margin-bottom: 32px;
            }

            & .features-list {
                list-style: none;
                margin-bottom: 40px;
                display: flex;
                flex-direction: column;
                gap: 16px;

                & li {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;

                    & .icon-box {
                        background-color: var(--zinc-800);
                        padding: 6px;
                        border-radius: 6px;
                        color: var(--cyan-400);
                        margin-top: 4px;
                    }

                    & h3 {
                        font-weight: 600;
                        color: var(--zinc-100);
                        margin-bottom: 4px;
                    }

                    & p {
                        font-size: 0.875rem;
                        color: var(--zinc-400);
                    }
                }
            }

            & .btn-glow {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                background-color: var(--cyan-500);
                color: var(--zinc-950);
                padding: 16px 32px;
                border-radius: 12px;
                font-weight: 700;
                font-size: 1.125rem;
                transition: all 0.3s;
                box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.5);

                &:hover {
                    background-color: var(--cyan-400);
                    transform: scale(1.05);
                }
            }

            /* Mockup UI */
            & .mockup-wrapper {
                position: relative;

                & .mockup-glow {
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(to top right, var(--cyan-500), var(--blue-500));
                    border-radius: 16px;
                    filter: blur(40px);
                    opacity: 0.2;
                    animation: pulse 2s infinite;
                }

                & .mockup {
                    position: relative;
                    background-color: var(--zinc-950);
                    border: 1px solid var(--zinc-800);
                    border-radius: 16px;
                    padding: 8px;
                    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

                    & .mockup-header {
                        display: flex;
                        align-items: center;
                        padding: 12px 16px;
                        background-color: var(--zinc-900);
                        border-bottom: 1px solid var(--zinc-800);
                        border-radius: 12px 12px 0 0;

                        & .dots {
                            display: flex;
                            gap: 8px;

                            & span {
                                width: 12px;
                                height: 12px;
                                border-radius: 50%;

                                &.red {
                                    background-color: #ef4444;
                                }

                                &.yellow {
                                    background-color: #eab308;
                                }

                                &.green {
                                    background-color: #22c55e;
                                }
                            }
                        }

                        & .url-bar {
                            margin-left: 16px;
                            font-size: 0.75rem;
                            color: var(--zinc-400);
                            font-family: monospace;
                            background-color: var(--zinc-950);
                            padding: 4px 12px;
                            border-radius: 6px;
                            max-width: 200px;
                            width: 100%;
                        }
                    }

                    & .mockup-body {
                        padding: 24px;
                        background-color: var(--zinc-950);
                        border-radius: 0 0 12px 12px;
                        height: 300px;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 16px;

                        & .mockup-card {
                            background-color: var(--zinc-900);
                            border: 1px solid var(--zinc-800);
                            border-radius: 8px;
                            padding: 16px;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;

                            & .m-icon {
                                width: 32px;
                                height: 32px;
                                background-color: var(--zinc-800);
                                border-radius: 6px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                color: var(--zinc-600);
                                margin-bottom: 12px;
                            }

                            & .m-lines {
                                & .l1 {
                                    width: 75%;
                                    height: 12px;
                                    background-color: var(--zinc-700);
                                    border-radius: 4px;
                                    margin-bottom: 8px;
                                }

                                & .l2 {
                                    width: 100%;
                                    height: 8px;
                                    background-color: var(--zinc-800);
                                    border-radius: 4px;
                                    margin-bottom: 4px;
                                }

                                & .l3 {
                                    width: 66%;
                                    height: 8px;
                                    background-color: var(--zinc-800);
                                    border-radius: 4px;
                                }
                            }
                        }
                    }
                }
            }
        }

        /* --- Contato Section --- */
        .contato {
            padding: 96px 0;
            background-color: var(--zinc-950);

            & .section-header {
                text-align: center;
                margin-bottom: 64px;

                & h2 {
                    font-size: 2.25rem;
                    font-weight: 700;
                    margin-bottom: 16px;

                    @media (min-width: 768px) {
                        font-size: 3rem;
                    }
                }

                & p {
                    color: var(--zinc-400);
                    font-size: 1.125rem;
                    max-width: 600px;
                    margin: 0 auto;
                }
            }

            & .form-wrapper {
                background-color: var(--zinc-900);
                border: 1px solid var(--zinc-800);
                border-radius: 24px;
                padding: 32px;
                display: grid;
                gap: 48px;
                max-width: 896px;
                margin: 0 auto;

                @media (min-width: 768px) {
                    padding: 48px;
                    grid-template-columns: 2fr 3fr;
                }

                & .contact-info {
                    & h3 {
                        font-size: 1.25rem;
                        font-weight: 700;
                        margin-bottom: 24px;
                    }

                    & .social-links {
                        display: flex;
                        flex-direction: column;
                        gap: 16px;

                        & a {
                            display: flex;
                            align-items: center;
                            gap: 16px;
                            color: var(--zinc-400);
                            transition: color 0.2s;

                            &:hover {
                                color: var(--cyan-400);
                            }

                            & .s-icon {
                                width: 48px;
                                height: 48px;
                                background-color: var(--zinc-950);
                                border: 1px solid var(--zinc-800);
                                border-radius: 50%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                            }

                            & span {
                                font-weight: 500;
                            }
                        }
                    }
                }

                & form {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    gap: 16px;

                    & .contact-honeypot {
                        position: absolute;
                        left: -10000px;
                        width: 1px;
                        height: 1px;
                        overflow: hidden;
                    }

                    & .form-row {
                        display: grid;
                        gap: 16px;

                        @media (min-width: 640px) {
                            grid-template-columns: 1fr 1fr;
                        }
                    }

                    & label {
                        display: block;
                        font-size: 0.875rem;
                        color: var(--zinc-400);
                        font-weight: 500;
                        margin-bottom: 4px;
                    }

                    & input,
                    & textarea {
                        width: 100%;
                        background-color: var(--zinc-950);
                        border: 1px solid var(--zinc-800);
                        border-radius: 8px;
                        padding: 12px 16px;
                        color: white;
                        font-family: inherit;
                        transition: all 0.2s;

                        &:focus {
                            outline: none;
                            border-color: var(--cyan-500);
                            box-shadow: 0 0 0 1px var(--cyan-500);
                        }
                    }

                    & textarea {
                        resize: vertical;
                    }

                    & button[type="submit"] {
                        margin-top: 8px;
                        background-color: white;
                        color: var(--zinc-950);
                        font-weight: 700;
                        font-size: 1.125rem;
                        padding: 16px;
                        border-radius: 8px;
                        transition: background-color 0.2s;

                        &:hover {
                            background-color: var(--zinc-200);
                        }

                        &:disabled {
                            cursor: not-allowed;
                            opacity: 0.55;
                        }
                    }

                    & .form-status {
                        min-height: 1.5em;
                        margin: 0;
                        color: var(--cyan-300);
                        font-size: 0.875rem;

                        &.error {
                            color: #fca5a5;
                        }

                        &.success {
                            color: var(--emerald-400);
                        }
                    }
                }
            }
        }

        /* --- Footer --- */
        footer {
            padding: 32px 0;
            background-color: var(--zinc-950);
            border-top: 1px solid var(--zinc-900);
            color: var(--zinc-400);
            font-size: 0.875rem;

            & .container {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;

                @media (min-width: 768px) {
                    flex-direction: row;
                    justify-content: space-between;
                }
            }

            & .footer-links {
                display: flex;
                gap: 24px;

                & a {
                    transition: color 0.2s;

                    &:hover {
                        color: var(--cyan-400);
                    }
                }
            }
        }

        /* Animações */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Filtros e projetos reais */
        .github-activity {
            margin-bottom: 20px;
            padding: 20px;
            overflow: hidden;
            background:
                radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.1), transparent 34%),
                rgba(24, 24, 27, 0.76);
            border: 1px solid var(--zinc-800);
            border-radius: 22px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);

            & .github-activity-header {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
                margin-bottom: 18px;

                & h3 {
                    margin-top: 5px;
                    font-size: 1.1rem;
                    letter-spacing: -0.02em;
                }

                & a {
                    display: inline-flex;
                    align-items: center;
                    gap: 7px;
                    color: var(--cyan-300);
                    font-size: 0.82rem;
                    font-weight: 700;

                    & svg {
                        width: 15px;
                        height: 15px;
                    }
                }
            }

            & .github-activity-kicker {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                color: var(--zinc-400);
                font-size: 0.7rem;
                font-weight: 800;
                letter-spacing: 0.1em;
                text-transform: uppercase;

                & svg {
                    width: 14px;
                    height: 14px;
                }
            }

            & .github-chart-scroll {
                overflow-x: auto;
                padding: 10px 12px;
                background: rgba(9, 9, 11, 0.68);
                border: 1px solid rgba(63, 63, 70, 0.72);
                border-radius: 14px;
                scrollbar-width: thin;
                scrollbar-color: var(--zinc-700) transparent;

                & img {
                    display: block;
                    width: 100%;
                    min-width: 663px;
                    height: auto;
                    margin: 0 auto;
                    filter: invert(1) hue-rotate(180deg);
                }
            }
        }

        .project-filters {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 16px;
            margin-bottom: 16px;
            background: rgba(24, 24, 27, 0.82);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(63, 63, 70, 0.9);
            border-radius: 22px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
            align-items: end;

            @media (min-width: 768px) {
                grid-template-columns: minmax(0, 2.1fr) minmax(220px, 1fr) auto;
            }

            & .filter-field {
                min-width: 0;
            }

            & label {
                display: block;
                margin-bottom: 6px;
                color: var(--zinc-400);
                font-size: 0.8rem;
                font-weight: 600;
                letter-spacing: 0.02em;
            }

            & input,
            & select {
                width: 100%;
                min-height: 46px;
                padding: 12px 14px;
                color: var(--zinc-50);
                background: linear-gradient(180deg, rgba(9, 9, 11, 0.95), rgba(9, 9, 11, 0.85));
                border: 1px solid var(--zinc-800);
                border-radius: 14px;
                font: inherit;
                transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;

                &:focus {
                    outline: 2px solid var(--cyan-500);
                    outline-offset: 1px;
                    border-color: rgba(34, 211, 238, 0.45);
                    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
                }
            }

            & .filter-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }

            & button,
            & .clear-filters {
                min-height: 46px;
                padding: 10px 18px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                border-radius: 9999px;
                font-weight: 700;
                transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
            }

            & button {
                color: var(--zinc-950);
                background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
                box-shadow: 0 12px 24px rgba(6, 182, 212, 0.16);

                & svg {
                    width: 18px;
                }
            }

            & .clear-filters {
                color: var(--zinc-300);
                border: 1px solid var(--zinc-800);
                background: rgba(9, 9, 11, 0.45);

                &:hover {
                    color: var(--zinc-50);
                    border-color: var(--zinc-700);
                }
            }
        }

        .project-results-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .project-results {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 8px;
            color: var(--zinc-300);
            font-size: 0.95rem;
            font-weight: 600;

            & .project-results-note {
                color: var(--zinc-400);
                font-weight: 500;
            }
        }

        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .active-filter {
            padding: 8px 12px;
            border-radius: 9999px;
            border: 1px solid rgba(34, 211, 238, 0.18);
            background: rgba(8, 145, 178, 0.08);
            color: var(--cyan-300);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .project-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(39, 39, 42, 0.96), rgba(24, 24, 27, 0.98));
            border: 1px solid rgba(63, 63, 70, 0.9);
            border-radius: 24px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;

            &::before {
                content: '';
                position: absolute;
                inset: 0 0 auto;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), transparent);
                opacity: 0.9;
            }

            &:hover {
                transform: translateY(-3px);
                border-color: rgba(34, 211, 238, 0.45);
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
            }

            & .card-body {
                display: flex;
                flex-direction: column;
                gap: 16px;
                padding: 22px;
                height: 100%;

                & h3 {
                    margin: 0;
                }

                & .project-meta-row {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin-bottom: 0;
                }

                & .project-meta-chip {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 7px 10px;
                    border-radius: 9999px;
                    border: 1px solid var(--zinc-800);
                    background: rgba(9, 9, 11, 0.72);
                    color: var(--zinc-300);
                    font-size: 0.75rem;
                    font-weight: 600;
                    line-height: 1;

                    & svg {
                        width: 14px;
                        height: 14px;
                    }

                    & .dot {
                        width: 7px;
                        height: 7px;
                        border-radius: 50%;
                        background: var(--emerald-500);
                        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
                    }

                    &.is-live {
                        color: var(--cyan-300);
                        border-color: rgba(34, 211, 238, 0.22);
                    }

                    &.is-closed .dot {
                        background: var(--zinc-600);
                        box-shadow: none;
                    }

                    &.project-company-chip svg {
                        color: var(--cyan-400);
                    }
                }

                & > h3 {
                    margin: 0;
                    font-size: 1.18rem;
                    font-weight: 800;
                    letter-spacing: -0.03em;
                    line-height: 1.2;
                }

                & .project-description-preview {
                    color: var(--zinc-400);
                    font-size: 0.93rem;
                    line-height: 1.65;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    min-height: 4.8em;
                }

                & .project-card-footer {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: flex-end;
                    justify-content: space-between;
                    gap: 14px;
                    margin-top: auto;
                    padding-top: 2px;

                    & .project-tags {
                        flex: 1 1 250px;
                    }
                }

                & .project-card-actions {
                    display: flex;
                    justify-content: flex-end;
                    margin-left: auto;
                }

                & .project-modal-trigger {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 12px 16px;
                    border-radius: 9999px;
                    border: 1px solid rgba(34, 211, 238, 0.24);
                    background: rgba(8, 145, 178, 0.12);
                    color: var(--cyan-300);
                    font-size: 0.88rem;
                    font-weight: 700;
                    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;

                    & svg {
                        width: 16px;
                        height: 16px;
                    }

                    &:hover {
                        transform: translateY(-1px);
                        background: rgba(8, 145, 178, 0.2);
                        border-color: rgba(34, 211, 238, 0.4);
                    }

                    &:focus-visible {
                        outline: 2px solid var(--cyan-300);
                        outline-offset: 2px;
                    }
                }

                & .project-tags {
                    margin: 2px 0 0;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 6px;

                    & span {
                        display: inline-flex;
                        align-items: center;
                        min-height: 24px;
                        padding: 3px 8px;
                        background: rgba(9, 9, 11, 0.72);
                        border: 1px solid var(--zinc-800);
                        border-radius: 9999px;
                        border-color: var(--zinc-800);
                        color: var(--zinc-300);
                        font-size: 0.7rem;
                        font-weight: 600;
                        line-height: 1.2;
                    }

                    & .tag-more {
                        color: var(--cyan-300);
                        border-color: rgba(34, 211, 238, 0.18);
                        background: rgba(8, 145, 178, 0.12);
                    }
                }

                & .project-dialog {
                    width: min(1120px, calc(100vw - 40px));
                    max-width: none;
                    max-height: calc(100vh - 40px);
                    margin: auto;
                    padding: 0;
                    border: 1px solid rgba(34, 211, 238, 0.22);
                    border-radius: 28px;
                    background:
                        radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 34%),
                        linear-gradient(180deg, rgba(24, 24, 27, 0.98), rgba(9, 9, 11, 0.98));
                    color: var(--zinc-50);
                    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
                    overflow: hidden;

                    &::backdrop {
                        background: rgba(9, 9, 11, 0.78);
                        backdrop-filter: blur(14px);
                    }

                    &:focus-visible {
                        outline: none;
                    }

                    & .project-dialog-shell {
                        display: grid;
                        max-height: calc(100vh - 40px);
                        grid-template-rows: auto 1fr;
                    }

                    & .project-dialog-header {
                        display: flex;
                        align-items: flex-start;
                        justify-content: space-between;
                        gap: 20px;
                        padding: 22px 22px 18px;
                        border-bottom: 1px solid rgba(63, 63, 70, 0.9);
                        background: rgba(9, 9, 11, 0.62);
                    }

                    & .project-dialog-eyebrow {
                        margin-bottom: 8px;
                        color: var(--cyan-300);
                        font-size: 0.75rem;
                        font-weight: 800;
                        letter-spacing: 0.12em;
                        text-transform: uppercase;
                    }

                    & h3 {
                        font-size: clamp(1.4rem, 3vw, 2rem);
                        letter-spacing: -0.04em;
                        line-height: 1.1;
                    }

                    & .project-dialog-close {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 44px;
                        height: 44px;
                        border-radius: 9999px;
                        border: 1px solid var(--zinc-800);
                        background: rgba(24, 24, 27, 0.82);
                        color: var(--zinc-200);
                        flex: none;
                        transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;

                        & svg {
                            width: 18px;
                            height: 18px;
                        }

                        &:hover {
                            transform: rotate(6deg);
                            border-color: rgba(34, 211, 238, 0.4);
                            background: rgba(8, 145, 178, 0.14);
                            color: var(--cyan-300);
                        }

                        &:focus-visible {
                            outline: 2px solid var(--cyan-300);
                            outline-offset: 2px;
                        }
                    }

                    & .project-dialog-body {
                        padding: 22px;
                        overflow: auto;
                        display: grid;
                        gap: 22px;
                    }

                    & .project-dialog-grid {
                        display: grid;
                        gap: 16px;

                        @media (min-width: 860px) {
                            grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.65fr);
                            align-items: start;
                        }
                    }

                    & .project-dialog-copy,
                    & .project-dialog-skills,
                    & .project-dialog-meta-block {
                        border: 1px solid var(--zinc-800);
                        background: rgba(9, 9, 11, 0.56);
                        border-radius: 20px;
                    }

                    & .project-dialog-copy {
                        padding: 18px;

                        & h4 {
                            margin-bottom: 12px;
                            color: var(--cyan-300);
                            font-size: 0.78rem;
                            font-weight: 800;
                            letter-spacing: 0.12em;
                            text-transform: uppercase;
                        }

                        & p {
                            color: var(--zinc-200);
                            font-size: 0.98rem;
                            line-height: 1.8;
                            white-space: normal;
                        }
                    }

                    & .project-dialog-meta {
                        display: grid;
                        gap: 12px;
                    }

                    & .project-dialog-meta-block {
                        padding: 14px 16px;
                    }

                    & .project-dialog-meta-label {
                        display: block;
                        margin-bottom: 5px;
                        color: var(--zinc-400);
                        font-size: 0.7rem;
                        font-weight: 800;
                        text-transform: uppercase;
                        letter-spacing: 0.08em;
                    }

                    & .project-dialog-meta-value {
                        color: var(--zinc-100);
                        font-size: 0.92rem;
                        line-height: 1.55;
                    }

                    & .project-dialog-skills {
                        padding: 18px;

                        & h4 {
                            margin-bottom: 14px;
                            color: var(--cyan-300);
                            font-size: 0.78rem;
                            font-weight: 800;
                            letter-spacing: 0.12em;
                            text-transform: uppercase;
                        }
                    }

                    & .project-dialog-tags {
                        margin-top: 0;
                    }
                }
            }
        }

        .empty-projects {
            padding: 64px 24px;
            text-align: center;
            color: var(--zinc-400);
            background: rgba(24, 24, 27, 0.8);
            border: 1px dashed var(--zinc-700);
            border-radius: 20px;

            & svg {
                width: 40px;
                height: 40px;
                margin-bottom: 16px;
                color: var(--zinc-600);
            }

            & h3 {
                margin-bottom: 6px;
                color: var(--zinc-200);
            }
        }

        .pagination {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
            align-items: center;

            & a,
            & .pagination-ellipsis {
                min-width: 44px;
                height: 44px;
                padding: 0 14px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 9999px;
                border: 1px solid var(--zinc-800);
                background: rgba(24, 24, 27, 0.8);
                color: var(--zinc-400);
                font-size: 0.9rem;
                font-weight: 600;
                transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
            }

            & a:hover {
                border-color: rgba(34, 211, 238, 0.35);
                color: var(--zinc-50);
                transform: translateY(-1px);
            }

            & a.active {
                background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
                border-color: transparent;
                color: var(--zinc-950);
                box-shadow: 0 12px 24px rgba(6, 182, 212, 0.16);
            }

            & .pagination-nav {
                gap: 8px;
            }

            & .pagination-ellipsis {
                min-width: 32px;
                padding: 0;
                border-color: transparent;
                background: transparent;
                color: var(--zinc-600);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
