        @font-face {
            font-family: 'Skyer';
            src: url('skyer.otf') format('opentype'), url('skyer.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --bg-color: #252525;
            --text-main: #d9d9d9;
            --text-light: #f3f3f3;
            --text-sub: #e3e3e3;
        }

        .plyr__poster {
            background-size: cover !important;
            background-position: center !important;
        }

        .plyr__control--overlaid {
            display: none !important;
        }

        body,
        html {
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            color: white;
            font-family: 'Roboto', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
            position: relative;
        }

        .noise::after {
            content: "";
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.01;
            pointer-events: none;
            z-index: 9998;
            animation: noiseAnim 0.2s steps(2) infinite;
            will-change: transform;
            transform-style: preserve-3d;
        }

        @keyframes noiseAnim {
            0% {
                transform: translate(0, 0);
            }

            20% {
                transform: translate(1%, 1%);
            }

            40% {
                transform: translate(2%, -1%);
            }

            60% {
                transform: translate(1%, -2%);
            }

            80% {
                transform: translate(-2%, -2%);
            }

            100% {
                transform: translate(0, 0);
            }
        }

        .snap-container {
            position: relative;
        }

        section {
            min-height: 100vh;
            padding: 20vh 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;
        }

        #capa {
            height: 100vh;
            min-height: 100vh;
            padding: 0;
            display: block;
        }

        .capa-img-full {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .header-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 10%;
            z-index: 100;
            background: transparent;
            display: flex;
            gap: 3rem;
            will-change: top, transform;
        }

        .header-sticky::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            backdrop-filter: blur(var(--blur-val, 0px)) saturate(var(--sat-val, 1));
            -webkit-backdrop-filter: blur(var(--blur-val, 0px)) saturate(var(--sat-val, 1));

            background-color: var(--bg-fade-col, transparent);

            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
            pointer-events: none;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            letter-spacing: 7px;
            text-transform: uppercase;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: rgba(255, 255, 255, 1);
        }

        #transition-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
        }

        .titulo-secao {
            font-family: 'Oswald', sans-serif;
            letter-spacing: 7px;
            color: white;
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 200;
            margin: 0 0 50px 0;
            text-align: left;
        }

        .texto-corpo {
            color: var(--text-main);
            font-size: 14px;
            line-height: 1.8;
            margin: 0;
        }

        .comentario-trabalho {
            font-family: 'Roboto', sans-serif;
            font-weight: 100;
            color: var(--text-sub);
            font-size: 15px;
            max-width: 600px;
            line-height: 1.8;
        }

        .nome-foto {
            font-family: 'Oswald', sans-serif;
            font-weight: 200;
            font-size: 18px;
            color: var(--text-light);
            letter-spacing: 2px;
            margin-top: 20px;
        }

        .signature {
            font-family: 'Skyer', sans-serif;
            font-size: 14px;
            color: var(--text-light);
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .list-container {
            list-style: none !important;
            padding: 0;
            margin: 0;
        }

        .list-item {
            font-family: 'Roboto', sans-serif;
            font-weight: 100;
            color: var(--text-sub);
            margin-bottom: 40px;
            font-size: 14px;
            list-style: none !important;
            display: block;
        }

        .list-item::before {
            display: none !important;
            content: none !important;
        }

        .list-item b {
            font-family: 'Oswald', sans-serif;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            display: block;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 4px;
            margin-bottom: 8px;
        }

        .portfolio-box {
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .portfolio-box:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.02);
            transform: translateX(10px);
        }

        .portfolio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--bg-color);
            z-index: 90;
            overflow-y: auto;
            padding: 120px 10% 10vh 10%;
            opacity: 0;
            visibility: hidden;
        }

        .portfolio-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .portfolio-modal::-webkit-scrollbar {
            display: none;
        }

        .portfolio-layout-container {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .category-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 30px;
        }

        .category-nav-btn {
            font-family: 'Oswald', sans-serif;
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 6px 14px;
            cursor: pointer;
            transition: color 0.2s ease, border-color 0.2s ease;
            background: none;
        }

        .category-nav-btn:hover {
            color: rgba(255, 255, 255, 0.7);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .category-nav-btn.active-cat {
            color: white;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            will-change: opacity, transform;
        }

        .fade-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .heavy-fade {
            opacity: 0;
            transform: translateY(90px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .heavy-fade.is-visible {
            opacity: 1;
            transform: translateY(0);
        }


.spotlight-item.in-spotlight {
    pointer-events: auto;
}
.spotlight-item .spotlight-scale-target {
    transform-origin: center center;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    outline: 1px solid transparent;
}
.inline-cover img, .inline-cover video {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: scale(1.02);
}

        .vitrine-section {
            margin-top: 56px;
            width: 100%;
            position: relative;
        }

        .vitrine-label {
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            letter-spacing: 5px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
            min-height: 200px;
            display: flex;
            align-items: center;
            contain: layout;
        }

        .carousel-track {
            display: flex;
            gap: 15px;
            align-items: center;
            width: max-content;
            will-change: transform;
            height: 180px;
            transform: translate3d(0, 0, 0);
        }

        .carousel-item {
            flex: 0 0 auto;
            width: 140px;
            height: 79px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.4s ease;
            transform: translateZ(0);
        }

        .carousel-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .carousel-item.active {
            width: 320px;
            height: 180px;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }

        .carousel-play {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: rgba(0, 0, 0, 0.4);
            will-change: opacity;
        }

        .carousel-item:hover .carousel-play {
            opacity: 0.5;
        }

        .carousel-play svg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 32px;
            height: 32px;
            margin-top: -16px;
            margin-left: -16px;
            fill: rgba(255, 255, 255, 1);
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .carousel-nav-btn {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
            padding: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 30;
            opacity: 0.6;
        }

        .carousel-nav-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            opacity: 1;
        }

        .carousel-nav-btn svg {
            color: white;
            display: block;
            width: 24px;
            height: 24px;
        }

        #video-lightbox {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #video-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-inner {
            width: 90%;
            max-width: 860px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-close {
            position: absolute;
            top: -38px;
            right: 0;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.4);
            font-family: 'Oswald', sans-serif;
            font-size: 11px;
            letter-spacing: 4px;
            cursor: pointer;
            text-transform: uppercase;
            padding: 0;
        }

        .lightbox-close:hover {
            color: white;
        }

        .lightbox-player-wrap {
            width: 100%;
            aspect-ratio: 16/9;
            background: #0a0a0a;
        }

        @keyframes fadeSlow {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .fade-in-slow {
            animation: fadeSlow 1s ease forwards;
        }

        .subcat-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 16px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 14px;
            transition: border-color 0.3s ease;
            width: max-content;
        }

        .subcat-header:hover {
            border-color: white;
        }

        .subcat-title {
            font-family: 'Oswald', sans-serif;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .subcat-header:hover .subcat-title,
        .subcat-header.open .subcat-title {
            color: white;
        }

        .subcat-indicator {
            font-family: 'Oswald', sans-serif;
            color: rgba(255, 255, 255, 0.3);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .subcat-header:hover .subcat-indicator {
            color: white;
        }

        .subcat-header.open .subcat-indicator {
            transform: translateX(6px);
            opacity: 0.5;
        }

        .subcat-body {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s ease, margin-bottom 0.4s ease;
            width: 100%;
            margin-bottom: 0px;
        }

        .subcat-body.open {
            grid-template-rows: 1fr;
            margin-bottom: 26px;
        }

        .subcat-body-inner {
            overflow: hidden;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.4s ease;
        }

        .subcat-body.open .subcat-body-inner {
            opacity: 1;
            transform: translateY(0);
        }

        .subcat-body-inner-pad {
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        @media (max-width: 768px) {
            #capa {
                min-height: 80vh;
                height: 80vh;
                position: relative;
            }

            .header-sticky {
                padding: 20px 5%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
                position: absolute;
                top: 80vh;
                transform: translateY(-100%);
                opacity: 0;
                 transition: opacity 0.6s ease-in-out;
            }

            .header-sticky.mobile-fixed {
                position: fixed !important;
                top: 0 !important;
                transform: none !important;
                opacity: 1 !important;
            }

            .nav-link {
                font-size: 11px !important;
                letter-spacing: 3px !important;
            }

            section {
                padding: 15vh 5%;
            }

            .portfolio-modal {
                padding: 140px 5% 100px 5%;
            }

            .carousel-wrapper {
                min-height: 155px;
            }

            .carousel-track {
                height: 135px;
            }

            .carousel-item {
                width: 110px;
                height: 62px;
            }

            .carousel-item.active {
                width: 240px;
                height: 135px;
            }

            .category-nav {
                gap: 6px;
            }

            .category-nav-btn {
                font-size: 8px;
                padding: 6px 10px;
            }
        }

        /* Novas Implementações */
        .carousel-wrapper {
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .reveal-wrap { overflow: hidden; display: inline-block; vertical-align: top; }
        .reveal-text {
            display: inline-block;
            transform: translateY(110%);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
        }
        .fade-up.is-visible .reveal-text {
            transform: translateY(0);
        }

        .magnetic-btn { 
            transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s ease, border-color 0.2s ease; 
            will-change: transform; 
        }
/* Custom Play Button Design */
.play-btn-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.play-btn-circle svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* Custom play button opacity for animated covers */
.play-btn-animated-cover { opacity: 0.4; }
.group:hover .play-btn-animated-cover { opacity: 0.75; }

/* Loading animation for inline video covers */
.inline-cover.is-loading .play-btn-circle {
    opacity: 1 !important;
}
.inline-cover.is-loading .play-btn-circle svg {
    display: none;
}
.inline-cover.is-loading .play-btn-circle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: loading-spin 0.8s linear infinite;
}
@keyframes loading-spin {
    to { transform: rotate(360deg); }
}

