/* 
   PROMOCREATIVE - SISTEMA DE DESIGN DE ELITE (VERSÃO UNIFICADA 2026)
   Paleta: Dark Mode Profundo (#0d0d0d) | Amarelo Ouro (#FFD700) | Azul Marinho (#1a1a5e)
   Estilo: Gringo, Robusto, Sem Arredondamentos no Portal e com Transições de Luxo.
*/

:root {
    --dark: #0d0d0d;
    --dark-soft: #1a1a1a;
    --yellow: #FFD700;
    --blue-elite: #1a1a5e;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --text-muted: #888;
    --glass: rgba(255, 255, 255, 0.75);
    --radius-round: 100px;
    --radius-soft: 30px;
    --radius-card: 20px;
}

/* 1. RESET E PROTEÇÕES BASE */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
body { 
    font-family: 'Inter', sans-serif; 
    background: var(--white); 
    color: var(--dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    scroll-behavior: smooth;
    user-select: none; /* Proteção de Elite contra cópia */
}

img { -webkit-user-drag: none; pointer-events: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 2. HEADER PÍLULA INQUEBRÁVEL (GLASSMORPHISM) */
.main-header {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%);
    width: 92%; max-width: 1150px; height: 75px;
    background: var(--glass); backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-round); z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    display: flex; align-items: center; padding: 0 35px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-header.scrolled { top: 15px; height: 65px; background: rgba(255, 255, 255, 0.95); }

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

/* Dropdown King (Anti-Falha) */
.dropdown-king { position: relative; display: flex; align-items: center; height: 75px; }
.dropbtn-king { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 700; text-transform: uppercase; font-size: 0.82rem; }
.dropdown-box-king {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px);
    padding-top: 25px; opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.dropdown-king:hover .dropdown-box-king { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-inner-king { background: #fff; min-width: 260px; padding: 18px; border-radius: 28px; box-shadow: 0 40px 80px rgba(0,0,0,0.15); border: 1px solid #eee; }

/* 3. HERO & PORTAL SHARP (SEM BORDAS REDONDAS) */
.king-portal-sharp {
    background: var(--dark); padding: 140px 0; position: relative; overflow: hidden; border-radius: 0 !important;
}
.portal-title-sharp {
    font-family: 'Poppins', sans-serif; font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900; color: #fff; line-height: 0.95; letter-spacing: -2px; margin-bottom: 30px;
}
.portal-title-sharp span { color: var(--yellow); }

/* Animação de Revelação Esquerda -> Direita */
.reveal-overlay-sharp {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--yellow); z-index: 10; transform: translateX(-100%);
}
.reveal-active-sharp .reveal-overlay-sharp { animation: reveal-swipe 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards; }

@keyframes reveal-swipe { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* 4. GRID DE PREÇOS (ESTILO IMAGEM) */
.master-pricing { padding: 100px 0; background: #fff; }
.pricing-grid-v4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card-v4 {
    background: #fff; border: 1px solid #f0f0f0; border-radius: var(--radius-card);
    padding: 40px 25px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; opacity: 0; transform: translateY(30px);
}
.card-v4.featured { border: 2.3px solid var(--yellow); }
.card-v4:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.06); border-color: var(--yellow); }

.btn-v4-blue { background: var(--blue-elite); color: #fff; padding: 15px; border-radius: 12px; text-align: center; font-weight: 800; text-decoration: none; display: block; }
.btn-v4-gold { background: var(--yellow); color: #000; padding: 15px; border-radius: 12px; text-align: center; font-weight: 800; text-decoration: none; display: block; }

/* 5. FAQ GRINGO */
.faq-item-gringo { background: #fff; border: 1px solid #eee; border-radius: 20px; margin-bottom: 15px; overflow: hidden; }
.faq-trigger { width: 100%; padding: 25px 30px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.05rem; }
.faq-item-gringo.active { border-color: var(--yellow); }

/* 6. FOOTER WIDESCREEN SOFT-ELITE */
.footer-wide-elite {
    width: 100%; background: var(--dark-soft); padding: 45px 0 55px;
    border-radius: 0 0 35px 35px; color: #f1f1f1; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner-wrapper { max-width: 94%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

/* 7. LOADER GLOBAL */
#loader-full {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 10000; display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: 0.6s;
}
.spin-loader { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid var(--yellow); border-radius: 50%; animation: girar 1s linear infinite; }
@keyframes girar { 100% { transform: rotate(360deg); } }

/* RESPONSIVIDADE */
@media (max-width: 1024px) { .pricing-grid-v4 { grid-template-columns: repeat(2, 1fr); } .footer-inner-wrapper { flex-direction: column; gap: 40px; text-align: center; } }
@media (max-width: 650px) { .pricing-grid-v4 { grid-template-columns: 1fr; } .main-header { width: 95%; padding: 0 15px; } }






    .portal-mu-title {
        font-family: 'Poppins', sans-serif !important;
        font-size: clamp(4rem, 10vw, 6.5rem) !important; /* Aumentei o tamanho */
        font-weight: 900 !important;
        line-height: 0.85 !important; /* Colado igual ao print */
        color: #fff !important;
        letter-spacing: -4px !important; /* Letras bem juntas */
        margin: 0 !important;
        text-align: left !important;
        text-transform: none; /* Mantém maiúsculas/minúsculas naturais */
    }

    /* Ajuste para a descrição logo abaixo */
    .portal-desc {
        color: #555; 
        font-size: 1.1rem; 
        margin-top: 25px; 
        line-height: 1.4; 
        max-width: 450px; 
        text-align: left;
    }


    /* LOADER PADRÃO CINZA ELITE */
    #loader-mu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: #f2f2f2; /* O cinza do seu arquivo */
        z-index: 99999; display: flex; flex-direction: column;
        justify-content: center; align-items: center; transition: 0.5s;
    }
    .spin-mu { 
        width: 40px; height: 40px; 
        border: 4px solid #ddd; 
        border-top: 4px solid #111; /* Spin preto minimalista */
        border-radius: 50%; 
        animation: spin-mu-key 0.8s linear infinite; 
    }
    .loader-text {
        margin-top: 20px; 
        font-weight: 900; 
        letter-spacing: 3px; 
        font-size: 10px; 
        color: #111; 
        font-family: 'Poppins', sans-serif;
    }


    /* Move o conteúdo para a direita dentro do grid */
    .hero-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Divide meio a meio */
        align-items: center;
        gap: 30px;
    }

    /* Empurra o bloco de texto especificamente */
    .text-content-push {
        padding-left: 15%; /* O "pulo do gato" para centralizar mais à direita */
        text-align: left;
    }



    /* GRID HERO ASSIMÉTRICO */
    .hero-wrapper {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        gap: 40px;
    }

    /* EMPURRA O TEXTO PARA A DIREITA (CENTRALIZANDO NO BLOCO) */
    .text-content-push {
        padding-left: 30%; /* Aumentado para 30% para centralizar mais à direita */
        transition: 0.5s;
    }

    /* Ajuste para mobile (não pode ter padding na esquerda no celular) */
    @media (max-width: 992px) { 
        .text-content-push { padding-left: 0; text-align: center; }
    }










<style>
/* Estilização dos Cards de Portfólio */
.portfolio-item-elite {
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-thumb-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px; /* Altura fixa para manter o padrão gringo */
    background: #1a1a1a;
}

.portfolio-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-overlay-elite {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 94, 0.85); /* Azul do seu site com transparência */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.plus-icon {
    font-size: 40px;
    color: #FFD700;
    font-weight: 300;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.portfolio-overlay-elite p {
    color: #fff;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 11px;
    margin-top: 15px;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
}

/* Hover Effects */
.portfolio-item-elite:hover .portfolio-thumb-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.portfolio-item-elite:hover .portfolio-overlay-elite {
    opacity: 1;
}

.portfolio-item-elite:hover .plus-icon, 
.portfolio-item-elite:hover .portfolio-overlay-elite p {
    transform: translateY(0);
}

.project-info {
    padding: 25px 0;
}

.project-info h3 {
    color: #fff;
    font-family: 'Poppins';
    font-size: 1.2rem;
    margin: 0;
}

.project-info span {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Lightbox Styling */
.elite-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 13, 13, 0.98);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.elite-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border: 1px solid #333;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.close-lightbox {
    position: absolute;
    top: 40px; right: 40px;
    color: #FFD700;
    font-size: 40px;
    font-weight: 100;
    cursor: pointer;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
</style>





<style>
/* 1. Texto com Gradiente (Igual ao ícone do print) */
.gradient-text {
    background: linear-gradient(135deg, #ff8c00 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 2. Efeito Nuvem Pulsante atrás da imagem */
.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 40%, rgba(13, 13, 13, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: cloud-pulse 4s ease-in-out infinite alternate;
    z-index: 1;
}

/* 3. Animação de Flutuar Suave da Imagem */
.floating-icon {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    animation: float-soft 6s ease-in-out infinite;
}

/* Keyframes das Animações */
@keyframes cloud-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0.8; }
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Ajuste Mobile */
@media (max-width: 991px) {
    .portal-grid-sharp { 
        grid-template-columns: 1fr !important; 
        text-align: center;
        gap: 50px;
    }
    .portal-title-sharp { text-align: center; }
    .portal-desc { margin: 30px auto; }
}
</style>




/* --- PAINEL DE CONTROLE DE VELOCIDADE (ALTERE AQUI) --- *//* --- PAINEL DE CONTROLE DE VELOCIDADE (ALTERE AQUI) --- *//* --- PAINEL DE CONTROLE DE VELOCIDADE (ALTERE AQUI) --- *//* --- PAINEL DE CONTROLE DE VELOCIDADE (ALTERE AQUI) --- */


/* GRID LADO A LADO - VERSÃO ELITE */
.mu-portfolio-grid { 
    display: grid; 
    /* Aqui definimos 3 colunas iguais. Se quiser 4, mude para repeat(4, 1fr) */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-bottom: 80px; 
    width: 100%;
}

/* Ajuste para não quebrar em telas muito pequenas (Mobile) */
@media (max-width: 900px) {
    .mu-portfolio-grid { 
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 600px) {
    .mu-portfolio-grid { 
        grid-template-columns: 1fr; /* 1 coluna no celular para não esmagar a foto */
    }
}

.portfolio-item { 
    background: #111; 
    border: 1px solid #222; 
    border-radius: 15px; 
    overflow: hidden; 
    position: relative; 
    cursor: pointer; 
    transition: 0.4s;
    aspect-ratio: 4/5; /* Garante que todas as fotos tenham o mesmo tamanho lateralmente */
}

.portfolio-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
    opacity: 0.8; 
}





<style>
    /* 1. CONTAINER DO GRID - FORÇA 4 COLUNAS IGUAIS */
    .mu-portfolio-grid { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr); /* 4 colunas de tamanhos idênticos */
        gap: 15px; /* Espaço entre as imagens */
        width: 100%;
        margin: 40px 0;
    }

    /* 2. O ITEM (Onde a mágica acontece) */
    .portfolio-item { 
        background: #111; 
        border: 1px solid #222; 
        border-radius: 12px; 
        overflow: hidden; 
        position: relative; 
        cursor: pointer; 
        transition: 0.3s ease-in-out;
        
        /* ISSO AQUI TRAVA A ALTURA IGUAL PARA TODOS OS ITENS */
        /* 1/1 para quadrado, 3/4 para vertical gringo */
        aspect-ratio: 1 / 1; 
    }

    /* 3. A IMAGEM DENTRO DO ITEM */
    .portfolio-item img { 
        width: 100%; 
        height: 100%; 
        /* O object-fit: cover garante que a foto preencha o espaço sem amassar */
        object-fit: cover; 
        transition: 0.5s; 
        opacity: 0.7; 
        display: block;
    }

    /* HOVER ELITE */
    .portfolio-item:hover { 
        transform: translateY(-8px); 
        border-color: #FFD700; 
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    .portfolio-item:hover img { 
        opacity: 1; 
        transform: scale(1.1); 
    }

    /* AJUSTE PARA CELULAR (Para não ficar minúsculo) */
    @media (max-width: 900px) {
        .mu-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    }
	
	
	
	
	/* AJUSTE NA NAVEGAÇÃO CENTRAL */
.nav-menu-king { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-king li {
    position: relative;
}

.nav-menu-king a { 
    font-weight: 700; 
    color: #444; /* Cor mais suave para itens não selecionados */
    font-size: 0.85rem; 
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
}

/* EFEITO DE HOVER - COR DOURADA E LEVE SUBIDA */
.nav-menu-king a:hover {
    color: #111; /* Escurece o texto no hover */
    transform: translateY(-2px);
}

/* O INDICADOR (O PONTO DOURADO) */
.nav-menu-king a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background: #FFD700; /* Dourado */
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* MOSTRA O PONTO NO HOVER */
.nav-menu-king a:hover::after {
    transform: translateX(-50%) scale(1);
}

/* TOQUE DE MESTRE: ESTILO PARA PÁGINA ATIVA */
.nav-menu-king a.active {
    color: #111;
}

.nav-menu-king a.active::after {
    transform: translateX(-50%) scale(1);
    background: #111; /* Ponto preto na página ativa */
}

	
	/* NAVEGAÇÃO CENTRAL COM TOQUE DE MESTRE */
.nav-menu-king { 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-king li {
    position: relative;
}

.nav-menu-king a { 
    font-weight: 700; 
    color: #555; /* Cor cinza para itens inativos */
    font-size: 0.8rem; 
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
}

/* EFEITO AO PASSAR O MOUSE */
.nav-menu-king a:hover {
    color: #111; /* Escurece no hover */
}

/* O INDICADOR (DOT DOURADO) */
.nav-menu-king a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: #FFD700; /* Dourado Elite */
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* MOSTRA O PONTO NO HOVER OU SE A PÁGINA ESTIVER ATIVA */
.nav-menu-king a:hover::after,
.nav-menu-king a.active::after {
    transform: translateX(-50%) scale(1);
}

/* COR DO TEXTO PARA PÁGINA ATIVA */
.nav-menu-king a.active {
    color: #111;
}

/* AJUSTE NOS BOTÕES DA DIREITA */
.nav-actions { display: flex; align-items: center; gap: 15px; }

.btn-client { 
    text-decoration: none; font-size: 10px; font-weight: 800; 
    border: 2px solid #111; padding: 11px 22px; border-radius: 50px; 
    color: #111; letter-spacing: 1px; transition: 0.4s;
}
.btn-client:hover { background: #111; color: #FFD700; border-color: #111; }

.btn-nav { 
    text-decoration: none; font-size: 10px; font-weight: 900; 
    background: #FFD700; color: #000; padding: 13px 26px; 
    border-radius: 50px; letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2); transition: 0.4s;
}
.btn-nav:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3); }



/* Container do item (garante que o ícone fique preso à imagem) */
.portfolio-item-design {
    position: relative; /* Importante para o ícone não "fugir" */
    overflow: hidden;
    cursor: pointer;
}

/* Estilo do Ícone (Badge) */
.mu-badge-midia {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5); /* Fundo escuro sutil */
    color: #fff; /* Cor do ícone - mude para a cor do seu site se preferir */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* Ou 50% se quiser redondo */
    font-size: 12px;
    backdrop-filter: blur(4px); /* Efeito de vidro moderno */
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

/* Efeito ao passar o mouse */
.portfolio-item-design:hover .mu-badge-midia {
    background: #007bff; /* COLOQUE AQUI A COR PRINCIPAL DO SEU SITE */
    transform: scale(1.1);
}


/* Esconde o botão de download em navegadores baseados em Chrome */
video::-internal-media-controls-download-button {
    display:none;
}
video::-webkit-media-controls-enclosure {
    overflow:hidden;
}
video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Move o botão de download para fora da área visível */
}

/* Impede o usuário de selecionar ou arrastar as imagens */
.portfolio-item-design img, 
.portfolio-item-design video {
    user-select: none;
    -webkit-user-drag: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff; /* Ou a cor do seu site */
    cursor: pointer;
    z-index: 9999; /* Garante que fique em cima do vídeo */
    transition: 0.3s;
    line-height: 1;
}

.close-btn:hover {
    color: #SUA_COR_AQUI; /* Cor de destaque do seu site */
    transform: scale(1.2);
}

/* Garante que o modal ocupe a tela toda */
.mu-zoom-modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9); /* Fundo escuro */
}

.mu-zoom-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

	
</style>


