       :root {
            --yellow: #fdff01;
            --pink: #fd7eff;
            --black: #000000;
            --white: #ffffff;
            --diagonal-height: 140px;
        }

        body {
            background-color: var(--white);
            padding: 0;
            margin: 0;
            font-family: "Inter", sans-serif;
            overflow-x: hidden; /* Previne scroll horizontal por causa dos clips */
        }

        /* Container padrão para centralizar conteúdo */
        .container {
            max-width: 1020px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* PADRONIZAÇÃO DE BOTÃO FECHAR */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 45px;
            font-size: 60px;
            color: #ffffff;
            text-decoration: none;
            cursor: pointer;
            z-index: 10001;
            line-height: 1;
            transition: color 0.3s;
        }
        .close-btn:hover { color: var(--yellow); }

        /* PADRONIZAÇÃO DE OVERLAYS (MENU E VÍDEO) */
        .overlay-base {
            height: 100%; width: 100%;
            position: fixed; z-index: 9999;
            top: 0; left: 0;
            background-color: var(--black);
            opacity: 0; visibility: hidden;
            transition: opacity 0.3s ease-in-out;
            display: flex; align-items: center; justify-content: center;
        }
        .overlay-base.open { opacity: 1; visibility: visible; }

        /* HEADER SECTION */
        .header-div {
            width: 100%;
            background-color: var(--yellow);
            /* Base sobe na direita */
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--diagonal-height)), 0 100%);
            padding: 80px 0 200px 0;
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            margin-bottom: 40px;
            vertical-align: top;
        }

        .tit {
            font-weight: 600;
            font-size: clamp(32px, 8vw, 52px);
            line-height: 1;
            color: var(--black);
        }

        .banner { text-align: right; padding: 20px 0 80px 0; margin-right: 70px;}
        .banner img { max-width: 100%; height: auto; }

        .txt-intro {
            font-weight: 300;
            font-size: 20px;
            line-height: 1.4;
            max-width: 650px;
            margin: 0 auto;
            text-align: center;
            color: var(--black);
        }

        /* PORTFOLIO */
        .portfolio { padding: 120px 0 100px 0; max-width: 940px; margin: 0 auto; }

        .video-wrapper { 
            width: 100%; 
            margin-bottom: 60px; 
            cursor:url('play3.png'), pointer;
            transition: opacity 0.5s;
            background-color: #000000;
        }
        .video-wrapper img { width: 100%; display: block;}
        .video-wrapper img:hover { opacity: 0.2; transition: opacity 0.3s;}

        /* VIDEO LIGHTBOX ESPECÍFICO */
        .video-container { width: 90%; max-width: 1000px; aspect-ratio: 16 / 9; }
        .video-container iframe { width: 100%; height: 100%; }

        /* MENU CONTENT ESPECÍFICO */
        .menu-content { text-align: center; color: white; font-weight: 100; line-height: 1.6; }
        .menu-content a { color: white; text-decoration: none; font-size: 26px; display: block; margin: 10px 0; }
        .menu-content a:hover { color: var(--yellow); }

        /* NEWS & PREMIOS */
        .news {
            max-width: 780px; margin: 0 auto;
            padding: 20px 40px 180px 40px; text-align: center; line-height: 24px;
        }
        .premio { margin: 10px 8px; height: 40px; display: inline-block; vertical-align: middle; }

        /* FRASE SECTION */
        .frase-div {
            background-color: var(--pink);
            /* Topo desce na direita, base sobe na direita */
            clip-path: polygon(0 0, 100% var(--diagonal-height), 100% calc(100% - var(--diagonal-height)), 0 100%);
            padding: 280px 0;
            margin-top: -40px;
        }

        /* FOOTER SECTION */
        .footer-div {
            background-color: var(--black);
            color: var(--white);
            /* Topo desce para a direita (0 140px até 100% 0) */
            clip-path: polygon(0 var(--diagonal-height), 100% 0, 100% 100%, 0 100%);
            padding: 180px 0 100px 0;
            margin-top: -140px;
            text-align: center;
        }

        .box {width: 300px; display: inline-block; text-align: left; vertical-align: top; font-family: "Inter", sans-serif; font-weight: 100; line-height: 1.4;}
        .space {margin-right: 50px;}

        a{color: #000000; text-decoration: none;}
        a:hover {text-decoration: underline;}

        .lb{color: #ffffff; text-decoration: none;}
        .lb:hover {text-decoration: underline;}

        .language-switcher {font-size: 14px;}
        .active{color: #fdff01; text-decoration: none;}
        .notactive{color: #ffffff; text-decoration: none;}

        @media (max-width: 900px) {
            :root { --diagonal-height: 60px; } /* Diagonais menores no mobile */
            .header-div {padding-top:40px; padding-bottom: 120px; }
            .frase-div { padding: 120px 0 210px 0; }
            .news {text-align: center;}
            .premio {margin:18px auto; display:block; text-align: center;}
            .box {width: 100%; display: block; text-align: left; font-family: "Inter", sans-serif; font-weight: 100; line-height: 1.4; margin-bottom:40px;}
            .space {margin-right: 0;}
            .close-btn { right: 20px; font-size: 50px; }
            .video-wrapper {margin-bottom: 30px;}
        }