/* =========================================================
   CORE: CONFIGURAÇÃO GERAL ESTILO OLSON KUNDIG & ALTO CONTRASTE
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #050505;
    color: #FFF;
    overflow-x: hidden;
}

/* CUSTOMIZAÇÃO PREMIUM: Barra de Rolagem Minimalista */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: #222; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; 
}

/* CUSTOMIZAÇÃO PREMIUM: Cor de Seleção de Texto Customizada */
::selection {
    background-color: #3b82f6;
    color: #FFF;
}

/* =========================================================
   INTERFACE: TELA DE CARREGAMENTO (PRELOADER)
   ========================================================= */
.preloader {
    position: fixed;
    inset: 0;
    background-color: #050505;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-logo {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #FFF;
    display: block;
    margin-bottom: 20px;
    animation: piscaSuave 1.5s infinite alternate;
}
.preloader-barra {
    width: 150px;
    height: 1px;
    background-color: #333;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-barra::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 40%;
    background-color: #3b82f6;
    animation: carregaBarra 1.5s infinite ease-in-out;
}

@keyframes piscaSuave {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}
@keyframes carregaBarra {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* =========================================================
   NAVEGAÇÃO: NAVBAR FIXA E ESTRUTURAL
   ========================================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #151515;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.nav-logo-img {
    height: 28px;
    object-fit: contain;
}
.logo-texto {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 16px;
    color: #FFF;
}

.menu-links a {
    color: #b5b5b5; 
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-left: 30px;
    transition: color 0.3s;
}

/* Ajuste Cirúrgico: Destaca o DCORE no menu com Azul e Negrito */
.menu-links a[href="#dcore"] {
    color: #3b82f6;
    font-weight: 700;
}

/* =========================================================
   HOME: HERO SECTION CINEMATOGRÁFICA
   ========================================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    margin-top: 0;
}

.video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-sub {
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-titulo {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #FFF;
}

.hero-cta {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF;
    padding: 15px 35px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
    background: #FFF;
    color: #000;
}

/* =========================================================
   SEÇÕES COMPARTILHADAS & LAYOUT GRIDS
   ========================================================= */
.secao-comum {
    padding: 100px 60px;
    background-color: #0F0F0F;
    border-bottom: 1px solid #151515;
}

.fundo-alternativo {
    background-color: #0A0A0A;
}

.secao-titulo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #FFF;
}

.linha-divisora {
    width: 45px;
    height: 2px;
    background-color: #3b82f6;
    margin: 15px 0 50px 0;
}

.grid-dois-blocos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.destaque {
    color: #FFF;
    font-weight: 600;
}

/* =========================================================
   SEÇÃO: SOBRE NÓS (ALTO CONTRASTE REPROGRAMADO)
   ========================================================= */
.sobre-manifesto-topo {
    font-size: 32px;
    font-weight: 300;
    color: #3b82f6;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-style: italic;
    line-height: 1.4;
}

.bloco-texto p {
    color: #e0e0e0; 
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.bloco-atuacao {
    margin-top: -100px; 
}

.bloco-atuacao h3 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #888; 
    margin-bottom: 30px;
    font-weight: 700;
}

.lista-atuacao {
    list-style: none;
}

.lista-atuacao li {
    font-size: 15px;
    color: #e0e0e0; 
    margin-bottom: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.lista-atuacao li span {
    color: #3b82f6;
    margin-right: 12px;
    font-weight: 700;
    font-size: 13px;
}

/* =========================================================
   SEÇÃO INTERNA: PAINEL DO ARTISTA (TECNOLOGIAS / IA)
   ========================================================= */
.container-sobre-artista {
    margin-top: 50px;
}

.botao-artista {
    width: 100%;
    background-color: #050505;
    border: 1px solid #333;
    color: #FFF;
    padding: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.botao-artista:hover {
    border-color: #3b82f6;
    background-color: #0a0a0a;
}

.painel-artista {
    background-color: #050505;
    border: 1px solid #252525;
    border-top: none;
    padding: 50px;
    display: none;
}

.artista-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.artista-texto h3, .artista-tecnologias h3 {
    font-size: 18px;
    color: #FFF;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.artista-texto p {
    color: #e0e0e0; 
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-card {
    background: #0A0A0A;
    border: 1px solid #333;
    padding: 10px 18px;
    color: #cccccc; 
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: #111;
    color: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.sobre-rodape-texto {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #151515;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sobre-rodape-texto p {
    color: #9a9a9a; 
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

.sobre-rodape-texto .texto-final-destaque {
    grid-column: span 2;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* =========================================================
   SEÇÃO: CLIENTES (MUDANÇA RADICAL DE CONTRASTE AUTOMÁTICO)
   ========================================================= */
.sub-titulo-secao {
    color: #888; 
    font-size: 15px;
    margin-bottom: 40px;
}

.grid-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.box-logo {
    height: 110px;
    background-color: #0D0D0D;
    border: 1px solid #1E1E1E;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8a8a8a; 
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 12px;
    text-align: center;
    padding: 0 15px;
    transition: all 0.3s ease; 
}

.box-logo:hover {
    color: #FFF;
    border-color: #3b82f6; 
    background-color: #111;
}

/* =========================================================
   SEÇÃO: SERVIÇOS
   ========================================================= */
.grid-servicos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card-servico {
    background-color: #0A0A0A;
    border-left: 3px solid #1A1A1A;
    padding: 40px;
    transition: border-color 0.3s;
}

.card-servico:hover {
    border-color: #3b82f6;
}

.num-servico {
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.card-servico h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #FFF;
}

.card-servico p {
    color: #9a9a9a; 
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
}

/* =========================================================
   PRODUTO EXCLUSIVO DCORE & HUB DROPDOWN DE MÚLTIPLOS LINKS
   ========================================================= */
.container-dcore {
    margin-top: 40px;
}

.botao-dcore {
    width: 100%;
    background-color: #111;
    border: 1px solid #3b82f6;
    color: #FFF;
    padding: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
}

.painel-dcore {
    background-color: #111;
    border: 1px solid #1A1A1A;
    border-top: none;
    padding: 40px;
    display: none;
}

.painel-dcore h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFF;
}

.painel-dcore p {
    color: #e0e0e0; /* Calibrado para Prata Editorial Brilhante (Alto Contraste) */
    font-size: 16px; /* Aumentado de 15px para 16px para leitura macia */
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.dcore-acoes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-sub-dcore {
    display: inline-block;
    text-decoration: none;
    background-color: #1C1C1C;
    color: #FFF;
    padding: 12px 25px;
    font-size: 13px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-sub-dcore:hover {
    background-color: #252525;
}

/* HUB DROPDOWN DE MÚLTIPLOS LINKS DCORE */
.dcore-dropdown {
    position: relative;
    display: inline-block;
}

.dcore-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0A0A0A;
    border: 1px solid #151515;
    border-top: 2px solid #3b82f6; /* Detalhe premium que conecta com a marca */
    min-width: 260px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 200;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    margin-top: 5px;
}

.dcore-dropdown:hover .dcore-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dcore-dropdown-content a, .dcore-dropdown-content .dcore-item-andamento {
    text-decoration: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 14px; /* Aumentado de 12px para 14px para leitura imponente */
    font-weight: 700; /* Injetado Negrito Premium */
    color: #aaa; /* Ajustado de #888 para #aaa para maior nitidez no fundo escuro */
    border-bottom: 1px solid #111;
    transition: all 0.3s ease;
    display: block;
    text-align: left;
}

.dcore-dropdown-content a:last-child, .dcore-dropdown-content .dcore-item-andamento:last-child {
    border-bottom: none;
}

.dcore-dropdown-content a:hover {
    background-color: #111;
    color: #FFF;
    padding-left: 25px; /* Efeito luxuoso de deslizar ao dar hover */
    border-left: 2px solid #3b82f6;
}

.dcore-dropdown-content .dcore-item-andamento {
    cursor: not-allowed;
    color: #444;
    font-style: italic;
}

/* =========================================================
   SEÇÃO: PORTFÓLIO (SLIDER HORIZONTAL DE ALTO IMPACTO)
   ========================================================= */
.filtros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-filtro {
    background: transparent;
    color: #888; 
    border: 1px solid #1A1A1A;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-filtro:hover, .btn-filtro.ativo {
    color: #3b82f6;
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.05);
}

.sub-filtros-container {
    display: none;
    background-color: #0D0D0D;
    padding: 15px 25px;
    border-left: 2px solid #3b82f6;
    margin-bottom: 30px;
    gap: 20px;
}

.btn-sub-filtro {
    background: transparent;
    border: none;
    color: #666; 
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-sub-filtro:hover, .btn-sub-filtro.ativo {
    color: #FFF;
}

.carrossel-portfolio-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.grid-portfolio {
    display: flex;
    align-items: center;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    will-change: transform;
}

.item-portfolio {
    position: relative;
    width: 66vw; 
    max-width: 1150px;
    min-width: 290px;
    height: 620px; 
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 8px;
    transition: transform 0.6s, opacity 0.6s;
    opacity: 0.35;
}

.item-portfolio.slide-ativo {
    opacity: 1;
    transform: scale(1.01);
}

a.item-portfolio {
    display: block;
    text-decoration: none;
}

.item-portfolio img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-hover {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 30px;
}

.item-portfolio:hover img {
    transform: scale(1.03);
}

.item-portfolio.slide-ativo:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-hover h4 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #FFF;
}

.portfolio-hover p {
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
}

.badge-midia {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #AAA; 
    margin-bottom: 15px;
    border: 1px solid #333;
    padding: 4px 10px;
    background: #050505;
}

.play-badge { color: #ef4444; border-color: rgba(239, 68, 68, 0.2); }
.tour-badge { color: #22c55e; border-color: rgba(34, 197, 94, 0.2); }

.seta-carrossel-pag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #3b82f6; 
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seta-carrossel-pag:hover {
    background: #3b82f6;
    color: #FFF;
    border-color: #3b82f6;
    transform: translateY(-50%) scale(1.05);
}

.seta-carrossel-pag.esq { left: 40px; }
.seta-carrossel-pag.dir { right: 40px; }

/* =========================================================
   SEÇÃO: CONTATO & LINKS DE REDES DE TEXTO VIA FORM
   ========================================================= */
.titulo-contato {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #FFF;
}

.lista-info {
    list-style: none;
    margin-bottom: 25px;
}

.lista-info li {
    color: #9a9a9a; 
    font-size: 14px;
    margin-bottom: 12px;
}

.contato-redes-links {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.contato-redes-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.contato-redes-links a:hover {
    color: #FFF;
}

.formulario-minimalista {
    background-color: #0A0A0A;
    border: 1px solid #151515;
    padding: 40px;
}

.formulario-minimalista input, .formulario-minimalista textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #222;
    color: #FFF;
    padding: 15px 0;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    outline: none;
}

.formulario-minimalista input:focus, .formulario-minimalista textarea:focus {
    border-bottom-color: #3b82f6;
}

.btn-enviar {
    width: 100%;
    background-color: #FFF;
    color: #000;
    border: none;
    padding: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background-color: #DDD;
}

/* =========================================================
   SISTEMA DE CORREÇÃO LIGHTBOX (100% SEGURO 16:9)
   ========================================================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    user-select: none;
}

.lightbox-fechar {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #888;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2010;
}

.lightbox-fechar:hover {
    color: #ef4444;
}

.lightbox-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #444;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
    z-index: 2010;
}

.lightbox-seta:hover {
    color: #3b82f6;
}

.seta-esq { left: 40px; }
.seta-dir { right: 40px; }

/* FIX MANUAL CONTRA CORTES DE BORDA */
.lightbox-conteudo-wrapper {
    width: 100vw;       
    height: 98vh;      
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;  
    object-fit: contain !important; 
    transition: transform 0.3s ease, cursor 0.3s;
    cursor: zoom-in;
}

#lightbox-img.zoom-ativo {
    transform: scale(2.2);
    cursor: zoom-out;
}

.lightbox-legenda {
    position: absolute;
    bottom: 30px; 
    text-align: center;
    width: 100%;
    padding: 0 60px;
}

.lightbox-legenda h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #FFF;
    margin-bottom: 5px;
}

.lightbox-legenda p {
    font-size: 11px;
    color: #3b82f6;
    letter-spacing: 2px;
    font-weight: 700;
}

.lightbox-modal.sem-setas .lightbox-seta {
    display: none;
}

/* =========================================================
   WIDGET INTERATIVO SUPORTE: INTERATIVO MAX (WHATSAPP)
   ========================================================= */
.max-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 45px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999;
}

.max-tooltip-fale {
    background-color: rgba(10, 10, 10, 0.85);
    border: 1px solid #1A1A1A;
    backdrop-filter: blur(10px);
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 2px;
    margin-right: 15px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.max-avatar-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0D0D0D;
    border: 1px solid #1A1A1A;
    overflow: visible; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.max-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(0.95);
    transition: transform 0.4s;
}

.max-status-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 2px solid #050505;
}

.max-status-online::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: maxRadarPulse 2s infinite ease-out;
}

.max-whatsapp-widget:hover .max-tooltip-fale {
    opacity: 1;
    transform: translateX(0);
}

.max-whatsapp-widget:hover .max-avatar-wrapper {
    border-color: #3b82f6; 
    transform: translateY(-4px) scale(1.03);
}

.max-whatsapp-widget:hover .max-avatar-wrapper img {
    transform: scale(1.05); 
}

@keyframes maxRadarPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* =========================================================
   RESPONSIVIDADE GERAL: TABLETS E CELULARES
   ========================================================= */
@media (max-width: 900px) {
    .navbar {
        padding: 0 30px;
    }
    .secao-comum {
        padding: 60px 30px;
    }
    .grid-dois-blocos, .grid-servicos, .sobre-rodape-texto, .artista-conteudo {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .grid-logos {
        grid-template-columns: 1fr 1fr;
    }
    .sobre-rodape-texto .texto-final-destaque {
        grid-column: span 1;
    }
    .item-portfolio {
        width: 82vw;
        height: 340px;
        margin: 0 8px;
    }
    .seta-carrossel-pag {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .seta-carrossel-pag.esq { left: 15px; }
    .seta-carrossel-pag.dir { right: 15px; }
    .max-avatar-wrapper { width: 56px; height: 56px; }
    .max-whatsapp-widget { bottom: 20px; right: 20px; }
    .max-tooltip-fale { display: none; }

    /* Trava cirúrgica: impede que os textos fiquem sobrepostos no celular */
    .bloco-atuacao {
        margin-top: 0;
    }
}

/* --- BLINDAGEM CONTRA VAZAMENTO LATERAL (MOBILE) --- */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Garante que nenhuma seção ou container empurre a tela para o lado */
section, div, header, footer {
    max-width: 100%;
    box-sizing: border-box;
}
/* --- PORTFÓLIO: BOTÕES EM CARROSSEL HORIZONTAL (MOBILE) --- */
@media (max-width: 900px) {
    /* Aplica as propriedades de carrossel sem forçar a exibição de todas as linhas */
    .filtros-container, 
    .sub-filtros-container,
    [class*="filtros-container"] {
        flex-wrap: nowrap !important; 
        overflow-x: auto !important;  
        -webkit-overflow-scrolling: touch; 
        gap: 8px !important;         
        padding: 12px 20px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* REMOVIDO: O display:flex que forçava as 3 linhas juntas. Agora o JS controla o que aparece! */

    /* Oculta a barra de rolagem feia do navegador para o visual ficar limpo */
    .filtros-container::-webkit-scrollbar,
    .sub-filtros-container::-webkit-scrollbar,
    [class*="filtros-container"]::-webkit-scrollbar {
        display: none !important;
    }

    /* Garante que os botões mantenham o tamanho original e não fiquem esmagados */
    .filtros-container button,
    .sub-filtros-container button,
    [class*="filtro"] button {
        flex-shrink: 0 !important;
        white-space: nowrap !important; /* Impede o texto do botão de quebrar linha */
    }
}

/* --- COMPORTAMENTO DO MENU NO CELULAR (MOBILE) --- */
@media (max-width: 900px) {
    /* Esconde os links de texto padrão */
    .navbar .menu-links {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 80px; /* Ajusta com a altura do seu topo */
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        box-sizing: border-box;
        text-align: center;
        gap: 15px;
        border-bottom: 2px solid #0055ff; /* Linha sutil no tom azul do DCORE */
    }

    /* Classe que o JavaScript vai ativar para abrir o menu */
    .navbar .menu-links.active {
        display: flex !important;
    }

    .navbar .menu-links a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
        width: 100%;
        color: #fff !important;
    }

    /* Estilização Premium do Botão Sanduíche */
    .btn-sanduiche {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1050;
    }

    .btn-sanduiche span {
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    /* Efeito de transformação das listrinhas em um "X" ao abrir */
    .btn-sanduiche.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .btn-sanduiche.active span:nth-child(2) {
        opacity: 0;
    }
    .btn-sanduiche.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (min-width: 901px) {
    /* Garante que o botão nunca apareça no computador */
    .btn-sanduiche {
        display: none !important;
    }
}

/* --- SEÇÃO SERVIÇOS: IMAGENS DE FUNDO COM PELÍCULA ESCURA --- */
.card-servico {
    position: relative;
    cursor: pointer;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
    overflow: hidden;
}

/* Efeito refinado de leve pulo ao passar o mouse no computador */
@media (min-width: 901px) {
    .card-servico:hover {
        transform: translateY(-5px);
    }
}

/* Links das imagens para cada caixa (Substitua pelos caminhos dos seus renders reais) */
.card-img-3d {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_imagens3d.jpg') !important;
}
.card-animacao {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_animacao.jpg') !important;
}
.card-plantas {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_plantas.jpg') !important;
}
.card-tour {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_tour.jpg') !important;
}
.card-foto {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_foto.jpg') !important;
}
.card-cgi {
    background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)), url('./assets/servico_cgi.jpg') !important;
}

/* --- VITRINE DCORE: PADRONIZAÇÃO PREMIUM + CORREÇÃO APPLE IOS --- */
.card-dcore-banner {
    background: linear-gradient(rgba(0, 40, 120, 0.25), rgba(10, 10, 10, 0.85)), url('./assets/dcore_banner.jpg') !important;
    padding: 35px 25px !important;
    text-align: left;
    border: 1px solid rgba(0, 85, 255, 0.4) !important; /* Borda sutil azul indicando interatividade */
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.15);
    margin-bottom: 20px;
    
    /* SOLUÇÃO CIRÚRGICA PARA IPHONE (iOS): Força o Safari a registrar o evento de clique */
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
}

.card-dcore-banner h3 {
    color: #0055ff !important; /* Destaca o DCORE no azul oficial */
    font-size: 22px !important;
    margin-bottom: 8px;
    font-weight: 700;
}

#seta-dcore {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
    color: #0055ff;
}

/* Garante que quando o painel for aberto, ele apareça perfeitamente em qualquer sistema */
.painel-dcore.active {
    display: block !important;
}

/* =========================================================
   REFINAMENTOS FINAIS REPROGRAMADOS (FIM DO ARQUIVO)
   ========================================================= */

/* Item 2: Novo layout em blocos/cards para o Conheça o Artista */
.artista-bloco-card {
    background-color: #0A0A0A;
    border: 1px solid #151515;
    border-left: 3px solid #3b82f6;
    padding: 25px;
    box-sizing: border-box;
}

/* Regras de Ajustes Exclusivas para Celular (Mobile) */
@media (max-width: 900px) {
    
    /* Item 4: Remove o recuo do computador e centraliza os textos do menu no meio */
    .navbar .menu-links a {
        margin-left: 0 !important; 
        text-align: center !important;
    }

    /* Item 1: Empilha e deixa os botões "Vídeo" e "Visitar" com o mesmo tamanho */
    .dcore-acoes {
        display: flex !important;
        flex-direction: column !important; 
        width: 100% !important;
        gap: 12px !important;
    }
    
    .dcore-acoes .btn-sub-dcore,
    .dcore-acoes .dcore-dropdown,
    .dcore-acoes .btn-dropdown-trigger {
        width: 100% !important; 
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Item 3: Reduz o título principal da Home para não cortar no celular */
    .hero-titulo {
        font-size: 28px !important; 
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-section {
        padding: 0 30px !important; 
    }
}