:root{
  --bg:#0b0b0b;
  --fg:#f2f2f2;
  --muted:rgba(242,242,242,.7);
}
/* === Tipografia: prevenção de viúvas/órfãos ===
   `balance` distribui linhas igualmente — ideal para títulos curtos.
   `pretty` impede que a última linha tenha 1 palavra solta — ideal para parágrafos.
   Browsers sem suporte ignoram a propriedade (zero risco). */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-title,
.greeting-title, .hero-tagline,
.case-title, .nav-info h3,
.site-card-title, .service-title{
  text-wrap: balance;
}
p, .intro-text, .cta-text, .hero-tagline,
.contexto-text p, .insight-text p,
.resultado-texto p, .execucao-intro,
.sites-portfolio-intro, .site-card-desc,
.greeting-subtitle, .service-text,
.last-update, .footer-tagline{
  text-wrap: pretty;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:"Space Grotesk",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--fg)}
a{color:inherit;text-decoration:none}
.header{position:fixed;top:0;left:0;right:0;z-index:999;display:flex;align-items:center;justify-content:space-between;padding:18px 28px}
.nav-menu{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.nav-link{opacity:.85}
.nav-link:hover{opacity:1}
.menu-toggle{display:none;background:transparent;border:0;cursor:pointer}
.menu-toggle span{display:block;width:22px;height:2px;margin:5px 0;background:currentColor}
.mobile-menu{position:fixed;inset:0;z-index:998;display:none;flex-direction:column;gap:18px;padding:96px 28px;background:var(--bg)}
.mobile-menu.is-open{display:flex}
@media(max-width:900px){
  .nav-menu{display:none}
  .menu-toggle{display:block}
}

/* Global base + nav helpers */
.nav-link.is-active, .mobile-menu-link.is-active{opacity:1}

/* ===== Scoped: index.html ===== */
/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
body[data-page="index"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-limao: #CCFF8D;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --preto: #181818;
            --branco: #FFFFFF;
            
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
body[data-page="index"] *, body[data-page="index"] *::before, body[data-page="index"] *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="index"]{
            font-size: 16px;
        }
body[data-page="index"]{
            font-family: var(--font-main);
            background: var(--preto);
            color: var(--branco);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
/* Hide scrollbar */
body[data-page="index"]::-webkit-scrollbar{ width: 0; }
body[data-page="index"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* ============================================
           SCROLL CONTAINER - SNAP
        ============================================ */
body[data-page="index"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="index"] .scroll-container{
                scroll-snap-type: y proximity;
            }
}
/* ============================================
           FULL SCREEN SECTIONS
        ============================================ */
body[data-page="index"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="index"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="index"] .screen-content{ padding: clamp(40px, 6vw, 64px); }
}
@media (min-width: 1024px){
body[data-page="index"] .screen-content{ padding: 64px; }
}
/* ============================================
           HEADER
        ============================================ */
body[data-page="index"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="index"] .header{ padding: 32px 48px; }
}
body[data-page="index"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="index"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="index"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="index"] .logo-svg path, body[data-page="index"] .logo-svg rect, body[data-page="index"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="index"] .header.logo-white .logo-svg path, body[data-page="index"] .header.logo-white .logo-svg rect, body[data-page="index"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="index"] .header.logo-green .logo-svg path, body[data-page="index"] .header.logo-green .logo-svg rect, body[data-page="index"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="index"] .header.logo-dark .logo-svg path, body[data-page="index"] .header.logo-dark .logo-svg rect, body[data-page="index"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="index"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="index"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="index"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="index"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="index"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="index"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="index"] .logo-svg{ height: 36px; }
}
body[data-page="index"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="index"] .nav-menu{ display: flex; }
}
body[data-page="index"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="index"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="index"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="index"] .menu-toggle{ display: none; }
}
body[data-page="index"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="index"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="index"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="index"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="index"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="index"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="index"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="index"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="index"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="index"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="index"] .scroll-progress{ display: flex; }
}
body[data-page="index"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="index"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="index"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="index"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="index"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="index"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="index"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            display: none;

            /* Theme variables (default: works on dark/blue backgrounds) */
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
            color: var(--counter-muted);
            transition: color 0.4s var(--ease-out-expo);
        }
@media (min-width: 1024px){
body[data-page="index"] .section-counter{ display: block; }
}
body[data-page="index"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
            transition: color 0.4s var(--ease-out-expo);
        }
/* Section counter themes (match background for contrast) */
body[data-page="index"] .section-counter.counter-on-light{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="index"] .section-counter.counter-on-green{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="index"] .section-counter.counter-on-dark-green{
            --counter-muted: rgba(204, 255, 141, 0.45);
            --counter-current: var(--verde-limao);
        }
body[data-page="index"] .section-counter.counter-on-dark{
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
        }
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="index"] .text-hero{
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="index"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="index"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="index"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
/* ============================================
           ANIMATION CLASSES
        ============================================ */
body[data-page="index"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="index"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="index"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="index"] .slide-left.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="index"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="index"] .slide-right.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="index"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="index"] .scale-in.animate{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="index"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="index"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="index"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="index"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="index"] .delay-5{ transition-delay: 0.5s !important; }
body[data-page="index"] .delay-6{ transition-delay: 0.6s !important; }
/* ============================================
           SCREEN 1: GREETING
        ============================================ */
body[data-page="index"] .screen-greeting{
            background: var(--azul);
        }
/* Área para vídeo/gif da Calanga */
body[data-page="index"] .greeting-video-container{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: 85%;
            overflow: visible;
            pointer-events: none;
            z-index: 1;
        }
@media (min-width: 768px){
body[data-page="index"] .greeting-video-container{
                width: 45%;
                height: 90%;
            }
}
@media (min-width: 1024px){
body[data-page="index"] .greeting-video-container{
                width: 42%;
                height: 95%;
            }
}
body[data-page="index"] .greeting-video-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.2);
            text-align: center;
            padding: 24px;
            border: 2px dashed rgba(255,255,255,0.1);
            border-radius: 24px;
            margin: 24px;
            box-sizing: border-box;
        }
/* Quando tiver o vídeo/gif real */
body[data-page="index"] .greeting-video-container video, body[data-page="index"] .greeting-video-container img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }
/* Conteúdo da hero por cima do vídeo */
body[data-page="index"] .screen-greeting .screen-content{
            position: relative;
            z-index: 2;
        }
body[data-page="index"] .greeting-text .greeting-line{
            display: block;
            overflow: visible;
        }
body[data-page="index"] .greeting-text .greeting-word{
            display: inline-block;
            transform: translateY(120%);
            transition: transform 1s var(--ease-out-expo);
        }
body[data-page="index"] .screen-greeting.in-view .greeting-word{
            transform: translateY(0);
        }
body[data-page="index"] .greeting-text .greeting-line:nth-child(1) .greeting-word{ transition-delay: 0.2s; }
body[data-page="index"] .greeting-text .greeting-line:nth-child(2) .greeting-word{ transition-delay: 0.4s; }
body[data-page="index"] .greeting-subtitle{
            margin-top: 32px;
            font-size: clamp(1.1rem, 1.8vw, 1.4rem);
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            max-width: 680px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
            transition-delay: 0.7s;
        }
body[data-page="index"] .screen-greeting.in-view .greeting-subtitle{
            opacity: 1;
            transform: translateY(0);
        }
/* Scroll hint */
body[data-page="index"] .scroll-hint{
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 1.5s forwards;
        }
body[data-page="index"] .scroll-hint-text{
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
        }
body[data-page="index"] .scroll-hint-arrow{
            width: 24px;
            height: 24px;
            animation: bounce 2s ease-in-out infinite;
        }
body[data-page="index"] .scroll-hint-arrow svg{ stroke: rgba(255, 255, 255, 0.5); }
@keyframes bounce{
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }
@keyframes fadeInUp{
            from { opacity: 0; transform: translateX(-50%) translateY(20px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
/* ============================================
           SCREEN 2: TAGLINE
        ============================================ */
body[data-page="index"] .screen-tagline{
            background: var(--preto);
            position: relative;
            overflow: hidden;
        }
/* Placeholder para imagem de fundo */
body[data-page="index"] .tagline-bg-image{
            position: absolute;
            inset: 0;
            z-index: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.15);
            text-align: center;
        }
/* Quando tiver imagem real */
body[data-page="index"] .tagline-bg-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }
/* Degradê animado - Aurora/Blob effect */
body[data-page="index"] .tagline-gradient-bg{
            position: absolute;
            top: -100%;
            left: -100%;
            right: -100%;
            bottom: -100%;
            z-index: 1;
        }
body[data-page="index"] .tagline-gradient-blob{
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: blobFloat 20s ease-in-out infinite;
        }
body[data-page="index"] .tagline-gradient-blob:nth-child(1){
            width: 600px;
            height: 600px;
            background: var(--azul);
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }
body[data-page="index"] .tagline-gradient-blob:nth-child(2){
            width: 500px;
            height: 500px;
            background: var(--verde-limao);
            top: 30%;
            right: 20%;
            animation-delay: -5s;
            opacity: 0.4;
        }
body[data-page="index"] .tagline-gradient-blob:nth-child(3){
            width: 400px;
            height: 400px;
            background: var(--azul-dark);
            bottom: 10%;
            left: 40%;
            animation-delay: -10s;
        }
@keyframes blobFloat{
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(50px, -30px) scale(1.1);
            }
            50% {
                transform: translate(-30px, 50px) scale(0.9);
            }
            75% {
                transform: translate(30px, 20px) scale(1.05);
            }
        }
body[data-page="index"] .screen-tagline .screen-content{
            position: relative;
            z-index: 2;
        }
body[data-page="index"] .tagline-text{
            text-align: left;
            color: var(--verde-limao);
            white-space: nowrap;
            position: relative;
        }
@media (max-width: 768px){
body[data-page="index"] .tagline-text{
                white-space: normal;
                font-size: clamp(2rem, 8vw, 5rem);
            }
}
body[data-page="index"] .tagline-char{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px) rotateX(90deg);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="index"] .screen-tagline.in-view .tagline-char{
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
body[data-page="index"] .tagline-support{
            margin-top: 32px;
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.75);
            max-width: 720px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
            transition-delay: 0.6s;
        }
body[data-page="index"] .screen-tagline.in-view .tagline-support{
            opacity: 1;
            transform: translateY(0);
        }
/* ============================================
           SCREEN 3: MANIFEST
        ============================================ */
body[data-page="index"] .screen-manifest{
            background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%);
            position: relative;
            overflow: hidden;
        }
body[data-page="index"] .screen-manifest::before{
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(204, 255, 141, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
        }
/* Canvas para partículas - será controlado via JS */
body[data-page="index"] .particles-canvas{
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
/* Partículas CSS como fallback e complemento */
body[data-page="index"] .particles-container{
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
body[data-page="index"] .particle{
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(204, 255, 141, 0.6);
            border-radius: 50%;
            animation: particleFloat 20s linear infinite;
        }
body[data-page="index"] .particle::before{
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, rgba(204, 255, 141, 0.3), transparent);
            transform-origin: left center;
            animation: particleLine 20s linear infinite;
        }
body[data-page="index"] .particle:nth-child(1){ top: 15%; left: 10%; animation-delay: 0s; }
body[data-page="index"] .particle:nth-child(2){ top: 25%; left: 85%; animation-delay: -3s; }
body[data-page="index"] .particle:nth-child(3){ top: 45%; left: 5%; animation-delay: -6s; }
body[data-page="index"] .particle:nth-child(4){ top: 65%; left: 90%; animation-delay: -9s; }
body[data-page="index"] .particle:nth-child(5){ top: 80%; left: 15%; animation-delay: -12s; }
body[data-page="index"] .particle:nth-child(6){ top: 10%; left: 50%; animation-delay: -15s; }
body[data-page="index"] .particle:nth-child(7){ top: 70%; left: 60%; animation-delay: -18s; }
body[data-page="index"] .particle:nth-child(8){ top: 35%; left: 25%; animation-delay: -2s; }
body[data-page="index"] .particle:nth-child(9){ top: 55%; left: 75%; animation-delay: -7s; }
body[data-page="index"] .particle:nth-child(10){ top: 90%; left: 40%; animation-delay: -11s; }
body[data-page="index"] .particle:nth-child(11){ top: 20%; left: 65%; animation-delay: -4s; }
body[data-page="index"] .particle:nth-child(12){ top: 85%; left: 80%; animation-delay: -14s; }
body[data-page="index"] .particle:nth-child(odd)::before{
            transform: rotate(45deg);
        }
body[data-page="index"] .particle:nth-child(even)::before{
            transform: rotate(-30deg);
            width: 80px;
        }
body[data-page="index"] .particle:nth-child(3n)::before{
            transform: rotate(120deg);
            width: 120px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
        }
@keyframes particleFloat{
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translate(30px, -20px) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translate(-20px, 30px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translate(15px, 15px) scale(1.1);
                opacity: 0.8;
            }
        }
@keyframes particleLine{
            0%, 100% {
                opacity: 0.3;
                width: 100px;
            }
            50% {
                opacity: 0.6;
                width: 150px;
            }
        }
/* Linhas de conexão entre partículas */
body[data-page="index"] .connection-lines{
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
body[data-page="index"] .connection-line{
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(204, 255, 141, 0.15), transparent);
            transform-origin: left center;
            animation: lineConnect 25s ease-in-out infinite;
        }
body[data-page="index"] .connection-line:nth-child(1){
            top: 20%; left: 10%; width: 200px; transform: rotate(25deg);
            animation-delay: 0s;
        }
body[data-page="index"] .connection-line:nth-child(2){
            top: 40%; left: 60%; width: 180px; transform: rotate(-15deg);
            animation-delay: -5s;
        }
body[data-page="index"] .connection-line:nth-child(3){
            top: 70%; left: 20%; width: 250px; transform: rotate(40deg);
            animation-delay: -10s;
        }
body[data-page="index"] .connection-line:nth-child(4){
            top: 30%; left: 40%; width: 150px; transform: rotate(-35deg);
            animation-delay: -15s;
        }
body[data-page="index"] .connection-line:nth-child(5){
            top: 60%; left: 70%; width: 220px; transform: rotate(10deg);
            animation-delay: -20s;
        }
@keyframes lineConnect{
            0%, 100% {
                opacity: 0;
                transform: scaleX(0) rotate(var(--rotation, 0deg));
            }
            10%, 90% {
                opacity: 0.3;
                transform: scaleX(1) rotate(var(--rotation, 0deg));
            }
            50% {
                opacity: 0.5;
            }
        }
body[data-page="index"] .manifest-lines{
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="index"] .manifest-lines{ gap: 24px; }
}
body[data-page="index"] .manifest-line{
            font-size: clamp(1.25rem, 4vw, 2.5rem);
            font-weight: 500;
            color: var(--branco);
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s var(--ease-out-expo);
        }
body[data-page="index"] .screen-manifest.in-view .manifest-line{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="index"] .manifest-line:nth-child(1){ transition-delay: 0.1s; }
body[data-page="index"] .manifest-line:nth-child(2){ transition-delay: 0.25s; }
body[data-page="index"] .manifest-line:nth-child(3){ transition-delay: 0.4s; }
body[data-page="index"] .manifest-line:nth-child(4){ transition-delay: 0.55s; }
body[data-page="index"] .manifest-line .highlight{
            color: var(--verde-limao);
            font-weight: 700;
        }
/* ============================================
           SCREEN 4: CALANGA INTRO
        ============================================ */
body[data-page="index"] .screen-calanga-intro{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="index"] .calanga-intro-content{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 1024px){
body[data-page="index"] .calanga-intro-content{
                grid-template-columns: 1fr 1fr;
                text-align: left;
                gap: 80px;
            }
}
body[data-page="index"] .calanga-placeholder{
            width: 280px;
            height: 280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            color: rgba(24, 24, 24, 0.5);
            text-align: center;
            opacity: 0;
            transform: scale(0.8) rotate(-10deg);
            transition: all 1s var(--ease-out-expo);
        }
@media (min-width: 768px){
body[data-page="index"] .calanga-placeholder{ width: 360px; height: 360px; }
}
@media (min-width: 1024px){
body[data-page="index"] .calanga-placeholder{ width: 420px; height: 420px; }
}
body[data-page="index"] .screen-calanga-intro.in-view .calanga-placeholder{
            opacity: 1;
            transform: scale(1) rotate(0);
        }
body[data-page="index"] .calanga-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="index"] .calanga-intro-text h2{ margin-bottom: 24px; }
body[data-page="index"] .calanga-intro-text p{ margin-bottom: 32px; opacity: 0.8; }
/* Buttons */
body[data-page="index"] .btn{
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .btn-primary{
            background: var(--preto);
            color: var(--branco);
        }
body[data-page="index"] .btn-primary:hover{
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
body[data-page="index"] .btn-secondary{
            background: var(--azul);
            color: var(--branco);
        }
body[data-page="index"] .btn-secondary:hover{
            background: var(--azul-dark);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(17, 85, 246, 0.4);
        }
body[data-page="index"] .btn-arrow{
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .btn:hover .btn-arrow{ transform: translateX(4px); }
/* ============================================
           SCREEN 5: BRASILIA
        ============================================ */
body[data-page="index"] .screen-brasilia{
            background: var(--preto);
        }
body[data-page="index"] .brasilia-bg{
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }
body[data-page="index"] .brasilia-bg img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
body[data-page="index"] .brasilia-bg-placeholder{
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 85, 246, 0.3) 0%, rgba(24, 24, 24, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
body[data-page="index"] .brasilia-bg-placeholder span{
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
            border: 1px dashed rgba(255, 255, 255, 0.2);
            padding: 16px 24px;
            border-radius: 8px;
        }
body[data-page="index"] .brasilia-content{
            max-width: 900px;
        }
body[data-page="index"] .brasilia-title{
            color: var(--verde-limao);
            margin-bottom: 40px;
        }
body[data-page="index"] .brasilia-text{ color: rgba(255, 255, 255, 0.85); }
body[data-page="index"] .brasilia-text p{ margin-bottom: 24px; }
body[data-page="index"] .brasilia-text strong{ color: var(--verde-limao); font-weight: 600; }
body[data-page="index"] .brasilia-closing{
            margin-top: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }
/* ============================================
           SCREEN 6: SERVICES
        ============================================ */
body[data-page="index"] .screen-services{
            background: var(--branco);
            color: var(--preto);
        }
body[data-page="index"] .services-header{
            text-align: left;
            margin-bottom: 48px;
        }
body[data-page="index"] .services-layout{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }
@media (min-width: 1024px){
body[data-page="index"] .services-layout{
                grid-template-columns: 1fr 320px;
                gap: 64px;
            }
}
body[data-page="index"] .services-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
@media (min-width: 768px){
body[data-page="index"] .services-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
/* Calanga que muda com hover */
body[data-page="index"] .services-calanga{
            display: none;
            align-items: center;
            justify-content: center;
            order: 1;
            position: relative;
            height: 400px;
        }
@media (min-width: 1024px){
body[data-page="index"] .services-calanga{
                display: flex;
            }
}
body[data-page="index"] .calanga-state{
            position: absolute;
            width: 280px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(17, 85, 246, 0.4);
            text-align: center;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: all 0.5s var(--ease-out-expo);
            pointer-events: none;
        }
body[data-page="index"] .calanga-state.active{
            opacity: 1;
            transform: scale(1) translateY(0);
        }
/* Estados da Calanga para cada serviço */
body[data-page="index"] .calanga-state[data-service="default"]{
            opacity: 1;
            transform: scale(1) translateY(0);
        }
body[data-page="index"] .services-grid:hover ~ .services-calanga .calanga-state[data-service="default"]{
            opacity: 0;
            transform: scale(0.9) translateY(20px);
        }
body[data-page="index"] .calanga-state img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="index"] .service-card{
            background: var(--branco);
            border: 1px solid var(--cinza-claro);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="index"] .screen-services.in-view .service-card{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="index"] .service-card:nth-child(1){ transition-delay: 0.1s; }
body[data-page="index"] .service-card:nth-child(2){ transition-delay: 0.2s; }
body[data-page="index"] .service-card:nth-child(3){ transition-delay: 0.3s; }
body[data-page="index"] .service-card:nth-child(4){ transition-delay: 0.4s; }
body[data-page="index"] .service-card::before{
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 0;
            background: var(--azul);
            transition: height 0.5s var(--ease-out-expo);
        }
body[data-page="index"] .service-card:hover{
            border-color: var(--azul);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
body[data-page="index"] .service-card:hover::before{ height: 100%; }
body[data-page="index"] .service-number{
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--azul);
            opacity: 0.5;
            margin-bottom: 16px;
        }
body[data-page="index"] .service-title{
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
body[data-page="index"] .service-text{
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.7;
        }
body[data-page="index"] .services-cta{
            text-align: left;
            margin-top: 48px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s var(--ease-out-expo) 0.5s;
        }
body[data-page="index"] .screen-services.in-view .services-cta{
            opacity: 1;
            transform: translateY(0);
        }
/* ============================================
           SCREEN 7: WORK
        ============================================ */
body[data-page="index"] .screen-work{
            background: linear-gradient(180deg, var(--branco) 0%, #f8f9fa 100%);
            color: var(--preto);
        }
body[data-page="index"] .work-header{
            text-align: left;
            margin-bottom: 64px;
        }
body[data-page="index"] .work-header .subtitle{
            font-size: 1rem;
            color: var(--cinza-medio);
            margin-top: 12px;
        }
body[data-page="index"] .work-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
@media (min-width: 768px){
body[data-page="index"] .work-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="index"] .work-grid{ grid-template-columns: repeat(3, 1fr); }
}
body[data-page="index"] .work-card{
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="index"] .screen-work.in-view .work-card{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="index"] .work-card:nth-child(1){ transition-delay: 0.1s; }
body[data-page="index"] .work-card:nth-child(2){ transition-delay: 0.15s; }
body[data-page="index"] .work-card:nth-child(3){ transition-delay: 0.2s; }
body[data-page="index"] .work-card:nth-child(4){ transition-delay: 0.25s; }
body[data-page="index"] .work-card:nth-child(5){ transition-delay: 0.3s; }
body[data-page="index"] .work-card:nth-child(6){ transition-delay: 0.35s; }
body[data-page="index"] .work-card-bg{
            position: absolute;
            inset: 0;
            transition: transform 0.6s var(--ease-out-expo);
        }
body[data-page="index"] .work-card:hover .work-card-bg{ transform: scale(1.08); }
body[data-page="index"] .work-card-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }
body[data-page="index"] .work-card-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(17, 85, 246, 0.95) 0%, rgba(17, 85, 246, 0.6) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s var(--ease-out-expo);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }
body[data-page="index"] .work-card:hover .work-card-overlay{ opacity: 1; }
body[data-page="index"] .work-card-title{
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--branco);
            margin-bottom: 8px;
            transform: translateY(20px);
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .work-card:hover .work-card-title{ transform: translateY(0); }
body[data-page="index"] .work-card-tag{
            font-size: 0.875rem;
            color: var(--verde-limao);
            transform: translateY(20px);
            transition: transform 0.4s var(--ease-out-expo) 0.05s;
        }
body[data-page="index"] .work-card:hover .work-card-tag{ transform: translateY(0); }
body[data-page="index"] .work-card-arrow{
            position: absolute;
            top: 20px; right: 20px;
            width: 44px; height: 44px;
            background: var(--verde-limao);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(80px);
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="index"] .work-card:hover .work-card-arrow{ transform: translateX(0); }
body[data-page="index"] .work-cta{ text-align: left; margin-top: 48px; }
/* ============================================
           SCREEN 8: CTA
        ============================================ */
body[data-page="index"] .screen-cta{
            background: var(--azul);
        }
body[data-page="index"] .screen-cta::before{
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(204, 255, 141, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
        }
body[data-page="index"] .cta-content{
            text-align: left;
            max-width: 800px;
        }
body[data-page="index"] .cta-calanga{
            width: 140px;
            height: 140px;
            margin-bottom: 40px;
            opacity: 0;
            transform: scale(0.8) rotate(-15deg);
            transition: all 1s var(--ease-out-expo);
        }
@media (min-width: 768px){
body[data-page="index"] .cta-calanga{ width: 180px; height: 180px; }
}
body[data-page="index"] .screen-cta.in-view .cta-calanga{
            opacity: 1;
            transform: scale(1) rotate(0);
        }
body[data-page="index"] .cta-calanga-placeholder{
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            border: 2px dashed rgba(255, 255, 255, 0.2);
        }
body[data-page="index"] .cta-calanga img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="index"] .cta-title{ color: var(--branco); margin-bottom: 24px; }
body[data-page="index"] .cta-text{
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            max-width: 600px;
        }
body[data-page="index"] .cta-trust{
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--verde-limao);
            margin-bottom: 32px;
            letter-spacing: 0.3px;
        }
body[data-page="index"] .cta-buttons{
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }
@media (min-width: 480px){
body[data-page="index"] .cta-buttons{ flex-direction: row; justify-content: flex-start; }
}
body[data-page="index"] .btn-cta-primary{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="index"] .btn-cta-primary:hover{
            background: var(--verde-dark);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(204, 255, 141, 0.3);
        }
body[data-page="index"] .btn-cta-outline{
            background: transparent;
            color: var(--branco);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
body[data-page="index"] .btn-cta-outline:hover{
            border-color: var(--branco);
            background: rgba(255, 255, 255, 0.1);
        }
/* ============================================
           FOOTER
        ============================================ */
body[data-page="index"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="index"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="index"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="index"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="index"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="index"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="index"] .footer-brand{ max-width: 320px; }
body[data-page="index"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="index"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="index"] .footer-logo-svg path, body[data-page="index"] .footer-logo-svg rect, body[data-page="index"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="index"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="index"] .footer-social{ display: flex; gap: 12px; }
body[data-page="index"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="index"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="index"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="index"] .footer-links{ list-style: none; }
body[data-page="index"] .footer-links li{ margin-bottom: 12px; }
body[data-page="index"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="index"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="index"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="index"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="index"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="index"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="index"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="index"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="index"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="index"] .footer-legal a:hover{ color: var(--verde-limao); }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="index"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="index"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="index"] .loader-logo{
            width: 80px;
            height: 80px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="index"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="index"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="index"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }

.loader-image {
  width: 100px;
  height: 100px;
  opacity: 0.9;
  mix-blend-mode: screen;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}


/* ============================================
           SAFARI: PERFORMANCE DO SCROLL (Home como Sobre)
           - Remove blur grande + animações de fundo que causam repaints durante o scroll
           ============================================ */
body[data-page="index"].is-safari .tagline-gradient-bg{
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
        }
body[data-page="index"].is-safari .tagline-gradient-blob{
            /* blur em área gigante é o principal causador de travamento no Safari */
            filter: none !important;
            animation: none !important;
            opacity: 0.25 !important;
            /* força composição */
            will-change: transform;
            transform: translateZ(0);
        }
body[data-page="index"].is-safari .particles-container, body[data-page="index"].is-safari .connection-lines, body[data-page="index"].is-safari .particles-canvas{
            display: none !important;
        }
body[data-page="index"].is-safari .screen-manifest::before{
            /* mantém um fundo leve sem efeitos animados */
            opacity: 1;
        }
body[data-page="index"].is-safari .scroll-container{
            /* ajuda no scroll dentro de container no WebKit */
            -webkit-overflow-scrolling: touch;
        }
/* Pausa geral durante scroll */
body[data-page="index"].is-scrolling .tagline-gradient-blob, body[data-page="index"].is-scrolling .particle, body[data-page="index"].is-scrolling .connection-line, body[data-page="index"].is-scrolling .scroll-hint-arrow{
            animation-play-state: paused !important;
        }
/* ============================================
           SAFARI: PERFORMANCE DO SCROLL (Home como Sobre)
           - Remove blur grande + animações de fundo que causam repaints durante o scroll
           ============================================ */
body[data-page="index"].is-safari .tagline-gradient-bg{
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
        }
body[data-page="index"].is-safari .tagline-gradient-blob{
            /* blur em área gigante é o principal causador de travamento no Safari */
            filter: none !important;
            animation: none !important;
            opacity: 0.25 !important;
            /* força composição */
            will-change: transform;
            transform: translateZ(0);
        }
body[data-page="index"].is-safari .particles-container, body[data-page="index"].is-safari .connection-lines, body[data-page="index"].is-safari .particles-canvas{
            display: none !important;
        }
body[data-page="index"].is-safari .screen-manifest::before{
            /* mantém um fundo leve sem efeitos animados */
            opacity: 1;
        }
body[data-page="index"].is-safari .scroll-container{
            /* ajuda no scroll dentro de container no WebKit */
            -webkit-overflow-scrolling: touch;
        }


/* ===== Scoped: trabalhos.html ===== */
body[data-page="trabalhos"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="trabalhos"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        }
body[data-page="trabalhos"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
        }
body[data-page="trabalhos"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
body[data-page="trabalhos"] .scroll-container::-webkit-scrollbar{ width: 0; }
body[data-page="trabalhos"] .screen{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            padding: 0 4rem;
            position: relative;
        }
body[data-page="trabalhos"] .screen-content{
            width: 100%;
            max-width: 1400px;
        }
body[data-page="trabalhos"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="trabalhos"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="trabalhos"] .logo-svg path, body[data-page="trabalhos"] .logo-svg rect, body[data-page="trabalhos"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
body[data-page="trabalhos"] .header.logo-white .logo-svg path, body[data-page="trabalhos"] .header.logo-white .logo-svg rect, body[data-page="trabalhos"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="trabalhos"] .header.logo-dark .logo-svg path, body[data-page="trabalhos"] .header.logo-dark .logo-svg rect, body[data-page="trabalhos"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
body[data-page="trabalhos"] .header.logo-green .logo-svg path, body[data-page="trabalhos"] .header.logo-green .logo-svg rect, body[data-page="trabalhos"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="trabalhos"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="trabalhos"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: opacity 0.3s;
            color: inherit;
        }
body[data-page="trabalhos"] .nav-link:hover{ opacity: 0.7; }
body[data-page="trabalhos"] .scroll-progress{
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
body[data-page="trabalhos"] .progress-dot{
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
body[data-page="trabalhos"] .progress-dot.active{
            background: var(--verde-limao);
            transform: scale(1.3);
        }
body[data-page="trabalhos"] .section-counter{
            position: fixed;
            left: 2rem;
            bottom: 2rem;
            z-index: 999;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
        }
body[data-page="trabalhos"] .section-counter .current{
            color: var(--verde-limao);
            font-size: 1.2rem;
        }
body[data-page="trabalhos"] .screen-hero{ background: var(--preto); }
body[data-page="trabalhos"] .hero-title{
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.1;
        }
body[data-page="trabalhos"] .screen-subtitle{ 
            background: var(--preto);
            background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23181818" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="%231155F6" opacity="0.1"/></svg>');
        }
body[data-page="trabalhos"] .subtitle-text{
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 1.3;
            font-weight: 400;
            max-width: 900px;
        }
body[data-page="trabalhos"] .placeholder-bg{
            font-size: 0.9rem;
            color: rgba(255,255,255,0.3);
            text-align: center;
            padding: 2rem;
            border: 2px dashed rgba(255,255,255,0.2);
            border-radius: 12px;
            margin-top: 3rem;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
body[data-page="trabalhos"] .screen-cases{ 
            background: var(--preto);
            min-height: auto;
            padding: 8rem 4rem;
        }
body[data-page="trabalhos"] .intro-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 900px;
        }
body[data-page="trabalhos"] .cases-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
body[data-page="trabalhos"] .case-card{
            position: relative;
            aspect-ratio: 4/3;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
body[data-page="trabalhos"] .case-card:hover{
            transform: translateY(-8px);
        }
body[data-page="trabalhos"] .case-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.03);
            border: 2px dashed rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.3);
            font-size: 0.9rem;
            overflow: hidden;
        }
body[data-page="trabalhos"] .case-placeholder:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="trabalhos"] .case-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
body[data-page="trabalhos"] .case-card:hover .case-placeholder img{
            transform: scale(1.05);
        }
body[data-page="trabalhos"] .case-title{
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 20px;
            color: var(--branco);
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.3;
            z-index: 2;
            transition: opacity 0.25s ease;
        }
body[data-page="trabalhos"] .case-card:has(img)::after{
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
            pointer-events: none;
            z-index: 1;
        }
body[data-page="trabalhos"] .case-card:hover .case-title{
            opacity: 0;
        }
body[data-page="trabalhos"] .case-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
body[data-page="trabalhos"] .case-card:hover .case-overlay{
            opacity: 1;
        }
body[data-page="trabalhos"] .case-overlay-text{
            color: var(--verde-limao);
            font-size: 1.2rem;
            font-weight: 600;
        }
body[data-page="trabalhos"] .case-title{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--branco);
            font-size: 1.5rem;
            font-weight: 600;
        }
body[data-page="trabalhos"] .screen-cta{ background: var(--verde-limao); color: var(--preto); }
body[data-page="trabalhos"] .cta-content{ 
            text-align: left; 
            max-width: 900px;
        }
body[data-page="trabalhos"] .cta-title{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
body[data-page="trabalhos"] .cta-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
body[data-page="trabalhos"] .cta-content .cta-trust{
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--preto);
            opacity: 0.7;
            margin-bottom: 2.5rem;
            letter-spacing: 0.3px;
        }
body[data-page="trabalhos"] .btn{
            transition: all 0.3s;
            background: var(--preto);
            color: var(--verde-limao);
        }
body[data-page="trabalhos"] .btn:hover{ 
            background: var(--azul);
            color: var(--branco);
            transform: translateY(-2px); 
        }
body[data-page="trabalhos"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="trabalhos"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="trabalhos"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="trabalhos"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="trabalhos"] .footer-brand{ max-width: 320px; }
body[data-page="trabalhos"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="trabalhos"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="trabalhos"] .footer-logo-svg path, body[data-page="trabalhos"] .footer-logo-svg rect, body[data-page="trabalhos"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="trabalhos"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="trabalhos"] .footer-social{ display: flex; gap: 12px; }
body[data-page="trabalhos"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="trabalhos"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="trabalhos"] .footer-links{ list-style: none; }
body[data-page="trabalhos"] .footer-links li{ margin-bottom: 12px; }
body[data-page="trabalhos"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="trabalhos"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="trabalhos"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="trabalhos"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="trabalhos"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="trabalhos"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="trabalhos"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="trabalhos"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="trabalhos"] .footer-legal a:hover{ color: var(--verde-limao); }
@media (max-width: 1024px){
body[data-page="trabalhos"] .cases-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
body[data-page="trabalhos"] .screen{ padding: 0 2rem; }
body[data-page="trabalhos"] .screen-cases{ padding: 4rem 2rem; }
body[data-page="trabalhos"] .header{ padding: 1.5rem 2rem; }
body[data-page="trabalhos"] .nav, body[data-page="trabalhos"] .scroll-progress, body[data-page="trabalhos"] .section-counter{ display: none; }
body[data-page="trabalhos"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="trabalhos"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
}
/* ===== Overrides (Home: header/menu/mobile + placeholders de fundo) ===== */
body[data-page="trabalhos"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .header{ padding: 32px 48px; }
}
body[data-page="trabalhos"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="trabalhos"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="trabalhos"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="trabalhos"] .logo-svg path, body[data-page="trabalhos"] .logo-svg rect, body[data-page="trabalhos"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="trabalhos"] .header.logo-white .logo-svg path, body[data-page="trabalhos"] .header.logo-white .logo-svg rect, body[data-page="trabalhos"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="trabalhos"] .header.logo-green .logo-svg path, body[data-page="trabalhos"] .header.logo-green .logo-svg rect, body[data-page="trabalhos"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="trabalhos"] .header.logo-dark .logo-svg path, body[data-page="trabalhos"] .header.logo-dark .logo-svg rect, body[data-page="trabalhos"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="trabalhos"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="trabalhos"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="trabalhos"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="trabalhos"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="trabalhos"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="trabalhos"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="trabalhos"] .logo-svg{ height: 36px; }
}
body[data-page="trabalhos"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="trabalhos"] .nav-menu{ display: flex; }
}
body[data-page="trabalhos"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="trabalhos"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="trabalhos"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="trabalhos"] .menu-toggle{ display: none; }
}
body[data-page="trabalhos"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="trabalhos"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="trabalhos"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="trabalhos"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="trabalhos"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
body[data-page="trabalhos"].no-scroll{ overflow: hidden; }
body[data-page="trabalhos"] .screen{ overflow: hidden; }
body[data-page="trabalhos"] .screen-content{ position: relative; z-index: 2; }
/* Placeholder de fundo (seções 1 e 2) */
body[data-page="trabalhos"] .bg-placeholder{
            position: absolute;
            left: 50%;
            top: 62%;
            transform: translate(-50%, -50%);
            width: min(1000px, 84vw);
            height: min(360px, 42vh);
            border: 2px dashed rgba(255, 255, 255, 0.16);
            border-radius: 16px;
            color: rgba(255, 255, 255, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px;
            pointer-events: none;
            z-index: 0;
            backdrop-filter: blur(0px);
            overflow: hidden;
        }
body[data-page="trabalhos"] .bg-placeholder:has(img){
            inset: 0;
            top: 0;
            left: 0;
            transform: none;
            width: 100%;
            height: 100%;
            max-width: none;
            border: 0;
            border-radius: 0;
            padding: 0;
            overflow: hidden;
        }
body[data-page="trabalhos"] .bg-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.4;
            mix-blend-mode: luminosity;
        }
body[data-page="trabalhos"] .bg-placeholder:has(img)::after{
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.7) 100%);
            pointer-events: none;
        }
@media (max-width: 768px){
body[data-page="trabalhos"] .bg-placeholder{
                top: 66%;
                width: min(860px, 86vw);
                height: min(300px, 36vh);
                padding: 18px;
            }
body[data-page="trabalhos"] .bg-placeholder:has(img){
                top: 0;
                width: 100%;
                height: 100%;
                padding: 0;
            }
}
/* ===== Shared styles from Home (for consistency) ===== */
/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
body[data-page="trabalhos"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-limao: #CCFF8D;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --preto: #181818;
            --branco: #FFFFFF;
            
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
body[data-page="trabalhos"] *, body[data-page="trabalhos"] *::before, body[data-page="trabalhos"] *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="trabalhos"]{
            font-size: 16px;
        }
body[data-page="trabalhos"]{
            font-family: var(--font-main);
            background: var(--preto);
            color: var(--branco);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
/* Hide scrollbar */
body[data-page="trabalhos"]::-webkit-scrollbar{ width: 0; }
body[data-page="trabalhos"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* ============================================
           SCROLL CONTAINER - SNAP
        ============================================ */
body[data-page="trabalhos"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="trabalhos"] .scroll-container{
                scroll-snap-type: y proximity;
            }
}
/* ============================================
           FULL SCREEN SECTIONS
        ============================================ */
body[data-page="trabalhos"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="trabalhos"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .screen-content{ padding: clamp(40px, 6vw, 64px); }
}
@media (min-width: 1024px){
body[data-page="trabalhos"] .screen-content{ padding: 64px; }
}
/* ============================================
           HEADER
        ============================================ */
body[data-page="trabalhos"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .header{ padding: 32px 48px; }
}
body[data-page="trabalhos"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="trabalhos"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="trabalhos"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="trabalhos"] .logo-svg path, body[data-page="trabalhos"] .logo-svg rect, body[data-page="trabalhos"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="trabalhos"] .header.logo-white .logo-svg path, body[data-page="trabalhos"] .header.logo-white .logo-svg rect, body[data-page="trabalhos"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="trabalhos"] .header.logo-green .logo-svg path, body[data-page="trabalhos"] .header.logo-green .logo-svg rect, body[data-page="trabalhos"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="trabalhos"] .header.logo-dark .logo-svg path, body[data-page="trabalhos"] .header.logo-dark .logo-svg rect, body[data-page="trabalhos"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="trabalhos"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="trabalhos"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="trabalhos"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="trabalhos"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="trabalhos"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="trabalhos"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="trabalhos"] .logo-svg{ height: 36px; }
}
body[data-page="trabalhos"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="trabalhos"] .nav-menu{ display: flex; }
}
body[data-page="trabalhos"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="trabalhos"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="trabalhos"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="trabalhos"] .menu-toggle{ display: none; }
}
body[data-page="trabalhos"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="trabalhos"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="trabalhos"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="trabalhos"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="trabalhos"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="trabalhos"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="trabalhos"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="trabalhos"] .scroll-progress{ display: flex; }
}
body[data-page="trabalhos"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="trabalhos"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="trabalhos"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="trabalhos"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="trabalhos"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="trabalhos"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="trabalhos"] .section-counter{
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 100;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: none;

    /* Theme variables (default: dark/blue backgrounds) */
    --counter-muted: rgba(255, 255, 255, 0.4);
    --counter-current: var(--branco);
    color: var(--counter-muted);
    transition: color 0.4s var(--ease-out-expo);
}
@media (min-width: 1024px){
body[data-page="trabalhos"] .section-counter{ display: block; }
}
body[data-page="trabalhos"] .section-counter .current{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--counter-current);
    display: block;
    line-height: 1;
    transition: color 0.4s var(--ease-out-expo);
}
/* Section counter themes (same pattern as Home) */
body[data-page="trabalhos"] .section-counter.counter-on-light{
    --counter-muted: rgba(24, 24, 24, 0.35);
    --counter-current: var(--preto);
}
body[data-page="trabalhos"] .section-counter.counter-on-green{
    --counter-muted: rgba(24, 24, 24, 0.35);
    --counter-current: var(--preto);
}
body[data-page="trabalhos"] .section-counter.counter-on-dark-green{
    --counter-muted: rgba(204, 255, 141, 0.45);
    --counter-current: var(--verde-limao);
}
body[data-page="trabalhos"] .section-counter.counter-on-dark{
    --counter-muted: rgba(255, 255, 255, 0.4);
    --counter-current: var(--branco);
}
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="trabalhos"] .text-hero{
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="trabalhos"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="trabalhos"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="trabalhos"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
/* ============================================
           ANIMATION CLASSES
        ============================================ */
body[data-page="trabalhos"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="trabalhos"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .slide-left.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="trabalhos"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .slide-right.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="trabalhos"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="trabalhos"] .scale-in.animate{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="trabalhos"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="trabalhos"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="trabalhos"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="trabalhos"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="trabalhos"] .delay-5{ transition-delay: 0.5s !important; }
body[data-page="trabalhos"] .delay-6{ transition-delay: 0.6s !important; }
/* ============================================
           SCREEN 1: GREETING
        ============================================ */
body[data-page="trabalhos"] .screen-greeting{
            background: var(--azul);
        }
/* Área para vídeo/gif da Calanga */
body[data-page="trabalhos"] .greeting-video-container{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
            height: 70%;
            overflow: visible;
            pointer-events: none;
            z-index: 1;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] .greeting-video-container{
                width: 35%;
                height: 75%;
            }
}
@media (min-width: 1024px){
body[data-page="trabalhos"] .greeting-video-container{
                width: 30%;
                height: 80%;
            }
}
body[data-page="trabalhos"] .greeting-video-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.2);
            text-align: center;
            padding: 24px;
            border: 2px dashed rgba(255,255,255,0.1);
            border-radius: 24px;
            margin: 24px;
            box-sizing: border-box;
        }
/* Quando tiver o vídeo/gif real */
body[data-page="trabalhos"] .greeting-video-container video, body[data-page="trabalhos"] .greeting-video-container img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="trabalhos"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="trabalhos"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="trabalhos"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
body[data-page="trabalhos"] .loader-text{
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }
body[data-page="trabalhos"] .loader-bar{
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            overflow: hidden;
        }
body[data-page="trabalhos"] .loader-bar-fill{
            width: 100%;
            height: 100%;
            background: var(--verde-limao);
            transform: translateX(-100%);
            animation: loading 1s ease-in-out infinite;
        }
@keyframes loading{
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="trabalhos"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="trabalhos"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="trabalhos"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="trabalhos"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="trabalhos"] body .footer-brand{ max-width: 320px !important; }
body[data-page="trabalhos"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="trabalhos"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="trabalhos"] body .footer-logo-svg path, body[data-page="trabalhos"] body .footer-logo-svg rect, body[data-page="trabalhos"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="trabalhos"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="trabalhos"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="trabalhos"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="trabalhos"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="trabalhos"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="trabalhos"] body .footer-links{ list-style: none !important; }
body[data-page="trabalhos"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="trabalhos"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="trabalhos"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="trabalhos"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="trabalhos"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="trabalhos"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="trabalhos"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="trabalhos"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="trabalhos"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="trabalhos"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="trabalhos"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }
/* Wrapper for dots (prevents them from "amontoar") */
body[data-page="trabalhos"] .scroll-progress-dots{
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ===== Scoped: servicos.html ===== */
body[data-page="servicos"] *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="servicos"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
            --cinza-claro: #E2E2E2;
            --dot-bg: rgba(255, 255, 255, 0.2);
        
        }
body[data-page="servicos"]{
            font-size: 16px;
        }
body[data-page="servicos"]{
            font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
body[data-page="servicos"]::-webkit-scrollbar{ width: 0; }
body[data-page="servicos"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* SCROLL CONTAINER */
body[data-page="servicos"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="servicos"] .scroll-container{
                scroll-snap-type: y proximity;
            }
}
/* SEÇÕES FULL SCREEN */
body[data-page="servicos"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="servicos"] .screen-content{
            max-width: 1600px;
            width: 100%;
            padding: 0 4rem;
            position: relative;
            z-index: 2;
        }
/* HEADER */
body[data-page="servicos"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
body[data-page="servicos"] .logo{
            display: block;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
body[data-page="servicos"] .logo:hover{
            transform: scale(1.02);
        }
body[data-page="servicos"] .logo-svg{
            height: 42px;
            width: auto;
        }
body[data-page="servicos"] .logo-svg path, body[data-page="servicos"] .logo-svg rect, body[data-page="servicos"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.3s ease;
        }
/* Cores da logo por seção */
body[data-page="servicos"] .header.logo-white .logo-svg path, body[data-page="servicos"] .header.logo-white .logo-svg rect, body[data-page="servicos"] .header.logo-white .logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="servicos"] .header.logo-dark .logo-svg path, body[data-page="servicos"] .header.logo-dark .logo-svg rect, body[data-page="servicos"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto);
        }
body[data-page="servicos"] .header.logo-green .logo-svg path, body[data-page="servicos"] .header.logo-green .logo-svg rect, body[data-page="servicos"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao);
        }
body[data-page="servicos"] .nav-menu{
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
body[data-page="servicos"] .nav-link{
            color: var(--branco);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
body[data-page="servicos"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--verde-limao);
            transition: width 0.3s ease;
        }
body[data-page="servicos"] .nav-link:hover::after{
            width: 100%;
        }
body[data-page="servicos"] .nav-link:hover{
            color: var(--verde-limao);
        }
body[data-page="servicos"] .header.logo-dark .nav-link{
            color: var(--preto);
        }
body[data-page="servicos"] .header.logo-dark .nav-link::after{
            background: var(--azul);
        }
body[data-page="servicos"] .header.logo-dark .nav-link:hover{
            color: var(--azul);
        }
/* SCROLL PROGRESS DOTS */
body[data-page="servicos"] .scroll-progress{
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.25);
            --dot-hover: rgba(255, 255, 255, 0.55);
            --dot-active: var(--verde-limao);
            --dot-label: var(--branco);
        }
body[data-page="servicos"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
body[data-page="servicos"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            transform: scale(1.3);
        }
body[data-page="servicos"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
/* Scroll progress dot themes */
body[data-page="servicos"] .scroll-progress.dots-on-light{
            /* Default variables already fit dark/azul/preto backgrounds */
        }
body[data-page="servicos"] .scroll-progress.dots-on-dark{
            --dot-bg: rgba(0, 0, 0, 0.22);
            --dot-hover: rgba(0, 0, 0, 0.55);
            --dot-label: rgba(0, 0, 0, 0.85);
        }
/* Special handling for the green section (better contrast) */
body[data-page="servicos"] .scroll-progress.dots-on-green{
            --dot-bg: rgba(0, 0, 0, 0.25);
            --dot-hover: rgba(0, 0, 0, 0.55);
            --dot-active: rgba(0, 0, 0, 0.92);
            --dot-label: rgba(0, 0, 0, 0.92);
        }
/* Section counter themes */
body[data-page="servicos"] .section-counter.counter-on-light{
            /* Default variables already fit dark/azul/preto backgrounds */
        }
body[data-page="servicos"] .section-counter.counter-on-dark{
            --counter-muted: rgba(0, 0, 0, 0.55);
            --counter-current: rgba(0, 0, 0, 0.92);
        }
body[data-page="servicos"] .section-counter.counter-on-green{
            --counter-muted: rgba(0, 0, 0, 0.55);
            --counter-current: rgba(0, 0, 0, 0.92);
        }
body[data-page="servicos"] .scroll-progress-dot::before{
            content: attr(data-label);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            white-space: nowrap;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--dot-label);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
body[data-page="servicos"] .scroll-progress-dot:hover::before{
            opacity: 1;
        }
/* SECTION COUNTER */
body[data-page="servicos"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;

            /* Counter theme variables (default: dark backgrounds) */
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);

            color: var(--counter-muted);
            opacity: 1;
            visibility: visible;
            transition: opacity 0.35s var(--ease-out-expo), visibility 0.35s var(--ease-out-expo);
            display: none;
        }
body[data-page="servicos"] .section-counter.is-hidden{
            opacity: 0;
            visibility: hidden;
        }
@media (min-width: 1024px){
body[data-page="servicos"] .section-counter{ display: block; }
}
body[data-page="servicos"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
        }
/* HERO */
body[data-page="servicos"] .screen-hero{
            background: var(--azul);
            position: relative;
        }
body[data-page="servicos"] .hero-bg{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%);
            overflow: hidden;
        }
body[data-page="servicos"] .hero-bg img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            mix-blend-mode: luminosity;
        }
body[data-page="servicos"] .hero-bg::after{
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17, 85, 246, 0.55) 0%, rgba(13, 68, 196, 0.7) 100%);
            pointer-events: none;
        }
body[data-page="servicos"] .hero-bg-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.2);
            border: 2px dashed rgba(255,255,255,0.1);
        }
body[data-page="servicos"] .hero-title{
            font-size: clamp(3.5rem, 8.5vw, 7rem);
            font-weight: 700;
            line-height: 0.95;
            max-width: 1000px;
        }
/* INTRO */
body[data-page="servicos"] .screen-intro{
            background: var(--preto);
        }
body[data-page="servicos"] .intro-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
body[data-page="servicos"] .intro-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.7;
        }
body[data-page="servicos"] .intro-text p + p{
            margin-top: 1.25rem;
        }
body[data-page="servicos"] .intro-image{
            width: 100%;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            border: 2px dashed rgba(255,255,255,0.1);
            overflow: hidden;
        }
body[data-page="servicos"] .intro-image:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="servicos"] .intro-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
/* SERVIÇOS */
body[data-page="servicos"] .servico-section{
            padding: 0 4rem;
        }
body[data-page="servicos"] .servico-grid{
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 8rem;
            align-items: start;
            max-width: 1600px;
            margin: 0 auto;
        }
body[data-page="servicos"] .servico-left{
            position: sticky;
            top: 150px;
        }
body[data-page="servicos"] .servico-numero{
            font-size: 12rem;
            font-weight: 300;
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }
body[data-page="servicos"] .servico-header h2{
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.1;
        }
body[data-page="servicos"] .servico-header h3{
            font-size: clamp(1.1rem, 1.8vw, 1.4rem);
            font-weight: 400;
            margin-bottom: 0;
            line-height: 1.4;
        }
body[data-page="servicos"] .servico-right{
            padding-top: 3rem;
        }
body[data-page="servicos"] .servico-content p{
            font-size: clamp(1rem, 1.3vw, 1.15rem);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
body[data-page="servicos"] .servico-lista{
            background: rgba(17, 85, 246, 0.03);
            padding: 2rem;
            border-radius: 16px;
            border-left: 3px solid var(--azul);
            margin-top: 3rem;
        }
body[data-page="servicos"] .servico-lista h4{
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--azul);
        }
body[data-page="servicos"] .servico-lista p{
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
body[data-page="servicos"] .servico-lista ul{
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.6rem;
        }
@media (min-width: 900px){
body[data-page="servicos"] .servico-lista ul{
                grid-template-columns: 1fr 1fr;
                column-gap: 2rem;
            }
}
body[data-page="servicos"] .servico-lista li{
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(0, 0, 0, 0.78);
            padding-left: 1rem;
            position: relative;
        }
body[data-page="servicos"] .servico-lista li::before{
            content: "";
            position: absolute;
            left: 0;
            top: 0.65em;
            width: 6px;
            height: 6px;
            background: var(--azul);
            border-radius: 50%;
        }
body[data-page="servicos"] .servico-frase-ancora{
            font-size: clamp(1.25rem, 1.6vw, 1.5rem);
            font-weight: 600;
            line-height: 1.35;
            margin: 2.5rem 0;
            padding-left: 1.25rem;
            border-left: 3px solid var(--verde-limao);
            color: var(--preto);
        }
body[data-page="servicos"] .servico-icon{
            display: none;
        }
/* Cores por serviço */
body[data-page="servicos"] .servico-publicidade{ 
            background: #f5f5f5;
            color: var(--preto);
        }
body[data-page="servicos"] .servico-publicidade .servico-numero{
            color: rgba(0, 0, 0, 0.08);
        }
body[data-page="servicos"] .servico-publicidade .servico-header h2{
            color: var(--azul);
        }
body[data-page="servicos"] .servico-publicidade .servico-lista{
            background: rgba(17, 85, 246, 0.05);
            border-left-color: var(--azul);
        }
body[data-page="servicos"] .servico-publicidade .servico-icon{
            border-color: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.1);
        }
body[data-page="servicos"] .servico-producao{ 
            background: #ffffff;
            color: var(--preto);
        }
body[data-page="servicos"] .servico-producao .servico-numero{
            color: rgba(0, 0, 0, 0.08);
        }
body[data-page="servicos"] .servico-producao .servico-header h2{
            color: var(--azul);
        }
body[data-page="servicos"] .servico-producao .servico-lista{
            background: rgba(17, 85, 246, 0.05);
            border-left-color: var(--azul);
        }
body[data-page="servicos"] .servico-producao .servico-icon{
            border-color: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.1);
        }
body[data-page="servicos"] .servico-eventos{ 
            background: #f5f5f5;
            color: var(--preto);
        }
body[data-page="servicos"] .servico-eventos .servico-numero{
            color: rgba(0, 0, 0, 0.08);
        }
body[data-page="servicos"] .servico-eventos .servico-header h2{
            color: var(--azul);
        }
body[data-page="servicos"] .servico-eventos .servico-lista{
            background: rgba(17, 85, 246, 0.05);
            border-left-color: var(--azul);
        }
body[data-page="servicos"] .servico-eventos .servico-icon{
            border-color: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.1);
        }
body[data-page="servicos"] .servico-politica{ 
            background: #ffffff;
            color: var(--preto);
        }
body[data-page="servicos"] .servico-politica .servico-numero{
            color: rgba(0, 0, 0, 0.08);
        }
body[data-page="servicos"] .servico-politica .servico-header h2{
            color: var(--azul);
        }
body[data-page="servicos"] .servico-politica .servico-lista{
            background: rgba(17, 85, 246, 0.05);
            border-left-color: var(--azul);
        }
body[data-page="servicos"] .servico-politica .servico-icon{
            border-color: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.1);
        }
body[data-page="servicos"] .servico-consultoria{ 
            background: #f5f5f5;
            color: var(--preto);
        }
body[data-page="servicos"] .servico-consultoria .servico-numero{
            color: rgba(0, 0, 0, 0.08);
        }
body[data-page="servicos"] .servico-consultoria .servico-header h2{
            color: var(--azul);
        }
body[data-page="servicos"] .servico-consultoria .servico-lista{
            background: rgba(17, 85, 246, 0.05);
            border-left-color: var(--azul);
        }
body[data-page="servicos"] .servico-consultoria .servico-icon{
            border-color: rgba(0, 0, 0, 0.1);
            color: rgba(0, 0, 0, 0.1);
        }
/* CONEXÃO */
body[data-page="servicos"] .screen-conexao{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="servicos"] .conexao-grid{
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 4rem;
            align-items: center;
        }
body[data-page="servicos"] .conexao-content h2{
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 2rem;
            line-height: 1.1;
        }
body[data-page="servicos"] .conexao-content p{
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
body[data-page="servicos"] .conexao-image{
            width: 100%;
            height: 500px;
            background: rgba(0,0,0,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.2);
            border: 2px dashed rgba(0,0,0,0.1);
            overflow: hidden;
        }
body[data-page="servicos"] .conexao-image:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="servicos"] .conexao-image img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
/* CTA */
body[data-page="servicos"] .screen-cta{
            background: var(--branco);
            color: var(--preto);
        }
body[data-page="servicos"] .cta-grid{
            display: grid;
            grid-template-columns: 60% 40%;
            gap: 4rem;
            align-items: center;
        }
body[data-page="servicos"] .cta-content h2{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 2rem;
            line-height: 1.1;
        }
body[data-page="servicos"] .cta-content p{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.8;
        }
body[data-page="servicos"] .cta-content .cta-trust{
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--preto);
            opacity: 0.6;
            margin-top: -2rem;
            margin-bottom: 2rem;
            letter-spacing: 0.3px;
        }
body[data-page="servicos"] .btn-cta{
            display: inline-flex;
            align-items: center;
            background: var(--verde-limao);
            color: var(--preto);
            padding: 1.5rem 4rem;
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
body[data-page="servicos"] .btn-cta:hover{
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(204, 255, 141, 0.4);
        }
body[data-page="servicos"] .cta-image{
            width: 100%;
            height: 500px;
            background: var(--cinza-claro);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.2);
            border: 2px dashed rgba(0,0,0,0.1);
            overflow: hidden;
        }
body[data-page="servicos"] .cta-image:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="servicos"] .cta-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
/* ANIMAÇÕES */
body[data-page="servicos"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
body[data-page="servicos"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
/* FOOTER */
body[data-page="servicos"] .footer{
            background: var(--preto);
            padding: 96px 24px 48px;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: normal;
            }
body[data-page="servicos"] .footer::before{
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--verde-limao) 20%, var(--verde-limao) 80%, transparent);
            opacity: 0.3;
        }
@media (min-width: 768px){
body[data-page="servicos"] .footer{ padding: 128px 64px 56px; }
}
body[data-page="servicos"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="servicos"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 56px;
            margin-bottom: 72px;
        }
@media (min-width: 768px){
body[data-page="servicos"] .footer-grid{ grid-template-columns: repeat(2, 1fr); gap: 64px; }
}
@media (min-width: 1024px){
body[data-page="servicos"] .footer-grid{ grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 72px; }
}
body[data-page="servicos"] .footer-brand{ max-width: 360px; }
body[data-page="servicos"] .footer-logo{
            margin-bottom: 24px;
        }
body[data-page="servicos"] .footer-logo-svg{
            height: 44px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(204, 255, 141, 0.1));
        }
body[data-page="servicos"] .footer-logo-svg path, body[data-page="servicos"] .footer-logo-svg rect, body[data-page="servicos"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="servicos"] .footer-tagline{
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 28px;
            font-weight: 400;
        }
body[data-page="servicos"] .footer-social{ 
            display: flex; 
            gap: 14px;
        }
body[data-page="servicos"] .footer-social a{
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
body[data-page="servicos"] .footer-social a:hover{
            background: var(--azul);
            border-color: var(--azul);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(17, 85, 246, 0.3);
        }
body[data-page="servicos"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--verde-limao);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
body[data-page="servicos"] .footer-column-title::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--verde-limao);
            opacity: 0.4;
        }
body[data-page="servicos"] .footer-links{ 
            list-style: none;
            padding: 0;
            margin: 0;
        }
body[data-page="servicos"] .footer-links li{ 
            margin-bottom: 14px;
            position: relative;
            padding-left: 16px;
        }
body[data-page="servicos"] .footer-links li::before{
            content: '→';
            position: absolute;
            left: 0;
            color: var(--verde-limao);
            opacity: 0;
            transition: all 0.3s ease;
        }
body[data-page="servicos"] .footer-links li:hover::before{
            opacity: 0.6;
        }
body[data-page="servicos"] .footer-links a{
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }
body[data-page="servicos"] .footer-links a:hover{ 
            color: var(--verde-limao);
            transform: translateX(4px);
        }
body[data-page="servicos"] .footer-contact-item{
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            transition: all 0.3s ease;
        }
body[data-page="servicos"] .footer-contact-item:hover{
            color: rgba(255, 255, 255, 0.85);
        }
body[data-page="servicos"] .footer-contact-item a{
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="servicos"] .footer-contact-item a:hover{
            color: var(--verde-limao);
        }
body[data-page="servicos"] .footer-contact-icon{ 
            flex-shrink: 0; 
            color: var(--azul);
            margin-top: 2px;
        }
body[data-page="servicos"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 36px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="servicos"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="servicos"] .footer-copyright{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.5;
        }
body[data-page="servicos"] .footer-legal{ 
            display: flex; 
            gap: 28px;
        }
body[data-page="servicos"] .footer-legal a{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
body[data-page="servicos"] .footer-legal a::after{
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--verde-limao);
            transition: width 0.3s ease;
        }
body[data-page="servicos"] .footer-legal a:hover{
            color: var(--verde-limao);
        }
body[data-page="servicos"] .footer-legal a:hover::after{
            width: 100%;
        }
body[data-page="servicos"] .footer-legal a:hover{ color: var(--verde-limao); }
/* RESPONSIVO */
@media (max-width: 1024px){
body[data-page="servicos"] .header{
                padding: 1.5rem 2rem;
            }
body[data-page="servicos"] .screen-content{
                padding: 0 2rem;
            }
body[data-page="servicos"] .intro-grid, body[data-page="servicos"] .servico-grid, body[data-page="servicos"] .conexao-grid, body[data-page="servicos"] .cta-grid{
                grid-template-columns: 1fr;
                gap: 3rem;
            }
body[data-page="servicos"] .servico-icon, body[data-page="servicos"] .intro-image, body[data-page="servicos"] .conexao-image, body[data-page="servicos"] .cta-image{
                height: 300px;
            }
body[data-page="servicos"] .nav-menu{
                display: none;
            }
body[data-page="servicos"] .scroll-progress, body[data-page="servicos"] .section-counter{
                display: none;
            }
}
@media (max-width: 640px){
body[data-page="servicos"] .hero-title{
                font-size: clamp(2.5rem, 8vw, 4rem);
            }
body[data-page="servicos"] .servico-numero{
                font-size: 4rem;
            }
}
/* === Padrão Menu (padronizado com a Home) === */
body[data-page="servicos"]{
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

/* HEADER */
body[data-page="servicos"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="servicos"] .header{ padding: 32px 48px; }
}

/* Logo */
body[data-page="servicos"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
body[data-page="servicos"] .logo:hover{ opacity: 0.8; }
body[data-page="servicos"] .logo-svg{
            height: 32px;
            width: auto;
        }
@media (min-width: 768px){
body[data-page="servicos"] .logo-svg{ height: 36px; }
}

/* Menu desktop */
body[data-page="servicos"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }
@media (min-width: 1024px){
body[data-page="servicos"] .nav-menu{ display: flex; }
}
body[data-page="servicos"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            opacity: 1;
            transition: color 0.4s ease;
        }
body[data-page="servicos"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="servicos"] .nav-link:hover{
            color: var(--verde-limao);
        }
body[data-page="servicos"] .nav-link:hover::after{ width: 100%; }

/* Cores do menu por seção */
body[data-page="servicos"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="servicos"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="servicos"] .header.logo-dark .nav-link{ color: var(--preto) !important; }

/* Menu Toggle */
body[data-page="servicos"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="servicos"] .menu-toggle{ display: none; }
}
body[data-page="servicos"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
            transform-origin: center;
        }
body[data-page="servicos"] .menu-toggle.active span:nth-child(1){
            transform: translateY(8px) rotate(45deg);
        }
body[data-page="servicos"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="servicos"] .menu-toggle.active span:nth-child(3){
            transform: translateY(-8px) rotate(-45deg);
        }
/* Cores do hamburger por seção */
body[data-page="servicos"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="servicos"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="servicos"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }

/* Mobile Menu */
body[data-page="servicos"] .mobile-menu{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--preto);
            z-index: 999;
            padding: 120px 24px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="servicos"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="servicos"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="servicos"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="servicos"] .mobile-menu-link:hover{ color: var(--verde-limao); }

/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="servicos"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="servicos"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="servicos"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="servicos"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="servicos"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="servicos"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="servicos"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="servicos"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="servicos"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="servicos"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="servicos"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="servicos"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="servicos"] body .footer-brand{ max-width: 320px !important; }
body[data-page="servicos"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="servicos"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="servicos"] body .footer-logo-svg path, body[data-page="servicos"] body .footer-logo-svg rect, body[data-page="servicos"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="servicos"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="servicos"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="servicos"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="servicos"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="servicos"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="servicos"] body .footer-links{ list-style: none !important; }
body[data-page="servicos"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="servicos"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="servicos"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="servicos"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="servicos"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="servicos"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="servicos"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="servicos"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="servicos"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="servicos"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="servicos"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: processo.html ===== */
body[data-page="processo"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="processo"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        }
body[data-page="processo"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
        }
body[data-page="processo"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
body[data-page="processo"] .scroll-container::-webkit-scrollbar{ width: 0; }
body[data-page="processo"] .screen{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            padding: 0 4rem;
            position: relative;
        }
body[data-page="processo"] .screen-content{
            width: 100%;
            max-width: 1400px;
        }
body[data-page="processo"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="processo"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="processo"] .logo-svg path, body[data-page="processo"] .logo-svg rect, body[data-page="processo"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
body[data-page="processo"] .header.logo-white .logo-svg path, body[data-page="processo"] .header.logo-white .logo-svg rect, body[data-page="processo"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="processo"] .header.logo-dark .logo-svg path, body[data-page="processo"] .header.logo-dark .logo-svg rect, body[data-page="processo"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
body[data-page="processo"] .header.logo-green .logo-svg path, body[data-page="processo"] .header.logo-green .logo-svg rect, body[data-page="processo"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="processo"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="processo"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: opacity 0.3s;
            color: inherit;
        }
body[data-page="processo"] .nav-link:hover{ opacity: 0.7; }
body[data-page="processo"] .scroll-progress{
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
body[data-page="processo"] .progress-dot{
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
body[data-page="processo"] .progress-dot.active{
            background: var(--verde-limao);
            transform: scale(1.3);
        }
body[data-page="processo"] .section-counter{
            position: fixed;
            left: 2rem;
            bottom: 2rem;
            z-index: 999;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
        }
body[data-page="processo"] .section-counter .current{
            color: var(--verde-limao);
            font-size: 1.2rem;
        }
body[data-page="processo"] .screen-hero{
            background: var(--preto);
            position: relative;
            overflow: hidden;
        }
body[data-page="processo"] .hero-bg{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--preto);
            overflow: hidden;
            z-index: 0;
        }
body[data-page="processo"] .hero-bg img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            mix-blend-mode: luminosity;
        }
body[data-page="processo"] .hero-bg::after{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.75) 100%);
            pointer-events: none;
        }
body[data-page="processo"] .screen-hero .screen-content{
            position: relative;
            z-index: 1;
        }
body[data-page="processo"] .hero-title{
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.1;
        }
body[data-page="processo"] .screen-subtitle{ 
            background: var(--preto);
            background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23181818" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="%231155F6" opacity="0.1"/></svg>');
        }
body[data-page="processo"] .subtitle-text{
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 1.3;
            font-weight: 400;
            max-width: 900px;
        }
body[data-page="processo"] .placeholder-bg{
            font-size: 0.9rem;
            color: rgba(255,255,255,0.3);
            text-align: center;
            padding: 2rem;
            border: 2px dashed rgba(255,255,255,0.2);
            border-radius: 12px;
            margin-top: 3rem;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
body[data-page="processo"] .screen-cases{ 
            background: var(--preto);
            min-height: auto;
            padding: 8rem 4rem;
        }
body[data-page="processo"] .intro-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 900px;
        }
body[data-page="processo"] .cases-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }
body[data-page="processo"] .case-card{
            position: relative;
            aspect-ratio: 4/3;
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
body[data-page="processo"] .case-card:hover{
            transform: translateY(-8px);
        }
body[data-page="processo"] .case-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.03);
            border: 2px dashed rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.3);
            font-size: 0.9rem;
        }
body[data-page="processo"] .case-overlay{
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
body[data-page="processo"] .case-card:hover .case-overlay{
            opacity: 1;
        }
body[data-page="processo"] .case-overlay-text{
            color: var(--verde-limao);
            font-size: 1.2rem;
            font-weight: 600;
        }
body[data-page="processo"] .case-title{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--branco);
            font-size: 1.5rem;
            font-weight: 600;
        }
body[data-page="processo"] .screen-cta{ background: var(--verde-limao); color: var(--preto); }
body[data-page="processo"] .cta-content{ 
            text-align: left; 
            max-width: 900px;
        }
body[data-page="processo"] .cta-title{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
body[data-page="processo"] .cta-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
body[data-page="processo"] .cta-content .cta-trust{
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--preto);
            opacity: 0.7;
            margin-bottom: 2.5rem;
            letter-spacing: 0.3px;
        }
body[data-page="processo"] .btn{
            transition: all 0.3s;
            background: var(--preto);
            color: var(--verde-limao);
        }
body[data-page="processo"] .btn:hover{ 
            background: var(--azul);
            color: var(--branco);
            transform: translateY(-2px); 
        }
body[data-page="processo"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="processo"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="processo"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="processo"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="processo"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="processo"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="processo"] .footer-brand{ max-width: 320px; }
body[data-page="processo"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="processo"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="processo"] .footer-logo-svg path, body[data-page="processo"] .footer-logo-svg rect, body[data-page="processo"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="processo"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="processo"] .footer-social{ display: flex; gap: 12px; }
body[data-page="processo"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="processo"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="processo"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="processo"] .footer-links{ list-style: none; }
body[data-page="processo"] .footer-links li{ margin-bottom: 12px; }
body[data-page="processo"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="processo"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="processo"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="processo"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="processo"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="processo"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="processo"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="processo"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="processo"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="processo"] .footer-legal a:hover{ color: var(--verde-limao); }
@media (max-width: 1024px){
body[data-page="processo"] .cases-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
body[data-page="processo"] .screen{ padding: 0 2rem; }
body[data-page="processo"] .screen-cases{ padding: 4rem 2rem; }
body[data-page="processo"] .header{ padding: 1.5rem 2rem; }
body[data-page="processo"] .nav, body[data-page="processo"] .scroll-progress, body[data-page="processo"] .section-counter{ display: none; }
body[data-page="processo"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="processo"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
}
/* ===== Overrides (Home: header/menu/mobile + placeholders de fundo) ===== */
body[data-page="processo"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="processo"] .header{ padding: 32px 48px; }
}
body[data-page="processo"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="processo"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="processo"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="processo"] .logo-svg path, body[data-page="processo"] .logo-svg rect, body[data-page="processo"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="processo"] .header.logo-white .logo-svg path, body[data-page="processo"] .header.logo-white .logo-svg rect, body[data-page="processo"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="processo"] .header.logo-green .logo-svg path, body[data-page="processo"] .header.logo-green .logo-svg rect, body[data-page="processo"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="processo"] .header.logo-dark .logo-svg path, body[data-page="processo"] .header.logo-dark .logo-svg rect, body[data-page="processo"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="processo"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="processo"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="processo"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="processo"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="processo"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="processo"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="processo"] .logo-svg{ height: 36px; }
}
body[data-page="processo"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="processo"] .nav-menu{ display: flex; }
}
body[data-page="processo"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="processo"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="processo"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="processo"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="processo"] .menu-toggle{ display: none; }
}
body[data-page="processo"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="processo"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="processo"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="processo"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="processo"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="processo"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="processo"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="processo"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="processo"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
body[data-page="processo"].no-scroll{ overflow: hidden; }
body[data-page="processo"] .screen{ overflow: hidden; }
body[data-page="processo"] .screen-content{ position: relative; z-index: 2; }
/* Placeholder de fundo (seções 1 e 2) */
body[data-page="processo"] .bg-placeholder{
            position: absolute;
            left: 50%;
            top: 62%;
            transform: translate(-50%, -50%);
            width: min(1000px, 84vw);
            height: min(360px, 42vh);
            border: 2px dashed rgba(255, 255, 255, 0.16);
            border-radius: 16px;
            color: rgba(255, 255, 255, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 24px;
            pointer-events: none;
            z-index: 1;
            backdrop-filter: blur(0px);
        }
@media (max-width: 768px){
body[data-page="processo"] .bg-placeholder{
                top: 66%;
                width: min(860px, 86vw);
                height: min(300px, 36vh);
                padding: 18px;
            }
}
/* ===== Shared styles from Home (for consistency) ===== */
/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
body[data-page="processo"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-limao: #CCFF8D;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --preto: #181818;
            --branco: #FFFFFF;
            
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
body[data-page="processo"] *, body[data-page="processo"] *::before, body[data-page="processo"] *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="processo"]{
            font-size: 16px;
        }
body[data-page="processo"]{
            font-family: var(--font-main);
            background: var(--preto);
            color: var(--branco);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
/* Hide scrollbar */
body[data-page="processo"]::-webkit-scrollbar{ width: 0; }
body[data-page="processo"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* ============================================
           SCROLL CONTAINER - SNAP
        ============================================ */
body[data-page="processo"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="processo"] .scroll-container{
                scroll-snap-type: y proximity;
            }
}
/* ============================================
           FULL SCREEN SECTIONS
        ============================================ */
body[data-page="processo"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="processo"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="processo"] .screen-content{ padding: clamp(40px, 6vw, 64px); }
}
@media (min-width: 1024px){
body[data-page="processo"] .screen-content{ padding: 64px; }
}
/* ============================================
           HEADER
        ============================================ */
body[data-page="processo"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="processo"] .header{ padding: 32px 48px; }
}
body[data-page="processo"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="processo"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="processo"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="processo"] .logo-svg path, body[data-page="processo"] .logo-svg rect, body[data-page="processo"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="processo"] .header.logo-white .logo-svg path, body[data-page="processo"] .header.logo-white .logo-svg rect, body[data-page="processo"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="processo"] .header.logo-green .logo-svg path, body[data-page="processo"] .header.logo-green .logo-svg rect, body[data-page="processo"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="processo"] .header.logo-dark .logo-svg path, body[data-page="processo"] .header.logo-dark .logo-svg rect, body[data-page="processo"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="processo"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="processo"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="processo"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="processo"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="processo"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="processo"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="processo"] .logo-svg{ height: 36px; }
}
body[data-page="processo"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="processo"] .nav-menu{ display: flex; }
}
body[data-page="processo"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="processo"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="processo"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="processo"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="processo"] .menu-toggle{ display: none; }
}
body[data-page="processo"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="processo"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="processo"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="processo"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="processo"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="processo"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="processo"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="processo"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="processo"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="processo"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="processo"] .scroll-progress{ display: flex; }
}
body[data-page="processo"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="processo"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="processo"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="processo"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="processo"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="processo"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="processo"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="processo"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            display: none;
        }
@media (min-width: 1024px){
body[data-page="processo"] .section-counter{ display: block; }
}
body[data-page="processo"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--branco);
            display: block;
            line-height: 1;
        }
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="processo"] .text-hero{
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="processo"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="processo"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="processo"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
/* ============================================
           ANIMATION CLASSES
        ============================================ */
body[data-page="processo"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="processo"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="processo"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="processo"] .slide-left.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="processo"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="processo"] .slide-right.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="processo"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="processo"] .scale-in.animate{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="processo"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="processo"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="processo"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="processo"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="processo"] .delay-5{ transition-delay: 0.5s !important; }
body[data-page="processo"] .delay-6{ transition-delay: 0.6s !important; }
/* ============================================
           SCREEN 1: GREETING
        ============================================ */
body[data-page="processo"] .screen-greeting{
            background: var(--azul);
        }
/* Área para vídeo/gif da Calanga */
body[data-page="processo"] .greeting-video-container{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
            height: 70%;
            overflow: visible;
            pointer-events: none;
            z-index: 1;
        }
@media (min-width: 768px){
body[data-page="processo"] .greeting-video-container{
                width: 35%;
                height: 75%;
            }
}
@media (min-width: 1024px){
body[data-page="processo"] .greeting-video-container{
                width: 30%;
                height: 80%;
            }
}
body[data-page="processo"] .greeting-video-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.2);
            text-align: center;
            padding: 24px;
            border: 2px dashed rgba(255,255,255,0.1);
            border-radius: 24px;
            margin: 24px;
            box-sizing: border-box;
        }
/* Quando tiver o vídeo/gif real */
body[data-page="processo"] .greeting-video-container video, body[data-page="processo"] .greeting-video-container img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="processo"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="processo"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="processo"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
body[data-page="processo"] .loader-text{
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }
body[data-page="processo"] .loader-bar{
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 2px;
            overflow: hidden;
        }
body[data-page="processo"] .loader-bar-fill{
            width: 100%;
            height: 100%;
            background: var(--verde-limao);
            transform: translateX(-100%);
            animation: loading 1s ease-in-out infinite;
        }
@keyframes loading{
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="processo"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="processo"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="processo"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="processo"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="processo"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="processo"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="processo"] body .footer-brand{ max-width: 320px !important; }
body[data-page="processo"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="processo"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="processo"] body .footer-logo-svg path, body[data-page="processo"] body .footer-logo-svg rect, body[data-page="processo"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="processo"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="processo"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="processo"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="processo"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="processo"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="processo"] body .footer-links{ list-style: none !important; }
body[data-page="processo"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="processo"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="processo"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="processo"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="processo"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="processo"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="processo"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="processo"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="processo"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="processo"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="processo"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }
/* Processo: overrides e componentes (bullets + contador) */
body[data-page="processo"][data-page="processo"] body{ background: var(--preto); color: var(--branco); line-height: 1.5; overflow-x: hidden; }
body[data-page="processo"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="processo"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
        }
body[data-page="processo"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
body[data-page="processo"] .scroll-container::-webkit-scrollbar{ width: 0; }
body[data-page="processo"] .screen{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            padding: 0 4rem;
            position: relative;
        }
body[data-page="processo"] .screen-content{
            width: 100%;
            max-width: 1400px;
        }
/* SCROLL PROGRESS (padrão Home) */
body[data-page="processo"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;

            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);
        }
body[data-page="processo"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: var(--dot-bg);
            cursor: pointer;
            transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
                        background-color 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
                        box-shadow 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
        }
body[data-page="processo"] .scroll-progress-dot:hover{ background: var(--dot-hover); }
body[data-page="processo"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.35);
            box-shadow: 0 0 0 2px var(--dot-ring);
        }
/* Scroll progress dot themes (iguais ao Home) */
body[data-page="processo"] .scroll-progress.dots-on-light{ /* default - works on dark backgrounds */ }
body[data-page="processo"] .scroll-progress.dots-on-dark{
            --dot-bg: rgba(0, 0, 0, 0.2);
            --dot-hover: rgba(0, 0, 0, 0.5);
        }
body[data-page="processo"] .scroll-progress.dots-on-green{
            --dot-bg: rgba(0, 0, 0, 0.25);
            --dot-hover: rgba(0, 0, 0, 0.55);
            --dot-active: rgba(0, 0, 0, 0.9);
            --dot-ring: rgba(255, 255, 255, 0.8);
        }
/* Section Counter (padrão Home) */
body[data-page="processo"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 999;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;

            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
            color: var(--counter-muted);
            transition: opacity 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
                        visibility 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
                        transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
        }
body[data-page="processo"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
            transition: color 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
        }
body[data-page="processo"] .section-counter.is-hidden{
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
        }
body[data-page="processo"] .section-counter.counter-on-light, body[data-page="processo"] .section-counter.counter-on-green{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="processo"] .section-counter.counter-on-dark{
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
        }
/* SEÇÕES */
body[data-page="processo"] .screen-hero{
            background: var(--preto);
            position: relative;
            overflow: hidden;
        }
body[data-page="processo"] .hero-title{
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.1;
        }
body[data-page="processo"] .screen-intro{ background: var(--cinza-claro); color: var(--preto); }
body[data-page="processo"] .intro-subtitle{
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            margin-bottom: 2rem;
            line-height: 1.3;
            max-width: 700px;
        }
body[data-page="processo"] .intro-text{
            font-size: clamp(1.15rem, 1.8vw, 1.3rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 900px;
        }
/* ETAPAS */
body[data-page="processo"] .etapa{
            display: grid;
            grid-template-columns: 70fr 30fr;
            gap: 6rem;
            align-items: center;
        }
body[data-page="processo"] .etapa.reverse{
            direction: rtl;
        }
body[data-page="processo"] .etapa.reverse > *{
            direction: ltr;
        }
body[data-page="processo"] .etapa-numero{
            font-size: 6rem;
            font-weight: 700;
            color: var(--verde-limao);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.3;
        }
body[data-page="processo"] .etapa-titulo{
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
body[data-page="processo"] .etapa-subtitulo{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 500;
            margin: 0 0 2rem;
            opacity: 0.85;
            line-height: 1.4;
        }
body[data-page="processo"] .etapa-texto{
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
body[data-page="processo"] .etapa-box{
            background: rgba(204, 255, 141, 0.1);
            border-left: 4px solid var(--verde-limao);
            padding: 2rem;
            margin-top: 2rem;
        }
body[data-page="processo"] .etapa-box h4{
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            color: var(--verde-limao);
        }
body[data-page="processo"] .etapa-box ul{
            list-style: none;
            padding: 0;
        }
body[data-page="processo"] .etapa-box li{
            padding-left: 1.5rem;
            margin-bottom: 0.7rem;
            position: relative;
        }
body[data-page="processo"] .etapa-box li:before{
            content: "→";
            position: absolute;
            left: 0;
            color: var(--verde-limao);
        }
body[data-page="processo"] .etapa-visual{
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
              color: rgba(255,255,255,0.3);
            font-size: 0.9rem;
        }
/* FUNDOS ALTERNADOS */
body[data-page="processo"] .screen-etapa1{ background: var(--preto); color: var(--branco); }
body[data-page="processo"] .screen-etapa2{ background: var(--cinza-claro); color: var(--preto); }
body[data-page="processo"] .screen-etapa2 .etapa-box{ background: rgba(17, 85, 246, 0.05); border-color: var(--azul); }
body[data-page="processo"] .screen-etapa2 .etapa-box h4{ color: var(--azul); }
body[data-page="processo"] .screen-etapa2 .etapa-box li:before{ color: var(--azul); }
body[data-page="processo"] .screen-etapa2 .etapa-numero{ color: var(--azul); }
body[data-page="processo"] .screen-etapa3{ background: var(--preto); color: var(--branco); }
body[data-page="processo"] .screen-etapa4{ background: var(--cinza-claro); color: var(--preto); }
body[data-page="processo"] .screen-etapa4 .etapa-box{ background: rgba(17, 85, 246, 0.05); border-color: var(--azul); }
body[data-page="processo"] .screen-etapa4 .etapa-box h4{ color: var(--azul); }
body[data-page="processo"] .screen-etapa4 .etapa-box li:before{ color: var(--azul); }
body[data-page="processo"] .screen-etapa4 .etapa-numero{ color: var(--azul); }
body[data-page="processo"] .screen-etapa5{ background: var(--preto); color: var(--branco); }
body[data-page="processo"] .screen-cta{ background: var(--verde-limao); color: var(--preto); }
body[data-page="processo"] .cta-content{ 
            text-align: left; 
            max-width: 900px; 
        }
body[data-page="processo"] .cta-title{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
body[data-page="processo"] .cta-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
body[data-page="processo"] .cta-content .cta-trust{
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--preto);
            opacity: 0.7;
            margin-bottom: 2.5rem;
            letter-spacing: 0.3px;
        }
body[data-page="processo"] .btn{
            transition: all 0.3s;
            background: var(--preto);
            color: var(--verde-limao);
        }
body[data-page="processo"] .btn:hover{ 
            background: var(--azul);
            color: var(--branco);
            transform: translateY(-2px); 
        }


/* ===== Scoped: sobre.html ===== */
/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
body[data-page="sobre"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-limao: #CCFF8D;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --preto: #181818;
            --branco: #FFFFFF;
            
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }
body[data-page="sobre"] *, body[data-page="sobre"] *::before, body[data-page="sobre"] *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="sobre"]{ font-size: 16px; }
body[data-page="sobre"]{
            font-family: var(--font-main);
            background: var(--preto);
            color: var(--branco);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
body[data-page="sobre"]::-webkit-scrollbar{ width: 0; }
body[data-page="sobre"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* ============================================
           SCROLL CONTAINER
        ============================================ */
body[data-page="sobre"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="sobre"] .scroll-container{ scroll-snap-type: y proximity; }
}
/* ============================================
           SCREENS
        ============================================ */
body[data-page="sobre"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="sobre"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="sobre"] .screen-content{ padding: clamp(40px, 6vw, 64px); }
}
@media (min-width: 1024px){
body[data-page="sobre"] .screen-content{ padding: 64px; }
}
/* ============================================
           HEADER
        ============================================ */
body[data-page="sobre"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="sobre"] .header{ padding: 32px 48px; }
}
body[data-page="sobre"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="sobre"] .logo:hover{ opacity: 0.8; }
body[data-page="sobre"] .logo-svg{ height: 32px; width: auto; }
body[data-page="sobre"] .logo-svg path, body[data-page="sobre"] .logo-svg rect, body[data-page="sobre"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
body[data-page="sobre"] .header.logo-white .logo-svg path, body[data-page="sobre"] .header.logo-white .logo-svg rect, body[data-page="sobre"] .header.logo-white .logo-svg polygon{ fill: var(--branco) !important; }
body[data-page="sobre"] .header.logo-green .logo-svg path, body[data-page="sobre"] .header.logo-green .logo-svg rect, body[data-page="sobre"] .header.logo-green .logo-svg polygon{ fill: var(--verde-limao) !important; }
body[data-page="sobre"] .header.logo-dark .logo-svg path, body[data-page="sobre"] .header.logo-dark .logo-svg rect, body[data-page="sobre"] .header.logo-dark .logo-svg polygon{ fill: var(--preto) !important; }
body[data-page="sobre"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="sobre"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="sobre"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
body[data-page="sobre"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="sobre"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="sobre"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="sobre"] .logo-svg{ height: 36px; }
}
body[data-page="sobre"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="sobre"] .nav-menu{ display: flex; }
}
body[data-page="sobre"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="sobre"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="sobre"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="sobre"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="sobre"] .menu-toggle{ display: none; }
}
body[data-page="sobre"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="sobre"] .menu-toggle.active span:nth-child(1){ transform: rotate(45deg) translate(5px, 6px); }
body[data-page="sobre"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="sobre"] .menu-toggle.active span:nth-child(3){ transform: rotate(-45deg) translate(5px, -6px); }
/* Mobile Menu */
body[data-page="sobre"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="sobre"] .mobile-menu.active{ opacity: 1; visibility: visible; }
body[data-page="sobre"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link{ opacity: 1; transform: translateY(0); }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="sobre"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="sobre"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="sobre"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="sobre"] .scroll-progress{ display: flex; }
}
body[data-page="sobre"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="sobre"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="sobre"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="sobre"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="sobre"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="sobre"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="sobre"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="sobre"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            display: none;

            /* Theme variables (default: works on dark/blue backgrounds) */
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
            color: var(--counter-muted);
            transition: color 0.4s var(--ease-out-expo);
        }
@media (min-width: 1024px){
body[data-page="sobre"] .section-counter{ display: block; }
}
body[data-page="sobre"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
            transition: color 0.4s var(--ease-out-expo);
        }
/* Section counter themes (match background for contrast) */
body[data-page="sobre"] .section-counter.counter-on-light{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="sobre"] .section-counter.counter-on-green{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="sobre"] .section-counter.counter-on-dark-green{
            --counter-muted: rgba(204, 255, 141, 0.45);
            --counter-current: var(--verde-limao);
        }
body[data-page="sobre"] .section-counter.counter-on-dark{
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
        }
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="sobre"] .text-hero{
            font-size: clamp(3rem, 12vw, 10rem);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="sobre"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="sobre"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="sobre"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
body[data-page="sobre"] .text-highlight{
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 600;
            line-height: 1.4;
        }
/* ============================================
           ANIMATIONS
        ============================================ */
body[data-page="sobre"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="sobre"] .fade-up.animate{ opacity: 1; transform: translateY(0); }
body[data-page="sobre"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="sobre"] .slide-left.animate{ opacity: 1; transform: translateX(0); }
body[data-page="sobre"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="sobre"] .slide-right.animate{ opacity: 1; transform: translateX(0); }
body[data-page="sobre"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="sobre"] .scale-in.animate{ opacity: 1; transform: scale(1); }
body[data-page="sobre"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="sobre"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="sobre"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="sobre"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="sobre"] .delay-5{ transition-delay: 0.5s !important; }
/* ============================================
           BUTTONS
        ============================================ */
body[data-page="sobre"] .btn{
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="sobre"] .btn-verde{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="sobre"] .btn-verde:hover{
            background: var(--verde-dark);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(204, 255, 141, 0.3);
        }
body[data-page="sobre"] .btn-preto{
            background: var(--preto);
            color: var(--branco);
        }
body[data-page="sobre"] .btn-preto:hover{
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
body[data-page="sobre"] .btn-outline-dark{
            background: transparent;
            color: var(--preto);
            border: 2px solid rgba(0, 0, 0, 0.2);
        }
body[data-page="sobre"] .btn-outline-dark:hover{
            border-color: var(--preto);
            background: rgba(0, 0, 0, 0.05);
        }
/* ============================================
           PLACEHOLDERS
        ============================================ */
body[data-page="sobre"] .placeholder-bg{
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
body[data-page="sobre"] .placeholder-box{
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.875rem;
            background: rgba(0, 0, 0, 0.2);
        }
body[data-page="sobre"] .placeholder-box.dark{
            border-color: rgba(0, 0, 0, 0.15);
            color: rgba(0, 0, 0, 0.3);
            background: rgba(0, 0, 0, 0.05);
        }
/* ============================================
           SCREEN 1: HERO
        ============================================ */
body[data-page="sobre"] .screen-hero{
            background-color: #1155F6;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
        }
body[data-page="sobre"] .hero-title{
            color: var(--branco);
            max-width: 100%;
        }
/* ============================================
           SCREEN 2: SUBTÍTULO
        ============================================ */
body[data-page="sobre"] .screen-subtitle{
            background: var(--azul);
        }
body[data-page="sobre"] .screen-subtitle .placeholder-bg{
            background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
        }
body[data-page="sobre"] .subtitle-text{
            color: var(--branco);
            font-size: clamp(1.75rem, 4.5vw, 3.75rem);
            line-height: 1.15;
        }
body[data-page="sobre"] .subtitle-text span{
            display: block;
            margin-bottom: 8px;
            white-space: nowrap;
        }
@media (max-width: 600px){
body[data-page="sobre"] .subtitle-text span{
                white-space: normal;
            }
}
body[data-page="sobre"] .subtitle-layout{
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
@media (min-width: 900px){
body[data-page="sobre"] .subtitle-layout{
                grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
                gap: 48px;
            }
}
body[data-page="sobre"] .subtitle-calanga{
            display: flex;
            justify-content: center;
        }
@media (min-width: 900px){
body[data-page="sobre"] .subtitle-calanga{
                justify-content: flex-end;
            }
}
body[data-page="sobre"] .subtitle-calanga img{
            width: 100%;
            max-width: 280px;
            height: auto;
            display: block;
        }
@media (min-width: 1200px){
body[data-page="sobre"] .subtitle-calanga img{
                max-width: 340px;
            }
}
/* ============================================
           SCREEN 3: RAÍZES
        ============================================ */
body[data-page="sobre"] .screen-raizes{
            background: var(--preto);
        }
body[data-page="sobre"] .raizes-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }
@media (min-width: 1024px){
body[data-page="sobre"] .raizes-grid{
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }
}
body[data-page="sobre"] .raizes-title{
            grid-column: 1 / -1;
            color: var(--verde-limao);
            margin-bottom: 32px;
        }
body[data-page="sobre"] .raizes-content p{
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
        }
body[data-page="sobre"] .raizes-image{
            aspect-ratio: 4/3;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(17, 85, 246, 0.3) 0%, rgba(204, 255, 141, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255, 255, 255, 0.15);
            overflow: hidden;
        }
body[data-page="sobre"] .raizes-image:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="sobre"] .image-placeholder{
            text-align: center;
            padding: 24px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.875rem;
            width: 100%;
            height: 100%;
        }
body[data-page="sobre"] .image-placeholder:has(img){
            padding: 0;
        }
body[data-page="sobre"] .image-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
/* ============================================
           SCREEN 4: CALANGA
        ============================================ */
body[data-page="sobre"] .screen-calanga{
            background: var(--verde-limao);
            color: var(--preto);
            min-height: 100vh;
            padding: 100px 0 60px;
        }
body[data-page="sobre"] .calanga-wrapper{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
@media (min-width: 768px){
body[data-page="sobre"] .calanga-wrapper{ padding: 0 48px; }
}
@media (min-width: 1024px){
body[data-page="sobre"] .calanga-wrapper{ padding: 0 64px; }
}
body[data-page="sobre"] .calanga-title{
            margin-bottom: 48px;
        }
body[data-page="sobre"] .calanga-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 64px;
        }
@media (min-width: 1024px){
body[data-page="sobre"] .calanga-grid{
                grid-template-columns: 60% 40%;
                gap: 48px;
            }
}
body[data-page="sobre"] .calanga-text p{
            margin-bottom: 20px;
            opacity: 0.9;
        }
body[data-page="sobre"] .calanga-video{
            aspect-ratio: 16/10;
            border-radius: 20px;
            background: rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
body[data-page="sobre"] .calanga-video:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="sobre"] .calanga-video-placeholder{
            text-align: center;
            padding: 24px;
            color: rgba(0, 0, 0, 0.4);
            font-size: 0.875rem;
            width: 100%;
            height: 100%;
        }
body[data-page="sobre"] .calanga-video-placeholder:has(img){
            padding: 0;
        }
body[data-page="sobre"] .calanga-video-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
body[data-page="sobre"] .calanga-columns{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }
@media (min-width: 768px){
body[data-page="sobre"] .calanga-columns{
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
}
body[data-page="sobre"] .calanga-column{
            text-align: center;
        }
body[data-page="sobre"] .calanga-column-illustration{
            width: 100%;
            aspect-ratio: 1;
            max-width: 200px;
            margin: 0 auto 20px;
            border-radius: 20px;
            background: rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
body[data-page="sobre"] .calanga-column-illustration:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="sobre"] .calanga-column-illustration img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 16px;
        }
body[data-page="sobre"] .calanga-column-placeholder{
            color: rgba(0, 0, 0, 0.3);
            font-size: 0.75rem;
            text-align: center;
        }
body[data-page="sobre"] .calanga-column h3{
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
body[data-page="sobre"] .calanga-column p{
            font-size: 0.9375rem;
            opacity: 0.8;
            line-height: 1.6;
        }
body[data-page="sobre"] .calanga-footer{
            max-width: 100%;
            padding-top: 32px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
/* ============================================
           SCREEN 5: METODOLOGIA
        ============================================ */
body[data-page="sobre"] .screen-metodologia{
            background: var(--branco);
            color: var(--preto);
        }
body[data-page="sobre"] .metodologia-content{
            max-width: 100%;
        }
body[data-page="sobre"] .metodologia-content h2{
            margin-bottom: 32px;
        }
body[data-page="sobre"] .metodologia-content > p{
            color: var(--cinza-medio);
            margin-bottom: 20px;
            max-width: 100%;
        }
body[data-page="sobre"] .metodologia-blocks{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 48px;
        }
@media (min-width: 768px){
body[data-page="sobre"] .metodologia-blocks{
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
}
body[data-page="sobre"] .metodo-block{
            padding: 40px 32px;
            background: #f8f9fa;
            border-radius: 20px;
            text-align: left;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="sobre"] .metodo-block:hover{
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
body[data-page="sobre"] .metodo-svg-placeholder{
            width: 170px;
            height: 170px;
            margin: 0 auto 28px;
            border-radius: 16px;
            background: rgba(17, 85, 246, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(17, 85, 246, 0.2);
            overflow: hidden;
        }
body[data-page="sobre"] .metodo-svg-placeholder:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="sobre"] .metodo-svg-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="sobre"] .metodo-svg-placeholder span{
            font-size: 0.625rem;
            color: var(--azul);
            opacity: 0.6;
        }
body[data-page="sobre"] .metodo-title{
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
body[data-page="sobre"] .metodo-text{
            font-size: 0.9375rem;
            color: var(--cinza-medio);
            line-height: 1.6;
        }
/* ============================================
           SCREEN 6: ESTÚDIO
        ============================================ */
body[data-page="sobre"] .screen-estudio{
            background: var(--preto);
        }
body[data-page="sobre"] .estudio-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }
@media (min-width: 1024px){
body[data-page="sobre"] .estudio-grid{
                grid-template-columns: 1fr 1.2fr;
                gap: 64px;
            }
}
body[data-page="sobre"] .estudio-content h2{
            color: var(--branco);
            margin-bottom: 24px;
        }
body[data-page="sobre"] .estudio-content p{
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }
body[data-page="sobre"] .estudio-carousel{
            position: relative;
            width: 100%;
        }
body[data-page="sobre"] .carousel-container{
            position: relative;
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 20px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
        }
body[data-page="sobre"] .carousel-slide{
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
body[data-page="sobre"] .carousel-slide.active{
            opacity: 1;
            pointer-events: auto;
        }
body[data-page="sobre"] .carousel-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 16px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            overflow: hidden;
        }
body[data-page="sobre"] .carousel-placeholder:has(img){
            padding: 0;
        }
body[data-page="sobre"] .carousel-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
body[data-page="sobre"] .carousel-nav{
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }
body[data-page="sobre"] .carousel-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }
body[data-page="sobre"] .carousel-dot.active{
            background: var(--verde-limao);
            transform: scale(1.3);
        }
/* ============================================
           SCREEN 7: VALORES
        ============================================ */
body[data-page="sobre"] .screen-valores{
            background: linear-gradient(180deg, #f8f9fa 0%, var(--branco) 100%);
            color: var(--preto);
        }
body[data-page="sobre"] .valores-header{
            margin-bottom: 48px;
        }
body[data-page="sobre"] .valores-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
@media (min-width: 768px){
body[data-page="sobre"] .valores-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
}
body[data-page="sobre"] .valor-card{
            padding: 32px;
            background: var(--branco);
            border-radius: 24px;
            border: 1px solid var(--cinza-claro);
            transition: all 0.4s var(--ease-out-expo);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 24px;
            align-items: start;
        }
body[data-page="sobre"] .valor-card:hover{
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
            border-color: var(--azul);
        }
body[data-page="sobre"] .valor-svg-placeholder{
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(17, 85, 246, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(17, 85, 246, 0.15);
            flex-shrink: 0;
            overflow: hidden;
        }
body[data-page="sobre"] .valor-svg-placeholder:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="sobre"] .valor-svg-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 6px;
        }
body[data-page="sobre"] .valor-svg-placeholder span{
            font-size: 0.5rem;
            color: var(--azul);
            opacity: 0.5;
            text-align: center;
        }
body[data-page="sobre"] .valor-content{
            min-width: 0;
        }
body[data-page="sobre"] .valor-title{
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--preto);
        }
body[data-page="sobre"] .valor-text{
            color: var(--cinza-medio);
            line-height: 1.7;
            font-size: 0.9375rem;
        }
/* ============================================
           SCREEN 8: CTA
        ============================================ */
body[data-page="sobre"] .screen-cta{
            background: var(--verde-limao);
            color: var(--preto);
            position: relative;
            overflow: hidden;
        }
body[data-page="sobre"] .screen-cta .placeholder-bg{
            background: transparent;
            overflow: hidden;
            z-index: 0;
        }
body[data-page="sobre"] .screen-cta .placeholder-bg img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            mix-blend-mode: luminosity;
        }
body[data-page="sobre"] .screen-cta .placeholder-bg::after{
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(204, 255, 141, 0.55) 0%, rgba(204, 255, 141, 0.8) 100%);
            pointer-events: none;
        }
body[data-page="sobre"] .cta-content{
            max-width: 100%;
            position: relative;
            z-index: 2;
        }
body[data-page="sobre"] .cta-content h2{
            margin-bottom: 16px;
        }
body[data-page="sobre"] .cta-subtitle{
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-bottom: 24px;
            opacity: 0.9;
        }
body[data-page="sobre"] .cta-trust{
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--preto);
            opacity: 0.6;
            margin-bottom: 40px;
            letter-spacing: 0.3px;
        }
body[data-page="sobre"] .cta-buttons{
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }
@media (min-width: 480px){
body[data-page="sobre"] .cta-buttons{
                flex-direction: row;
                gap: 20px;
            }
}
/* ============================================
           FOOTER
        ============================================ */
body[data-page="sobre"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="sobre"] .footer{ padding: 100px 48px 48px; }
}
body[data-page="sobre"] .footer-content{
            max-width: 1400px;
            margin: 0 auto;
        }
body[data-page="sobre"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="sobre"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="sobre"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; }
}
body[data-page="sobre"] .footer-brand{ max-width: 320px; }
body[data-page="sobre"] .footer-logo{ margin-bottom: 20px; }
body[data-page="sobre"] .footer-logo-svg{ height: 36px; width: auto; }
body[data-page="sobre"] .footer-logo-svg path{ fill: var(--branco); }
body[data-page="sobre"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="sobre"] .footer-social{ display: flex; gap: 12px; }
body[data-page="sobre"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="sobre"] .footer-social a:hover{ background: var(--azul); transform: translateY(-4px); }
body[data-page="sobre"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="sobre"] .footer-links{ list-style: none; }
body[data-page="sobre"] .footer-links li{ margin-bottom: 12px; }
body[data-page="sobre"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="sobre"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="sobre"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="sobre"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="sobre"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }
@media (min-width: 768px){
body[data-page="sobre"] .footer-bottom{ flex-direction: row; justify-content: space-between; align-items: center; }
}
body[data-page="sobre"] .footer-copyright{ font-size: 0.8125rem; color: rgba(255, 255, 255, 0.4); }
body[data-page="sobre"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="sobre"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="sobre"] .footer-legal a:hover{ color: var(--verde-limao); }
/* ============================================
           SCREEN 3: Ajuste de título (evitar oversize)
           ============================================ */
body[data-page="sobre"] .screen-metodologia .text-large{
            font-size: clamp(2rem, 4.4vw, 3.6rem);
            line-height: 1.05;
        }
/* ============================================
           LOADING SCREEN (HOME)
        ============================================ */
body[data-page="sobre"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="sobre"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="sobre"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="sobre"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="sobre"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="sobre"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="sobre"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="sobre"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="sobre"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="sobre"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="sobre"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="sobre"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="sobre"] body .footer-brand{ max-width: 320px !important; }
body[data-page="sobre"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="sobre"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="sobre"] body .footer-logo-svg path, body[data-page="sobre"] body .footer-logo-svg rect, body[data-page="sobre"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="sobre"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="sobre"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="sobre"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="sobre"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="sobre"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="sobre"] body .footer-links{ list-style: none !important; }
body[data-page="sobre"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="sobre"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="sobre"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="sobre"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="sobre"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="sobre"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="sobre"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="sobre"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="sobre"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="sobre"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="sobre"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: estudio.html ===== */
body[data-page="estudio"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="estudio"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }
body[data-page="estudio"], body[data-page="estudio"]{ height: 100%; }
body[data-page="estudio"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--preto);
            color: var(--branco);
            overflow: hidden;
        }
body[data-page="estudio"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
body[data-page="estudio"] .scroll-container::-webkit-scrollbar{ width: 0; }
body[data-page="estudio"] .screen{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            padding: 0 clamp(24px, 5vw, 4rem);
            position: relative;
        }
body[data-page="estudio"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 4vw, 40px) 0;
        }
body[data-page="estudio"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="estudio"] .header.logo-white .logo-text{ color: var(--branco); }
body[data-page="estudio"] .header.logo-white .nav-link{ color: var(--branco); }
body[data-page="estudio"] .header.logo-dark .logo-text{ color: var(--preto); }
body[data-page="estudio"] .header.logo-dark .nav-link{ color: var(--preto); }
body[data-page="estudio"] .logo-text{
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
        }
body[data-page="estudio"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="estudio"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: opacity 0.3s;
        }
body[data-page="estudio"] .nav-link:hover{ opacity: 0.7; }
body[data-page="estudio"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="estudio"] .scroll-progress{ display: flex; }
}
body[data-page="estudio"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="estudio"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="estudio"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="estudio"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="estudio"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="estudio"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="estudio"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="estudio"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            display: none;

            /* Theme variables (default: works on dark/blue backgrounds) */
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
            color: var(--counter-muted);
            transition: color 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
}
@media (min-width: 1024px){
body[data-page="estudio"] .section-counter{ display: block; }
}
body[data-page="estudio"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
            transition: color 0.4s var(--ease-out-expo);
        }
body[data-page="estudio"] .section-counter.is-hidden{
            opacity: 0;
            pointer-events: none;
        }
/* Section counter themes (match background for contrast) */
body[data-page="estudio"] .section-counter.counter-on-light{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="estudio"] .section-counter.counter-on-green{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="estudio"] .section-counter.counter-on-dark-green{
            --counter-muted: rgba(204, 255, 141, 0.45);
            --counter-current: var(--verde-limao);
        }
body[data-page="estudio"] .section-counter.counter-on-dark{
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
        }
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="estudio"] .text-hero{
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="estudio"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="estudio"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="estudio"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
/* ============================================
           ANIMATION CLASSES
        ============================================ */
body[data-page="estudio"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="estudio"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="estudio"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="estudio"] .slide-left.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="estudio"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="estudio"] .slide-right.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="estudio"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="estudio"] .scale-in.animate{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="estudio"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="estudio"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="estudio"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="estudio"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="estudio"] .delay-5{ transition-delay: 0.5s !important; }
body[data-page="estudio"] .delay-6{ transition-delay: 0.6s !important; }
/* ============================================
           SCREEN 1: GREETING
        ============================================ */
body[data-page="estudio"] .screen-hero{ background: var(--preto); }
body[data-page="estudio"] .hero-title{
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.1;
        }
body[data-page="estudio"] .screen-subtitle{ 
            background: var(--preto);
            background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23181818" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="%231155F6" opacity="0.1"/></svg>');
        }
body[data-page="estudio"] .subtitle-text{
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 1.3;
            font-weight: 400;
            max-width: 900px;
        }
body[data-page="estudio"] .placeholder-bg{
            font-size: 0.9rem;
            color: rgba(255,255,255,0.3);
            text-align: center;
            padding: 2rem;
            border: 2px dashed rgba(255,255,255,0.2);
            border-radius: 12px;
        }
body[data-page="estudio"] .screen-contexto{ background: #ffffff; color: var(--preto); }
body[data-page="estudio"] .contexto-grid{
            display: grid;
            grid-template-columns: 50% 50%;
            gap: 4rem;
            align-items: start;
        }
body[data-page="estudio"] .contexto-text{
            font-size: clamp(1.05rem, 1.6vw, 1.2rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
body[data-page="estudio"] .galeria-placeholder{
            width: 100%;
            height: 600px;
            background: rgba(0,0,0,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0,0,0,0.1);
            color: rgba(0,0,0,0.3);
            font-size: 0.9rem;
        }
body[data-page="estudio"] .screen-equipamentos{ background: var(--preto); }
body[data-page="estudio"] .section-title{
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
        }
body[data-page="estudio"] .equipamentos-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }
body[data-page="estudio"] .equipamento-block{
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 1.5rem;
            align-items: start;
        }
body[data-page="estudio"] .icon-placeholder{
            width: 80px;
            height: 80px;
            background: rgba(204, 255, 141, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--verde-limao);
            font-size: 0.7rem;
            text-align: center;
            padding: 0.5rem;
            overflow: hidden;
        }
body[data-page="estudio"] .icon-placeholder:has(img){
            background: transparent;
            padding: 0;
        }
body[data-page="estudio"] .icon-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="estudio"] .equipamento-block h3{
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--verde-limao);
        }
body[data-page="estudio"] .equipamento-block p{
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.8;
        }
body[data-page="estudio"] .screen-publico{ 
            background: var(--verde-limao); 
            color: var(--preto);
        }
body[data-page="estudio"] .publico-grid{
            display: grid;
            grid-template-columns: 80% 20%;
            gap: 3rem;
            align-items: center;
        }
body[data-page="estudio"] .publico-text{
            font-size: clamp(1.05rem, 1.6vw, 1.2rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
body[data-page="estudio"] .publico-intro{
            font-size: clamp(1.15rem, 1.8vw, 1.4rem);
            line-height: 1.5;
            margin: 1rem 0 2.5rem;
            max-width: 900px;
            opacity: 0.85;
        }
body[data-page="estudio"] .publico-blocos{
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 1.5rem;
        }
@media (min-width: 900px){
body[data-page="estudio"] .publico-blocos{
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }
}
body[data-page="estudio"] .publico-bloco{
            background: rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            border-top: 3px solid var(--preto);
        }
body[data-page="estudio"] .publico-bloco h3{
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 0.75rem;
            line-height: 1.3;
        }
body[data-page="estudio"] .publico-bloco p{
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            opacity: 0.85;
        }
body[data-page="estudio"] .screen-processo{ 
            background: #ffffff; 
            color: var(--preto);
            background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23ffffff" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="%231155F6" opacity="0.05"/></svg>');
        }
body[data-page="estudio"] .processo-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }
body[data-page="estudio"] .processo-block{
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 1.5rem;
            align-items: start;
        }
body[data-page="estudio"] .processo-icon{
            width: 60px;
            height: 60px;
            background: var(--azul);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.65rem;
            text-align: center;
            padding: 0.5rem;
            overflow: hidden;
        }
body[data-page="estudio"] .processo-icon:has(img){
            background: transparent;
            padding: 0;
        }
body[data-page="estudio"] .processo-icon img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
body[data-page="estudio"] .processo-block h3{
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--azul);
        }
body[data-page="estudio"] .processo-block p{
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.8;
        }
body[data-page="estudio"] .screen-simulador{
            background: var(--azul);
            color: var(--branco);
        }
body[data-page="estudio"] .simulador-content{
            max-width: 880px;
            margin: 0;
            text-align: left;
        }
body[data-page="estudio"] .simulador-tag{
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--verde-limao);
            padding: 8px 16px;
            border: 1px solid rgba(204, 255, 141, 0.4);
            border-radius: 999px;
            margin-bottom: 32px;
        }
body[data-page="estudio"] .simulador-title{
            font-size: clamp(2.25rem, 5vw, 3.75rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
body[data-page="estudio"] .simulador-text{
            font-size: clamp(1.1rem, 1.6vw, 1.35rem);
            line-height: 1.6;
            max-width: 720px;
            margin: 0 0 40px 0;
            opacity: 0.85;
        }
body[data-page="estudio"] .simulador-btn{
            background: var(--verde-limao);
            color: var(--preto);
            font-weight: 700;
            padding: 1.1rem 2.5rem;
            border-radius: 999px;
            font-size: 1.05rem;
            display: inline-block;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
body[data-page="estudio"] .simulador-btn:hover{
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(204, 255, 141, 0.3);
        }
body[data-page="estudio"] .screen-diferencial{ background: var(--preto); }
body[data-page="estudio"] .diferencial-text{
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 900px;
        }
body[data-page="estudio"] .screen-cta{ background: var(--azul); }
body[data-page="estudio"] .cta-content{ 
            text-align: left; 
            max-width: 900px;
        }
body[data-page="estudio"] .cta-title{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
body[data-page="estudio"] .cta-text{
            font-size: clamp(1.1rem, 1.8vw, 1.4rem);
            line-height: 1.7;
            margin-bottom: 3rem;
        }
body[data-page="estudio"] .cta-buttons{
            display: flex;
            gap: 1.5rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
body[data-page="estudio"] .btn{
            transition: all 0.3s;
        }
body[data-page="estudio"] .btn-primary{ 
            background: var(--verde-limao); 
            color: var(--preto); 
        }
body[data-page="estudio"] .btn-primary:hover{ 
            background: #B8E87A; 
            transform: translateY(-2px); 
        }
body[data-page="estudio"] .btn-secondary{ 
            background: transparent; 
            color: var(--branco); 
            border: 2px solid var(--branco); 
        }
body[data-page="estudio"] .btn-secondary:hover{ 
            background: var(--branco); 
            color: var(--azul); 
        }
body[data-page="estudio"] .cta-info{ 
            font-size: 0.95rem; 
            opacity: 0.9; 
        }
body[data-page="estudio"] .footer{
            background: var(--preto);
            padding: 128px 64px 56px;
            position: relative;
        }
body[data-page="estudio"] .footer::before{
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--verde-limao) 20%, var(--verde-limao) 80%, transparent);
            opacity: 0.3;
        }
body[data-page="estudio"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="estudio"] .footer-grid{
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
            gap: 72px;
            margin-bottom: 72px;
        }
body[data-page="estudio"] .footer-logo-text{
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--branco);
        }
body[data-page="estudio"] .footer-tagline{
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 28px;
        }
body[data-page="estudio"] .footer-social{ display: flex; gap: 14px; }
body[data-page="estudio"] .footer-social a{
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.4s;
        }
body[data-page="estudio"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="estudio"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--verde-limao);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
body[data-page="estudio"] .footer-column-title::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--verde-limao);
            opacity: 0.4;
        }
body[data-page="estudio"] .footer-links{ list-style: none; padding: 0; }
body[data-page="estudio"] .footer-links li{ margin-bottom: 14px; }
body[data-page="estudio"] .footer-links a{
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="estudio"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="estudio"] .footer-contact-item{
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
        }
body[data-page="estudio"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="estudio"] .footer-copyright{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="estudio"] .footer-legal{ display: flex; gap: 28px; }
body[data-page="estudio"] .footer-legal a{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="estudio"] .footer-legal a:hover{ color: var(--verde-limao); }
@media (max-width: 1024px){
body[data-page="estudio"] .contexto-grid, body[data-page="estudio"] .publico-grid{ grid-template-columns: 1fr; }
body[data-page="estudio"] .equipamentos-grid, body[data-page="estudio"] .processo-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
body[data-page="estudio"] .screen{ padding: 0 2rem; }
body[data-page="estudio"] .header{ padding: 1.5rem 2rem; }
body[data-page="estudio"] .nav, body[data-page="estudio"] .scroll-progress, body[data-page="estudio"] .section-counter{ display: none; }
body[data-page="estudio"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="estudio"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
}
/* ====== Overrides / additions for padronização (Home) ====== */
body[data-page="estudio"]{
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
body[data-page="estudio"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="estudio"] .header{ padding: 32px 48px; }
}
body[data-page="estudio"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="estudio"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="estudio"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="estudio"] .logo-svg path, body[data-page="estudio"] .logo-svg rect, body[data-page="estudio"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="estudio"] .header.logo-white .logo-svg path, body[data-page="estudio"] .header.logo-white .logo-svg rect, body[data-page="estudio"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="estudio"] .header.logo-green .logo-svg path, body[data-page="estudio"] .header.logo-green .logo-svg rect, body[data-page="estudio"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="estudio"] .header.logo-dark .logo-svg path, body[data-page="estudio"] .header.logo-dark .logo-svg rect, body[data-page="estudio"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="estudio"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="estudio"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="estudio"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="estudio"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="estudio"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="estudio"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="estudio"] .logo-svg{ height: 36px; }
}
body[data-page="estudio"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="estudio"] .nav-menu{ display: flex; }
}
body[data-page="estudio"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="estudio"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="estudio"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="estudio"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="estudio"] .menu-toggle{ display: none; }
}
body[data-page="estudio"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="estudio"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="estudio"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="estudio"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="estudio"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="estudio"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="estudio"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="estudio"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="estudio"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="estudio"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="estudio"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="estudio"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="estudio"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="estudio"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="estudio"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="estudio"] .footer-brand{ max-width: 320px; }
body[data-page="estudio"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="estudio"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="estudio"] .footer-logo-svg path, body[data-page="estudio"] .footer-logo-svg rect, body[data-page="estudio"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="estudio"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="estudio"] .footer-social{ display: flex; gap: 12px; }
body[data-page="estudio"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="estudio"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="estudio"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="estudio"] .footer-links{ list-style: none; }
body[data-page="estudio"] .footer-links li{ margin-bottom: 12px; }
body[data-page="estudio"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="estudio"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="estudio"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="estudio"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="estudio"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="estudio"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="estudio"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="estudio"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="estudio"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="estudio"] .footer-legal a:hover{ color: var(--verde-limao); }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="estudio"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="estudio"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="estudio"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="estudio"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="estudio"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="estudio"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
/* Active link (página atual) */
body[data-page="estudio"] .nav-link.active::after, body[data-page="estudio"] .mobile-menu-link.active::after{
    content: '';
    display: block;
    height: 2px;
    background: currentColor;
    opacity: 0.35;
    margin-top: 6px;
}
/* BG placeholders (full background) */
body[data-page="estudio"] .screen.has-bg-placeholder{ position: relative; }
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full{
    position: absolute;
    inset: 110px 64px 64px 64px;
    border: 2px dashed rgba(255,255,255,0.18);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.02);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full:has(img){
    inset: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    mix-blend-mode: luminosity;
}
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full:has(img)::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.7) 100%);
    pointer-events: none;
}
body[data-page="estudio"] .screen-publico.has-bg-placeholder .bg-placeholder-full:has(img)::after{
    background: linear-gradient(180deg, rgba(204, 255, 141, 0.65) 0%, rgba(204, 255, 141, 0.85) 100%);
}
body[data-page="estudio"] .screen-contexto.has-bg-placeholder .bg-placeholder-full, body[data-page="estudio"] .screen-processo.has-bg-placeholder .bg-placeholder-full{
    border-color: rgba(0,0,0,0.12);
    color: rgba(0,0,0,0.45);
    background: rgba(0,0,0,0.03);
}
body[data-page="estudio"] .screen-publico.has-bg-placeholder .bg-placeholder-full{
    border-color: rgba(0,0,0,0.14);
    color: rgba(0,0,0,0.45);
    background: rgba(0,0,0,0.03);
}
body[data-page="estudio"] .screen-content{ position: relative; z-index: 1; }
/* Ajustes do layout “Pra quem serve” (sem quadro lateral) */
body[data-page="estudio"] .publico-grid{ grid-template-columns: 1fr !important; max-width: 980px; }
/* CTA alinhado à esquerda (como o restante do site) */
body[data-page="estudio"] .screen-cta.cta-left .cta-content{ text-align: left; max-width: 900px; margin: 0; }
body[data-page="estudio"] .screen-cta.cta-left .cta-buttons{ justify-content: flex-start; }
/* Galeria (Seção 3) - 5 fotos com autoplay */
body[data-page="estudio"] .studio-gallery{ width: 100%; }
body[data-page="estudio"] .studio-gallery-frame{
    width: 100%;
    height: 600px;
    border-radius: 16px;
    background: rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
body[data-page="estudio"] .studio-gallery-slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 400ms ease;
}
body[data-page="estudio"] .studio-gallery-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body[data-page="estudio"] .studio-gallery-slide.active{ opacity: 1; }
body[data-page="estudio"] .studio-gallery-dots{
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: flex-start;
}
body[data-page="estudio"] .studio-gallery-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease;
}
body[data-page="estudio"] .studio-gallery-dot.active{
    background: var(--azul);
    border-color: var(--azul);
    transform: scale(1.2);
}
/* Responsivo */
@media (max-width: 1024px){
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full{ inset: 110px 32px 48px 32px; }
body[data-page="estudio"] .studio-gallery-frame{ height: 420px; }
}
@media (max-width: 768px){
body[data-page="estudio"] .screen.has-bg-placeholder .bg-placeholder-full{ inset: 96px 20px 40px 20px; }
body[data-page="estudio"] .studio-gallery-dots{ justify-content: center; }
}
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="estudio"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="estudio"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="estudio"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="estudio"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="estudio"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="estudio"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="estudio"] body .footer-brand{ max-width: 320px !important; }
body[data-page="estudio"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="estudio"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="estudio"] body .footer-logo-svg path, body[data-page="estudio"] body .footer-logo-svg rect, body[data-page="estudio"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="estudio"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="estudio"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="estudio"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="estudio"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="estudio"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="estudio"] body .footer-links{ list-style: none !important; }
body[data-page="estudio"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="estudio"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="estudio"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="estudio"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="estudio"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="estudio"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="estudio"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="estudio"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="estudio"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="estudio"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="estudio"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: relatorios.html ===== */

body[data-page="relatorios"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="relatorios"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="relatorios"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
body[data-page="relatorios"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="relatorios"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="relatorios"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }


body[data-page="relatorios"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="relatorios"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        }
body[data-page="relatorios"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--preto);
            color: var(--branco);
            overflow-x: hidden;
        }
body[data-page="relatorios"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
body[data-page="relatorios"] .scroll-container::-webkit-scrollbar{ width: 0; }
body[data-page="relatorios"] .screen{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            padding: 0 4rem;
            position: relative;
        }
body[data-page="relatorios"] .screen-content{
            width: 100%;
            max-width: 1400px;
        }
body[data-page="relatorios"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="relatorios"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="relatorios"] .logo-svg path, body[data-page="relatorios"] .logo-svg rect, body[data-page="relatorios"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
body[data-page="relatorios"] .header.logo-white .logo-svg path, body[data-page="relatorios"] .header.logo-white .logo-svg rect, body[data-page="relatorios"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="relatorios"] .header.logo-dark .logo-svg path, body[data-page="relatorios"] .header.logo-dark .logo-svg rect, body[data-page="relatorios"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
body[data-page="relatorios"] .header.logo-green .logo-svg path, body[data-page="relatorios"] .header.logo-green .logo-svg rect, body[data-page="relatorios"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="relatorios"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="relatorios"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: opacity 0.3s;
            color: inherit;
        }
body[data-page="relatorios"] .nav-link:hover{ opacity: 0.7; }
body[data-page="relatorios"] .scroll-progress{
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
body[data-page="relatorios"] .progress-dot{
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
body[data-page="relatorios"] .progress-dot.active{
            background: var(--verde-limao);
            transform: scale(1.3);
        }
body[data-page="relatorios"] .section-counter{
            position: fixed;
            left: 2rem;
            bottom: 2rem;
            z-index: 999;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
        }
body[data-page="relatorios"] .section-counter .current{
            color: var(--verde-limao);
            font-size: 1.2rem;
        }
body[data-page="relatorios"] .screen-hero{ background: var(--preto); }
body[data-page="relatorios"] .hero-title{
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            line-height: 1.1;
        }
body[data-page="relatorios"] .screen-intro{ background: #ffffff; color: var(--preto); }
body[data-page="relatorios"] .intro-text{
            font-size: clamp(1.15rem, 1.8vw, 1.3rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 900px;
        }
body[data-page="relatorios"] .screen-relatorios{ 
            background: var(--preto);
            min-height: auto;
            padding: 8rem 4rem;
        }
body[data-page="relatorios"] .relatorios-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
body[data-page="relatorios"] .relatorio-card{
            background: rgba(255,255,255,0.03);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
body[data-page="relatorios"] .relatorio-card:hover{
            transform: translateY(-8px);
            background: rgba(255,255,255,0.05);
        }
body[data-page="relatorios"] .relatorio-thumb{
            width: 100%;
            aspect-ratio: 3/4;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.3);
            font-size: 0.9rem;
        }
body[data-page="relatorios"] .relatorio-content{
            padding: 2rem;
        }
body[data-page="relatorios"] .relatorio-title{
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
body[data-page="relatorios"] .btn-download{
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background: var(--verde-limao);
            color: var(--preto);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 100px;
            transition: all 0.3s;
        }
body[data-page="relatorios"] .btn-download:hover{
            background: #B8E87A;
            transform: translateY(-2px);
        }
body[data-page="relatorios"] .btn-download.btn-disabled{
            background: rgba(242,242,242,.15);
            color: rgba(242,242,242,.6);
            cursor: not-allowed;
            pointer-events: none;
        }
body[data-page="relatorios"] .btn-download.btn-disabled:hover{
            background: rgba(242,242,242,.15);
            transform: none;
        }
body[data-page="relatorios"] .screen-funcionamento{ background: #ffffff; color: var(--preto); }
body[data-page="relatorios"] .funcionamento-text{
            font-size: clamp(1.15rem, 1.8vw, 1.3rem);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 900px;
        }
body[data-page="relatorios"] .screen-cta{ background: var(--azul); color: var(--branco); }
body[data-page="relatorios"] .cta-content{ 
            text-align: left; 
            max-width: 900px; 
        }
body[data-page="relatorios"] .cta-title{
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
body[data-page="relatorios"] .cta-text{
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            line-height: 1.7;
            margin-bottom: 3rem;
        }
body[data-page="relatorios"] .btn{
            transition: all 0.3s;
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="relatorios"] .btn:hover{ 
            background: #B8E87A;
            transform: translateY(-2px); 
        }
body[data-page="relatorios"] .footer{
            background: var(--preto);
            padding: 128px 64px 56px;
            position: relative;
        }
body[data-page="relatorios"] .footer::before{
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--verde-limao) 20%, var(--verde-limao) 80%, transparent);
            opacity: 0.3;
        }
body[data-page="relatorios"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="relatorios"] .footer-grid{
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
            gap: 72px;
            margin-bottom: 72px;
        }
body[data-page="relatorios"] .footer-logo-text{
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--branco);
        }
body[data-page="relatorios"] .footer-tagline{
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 28px;
        }
body[data-page="relatorios"] .footer-social{ display: flex; gap: 14px; }
body[data-page="relatorios"] .footer-social a{
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.4s;
        }
body[data-page="relatorios"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="relatorios"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--verde-limao);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
body[data-page="relatorios"] .footer-column-title::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--verde-limao);
            opacity: 0.4;
        }
body[data-page="relatorios"] .footer-links{ list-style: none; padding: 0; }
body[data-page="relatorios"] .footer-links li{ margin-bottom: 14px; }
body[data-page="relatorios"] .footer-links a{
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="relatorios"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="relatorios"] .footer-contact-item{
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
        }
body[data-page="relatorios"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="relatorios"] .footer-copyright{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="relatorios"] .footer-legal{ display: flex; gap: 28px; }
body[data-page="relatorios"] .footer-legal a{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="relatorios"] .footer-legal a:hover{ color: var(--verde-limao); }
@media (max-width: 1024px){
body[data-page="relatorios"] .relatorios-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
body[data-page="relatorios"] .screen{ padding: 0 2rem; }
body[data-page="relatorios"] .screen-relatorios, body[data-page="relatorios"] .screen-funcionamento{ padding: 4rem 2rem; }
body[data-page="relatorios"] .header{ padding: 1.5rem 2rem; }
body[data-page="relatorios"] .nav, body[data-page="relatorios"] .scroll-progress, body[data-page="relatorios"] .section-counter{ display: none; }
body[data-page="relatorios"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="relatorios"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
}
/* ===== Padrão Home: Bullets (scroll progress) + Themes ===== */
body[data-page="relatorios"] .scroll-progress{
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;

    /* Dot theme variables (default: works on dark backgrounds) */
    --dot-bg: rgba(255, 255, 255, 0.2);
    --dot-hover: rgba(255, 255, 255, 0.5);
    --dot-active: var(--verde-limao);
    --dot-ring: var(--verde-limao);

    transition: opacity 0.3s ease, visibility 0.3s ease;
}
body[data-page="relatorios"] .scroll-progress.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
body[data-page="relatorios"] .scroll-progress-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dot-bg);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}
body[data-page="relatorios"] .scroll-progress-dot::before{
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
body[data-page="relatorios"] .scroll-progress-dot.active{
    background: var(--dot-active);
    transform: scale(1.2);
}
body[data-page="relatorios"] .scroll-progress-dot.active::before{
    border-color: var(--dot-ring);
}
body[data-page="relatorios"] .scroll-progress-dot:hover{
    background: var(--dot-hover);
}
/* Scroll progress dot themes (mesma lógica da Home) */
body[data-page="relatorios"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
body[data-page="relatorios"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* ===== Padrão Home: Section Counter (números) + Themes ===== */
body[data-page="relatorios"] .section-counter{
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 999;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;

    /* Theme variables (default: dark/blue backgrounds) */
    --counter-muted: rgba(255, 255, 255, 0.4);
    --counter-current: var(--branco);

    color: var(--counter-muted);
    transition: color 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}
body[data-page="relatorios"] .section-counter .current{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--counter-current);
    display: block;
    line-height: 1;
    transition: color 0.4s ease;
}
body[data-page="relatorios"] .section-counter.is-hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
body[data-page="relatorios"] .section-counter.counter-on-light{
    --counter-muted: rgba(24, 24, 24, 0.35);
    --counter-current: var(--preto);
}
body[data-page="relatorios"] .section-counter.counter-on-green{
    --counter-muted: rgba(24, 24, 24, 0.35);
    --counter-current: var(--preto);
}
body[data-page="relatorios"] .section-counter.counter-on-dark-green{
    --counter-muted: rgba(204, 255, 141, 0.45);
    --counter-current: var(--verde-limao);
}
body[data-page="relatorios"] .section-counter.counter-on-dark{
    --counter-muted: rgba(255, 255, 255, 0.4);
    --counter-current: var(--branco);
}
/* Menu: mesmas regras de cor do header da Home (logo + links juntos) */
body[data-page="relatorios"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="relatorios"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="relatorios"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Footer dentro do scroll: vira snap-point sem entrar na contagem */
body[data-page="relatorios"] .footer{ scroll-snap-align: start; }
/* === Padrão Menu + Footer (copiado da Home) === */
body[data-page="relatorios"]{
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
/* ============================================
           HEADER
        ============================================ */
body[data-page="relatorios"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="relatorios"] .header{ padding: 32px 48px; }
}
/* Cores da logo por seção */
body[data-page="relatorios"] .header.logo-white .logo-svg path, body[data-page="relatorios"] .header.logo-white .logo-svg rect, body[data-page="relatorios"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="relatorios"] .header.logo-green .logo-svg path, body[data-page="relatorios"] .header.logo-green .logo-svg rect, body[data-page="relatorios"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="relatorios"] .header.logo-dark .logo-svg path, body[data-page="relatorios"] .header.logo-dark .logo-svg rect, body[data-page="relatorios"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="relatorios"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="relatorios"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="relatorios"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="relatorios"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="relatorios"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="relatorios"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
body[data-page="relatorios"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="relatorios"] .nav-menu{ display: flex; }
}
body[data-page="relatorios"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="relatorios"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="relatorios"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="relatorios"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="relatorios"] .menu-toggle{ display: none; }
}
body[data-page="relatorios"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="relatorios"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="relatorios"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="relatorios"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="relatorios"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="relatorios"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="relatorios"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="relatorios"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="relatorios"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           FOOTER
        ============================================ */
body[data-page="relatorios"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="relatorios"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="relatorios"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="relatorios"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="relatorios"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="relatorios"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="relatorios"] .footer-brand{ max-width: 320px; }
body[data-page="relatorios"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="relatorios"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="relatorios"] .footer-logo-svg path, body[data-page="relatorios"] .footer-logo-svg rect, body[data-page="relatorios"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="relatorios"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="relatorios"] .footer-social{ display: flex; gap: 12px; }
body[data-page="relatorios"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="relatorios"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="relatorios"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="relatorios"] .footer-links{ list-style: none; }
body[data-page="relatorios"] .footer-links li{ margin-bottom: 12px; }
body[data-page="relatorios"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="relatorios"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="relatorios"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="relatorios"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="relatorios"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="relatorios"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="relatorios"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="relatorios"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="relatorios"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="relatorios"] .footer-legal a:hover{ color: var(--verde-limao); }


/* ===== Scoped: contato.html ===== */
/* ============================================
           CSS VARIABLES & RESET
        ============================================ */
body[data-page="contato"]{
            --azul: #1155F6;
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-limao: #CCFF8D;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --preto: #181818;
            --branco: #FFFFFF;
            
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
body[data-page="contato"] *, body[data-page="contato"] *::before, body[data-page="contato"] *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
body[data-page="contato"]{
            font-size: 16px;
        }
body[data-page="contato"]{
            font-family: var(--font-main);
            background: var(--preto);
            color: var(--branco);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
/* Hide scrollbar */
body[data-page="contato"]::-webkit-scrollbar{ width: 0; }
body[data-page="contato"] ::selection{
            background: var(--verde-limao);
            color: var(--preto);
        }
/* ============================================
           SCROLL CONTAINER - SNAP
        ============================================ */
body[data-page="contato"] .scroll-container{
            height: 100vh;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
            scroll-behavior: smooth;
        }
@media (max-width: 768px){
body[data-page="contato"] .scroll-container{
                scroll-snap-type: y proximity;
            }
}
/* ============================================
           FULL SCREEN SECTIONS
        ============================================ */
body[data-page="contato"] .screen{
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            overflow: hidden;
        }
body[data-page="contato"] .screen-content{
            width: 100%;
            max-width: 1400px;
            padding: clamp(24px, 5vw, 40px);
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="contato"] .screen-content{ padding: clamp(40px, 6vw, 64px); }
}
@media (min-width: 1024px){
body[data-page="contato"] .screen-content{ padding: 64px; }
}
/* ============================================
           HEADER
        ============================================ */
body[data-page="contato"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="contato"] .header{ padding: 32px 48px; }
}
body[data-page="contato"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="contato"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="contato"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="contato"] .logo-svg path, body[data-page="contato"] .logo-svg rect, body[data-page="contato"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="contato"] .header.logo-white .logo-svg path, body[data-page="contato"] .header.logo-white .logo-svg rect, body[data-page="contato"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="contato"] .header.logo-green .logo-svg path, body[data-page="contato"] .header.logo-green .logo-svg rect, body[data-page="contato"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="contato"] .header.logo-dark .logo-svg path, body[data-page="contato"] .header.logo-dark .logo-svg rect, body[data-page="contato"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="contato"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="contato"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="contato"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="contato"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="contato"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="contato"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="contato"] .logo-svg{ height: 36px; }
}
body[data-page="contato"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="contato"] .nav-menu{ display: flex; }
}
body[data-page="contato"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="contato"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="contato"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="contato"] .menu-toggle{ display: none; }
}
body[data-page="contato"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="contato"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="contato"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="contato"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="contato"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="contato"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="contato"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="contato"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="contato"] .scroll-progress{
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            gap: 12px;
            /* Dot theme variables (default: works on dark backgrounds) */
            --dot-bg: rgba(255, 255, 255, 0.2);
            --dot-hover: rgba(255, 255, 255, 0.5);
            --dot-active: var(--verde-limao);
            --dot-ring: var(--verde-limao);

        }
@media (min-width: 1024px){
body[data-page="contato"] .scroll-progress{ display: flex; }
}
body[data-page="contato"] .scroll-progress-dot{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dot-bg);
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
        }
body[data-page="contato"] .scroll-progress-dot::before{
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid transparent;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .scroll-progress-dot.active{
            background: var(--dot-active);
            transform: scale(1.2);
        }
body[data-page="contato"] .scroll-progress-dot.active::before{
            border-color: var(--dot-ring);
        }
body[data-page="contato"] .scroll-progress-dot:hover{
            background: var(--dot-hover);
            }
/* Scroll progress dot themes */
body[data-page="contato"] .scroll-progress.dots-on-dark{
    --dot-bg: rgba(0, 0, 0, 0.2);
    --dot-hover: rgba(0, 0, 0, 0.5);
}
/* Special handling for the green section (better contrast) */
body[data-page="contato"] .scroll-progress.dots-on-green{
    --dot-bg: rgba(0, 0, 0, 0.25);
    --dot-hover: rgba(0, 0, 0, 0.55);
    --dot-active: rgba(0, 0, 0, 0.9);
    --dot-ring: rgba(255, 255, 255, 0.8);
}
/* Section Counter */
body[data-page="contato"] .section-counter{
            position: fixed;
            left: 32px;
            bottom: 32px;
            z-index: 100;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            display: none;

            /* Theme variables (default: dark/blue backgrounds) */
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
            color: var(--counter-muted);
            transition: color 0.4s var(--ease-out-expo);
        }
@media (min-width: 1024px){
body[data-page="contato"] .section-counter{ display: block; }
}
body[data-page="contato"] .section-counter .current{
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--counter-current);
            display: block;
            line-height: 1;
            transition: color 0.4s var(--ease-out-expo);
        }
/* Section counter themes */
body[data-page="contato"] .section-counter.counter-on-light{
            --counter-muted: rgba(24, 24, 24, 0.35);
            --counter-current: var(--preto);
        }
body[data-page="contato"] .section-counter.counter-on-dark{
            --counter-muted: rgba(255, 255, 255, 0.4);
            --counter-current: var(--branco);
        }
/* ============================================
           TYPOGRAPHY
        ============================================ */
body[data-page="contato"] .text-hero{
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.03em;
            text-align: left;
        }
body[data-page="contato"] .text-large{
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-align: left;
        }
body[data-page="contato"] .text-medium{
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.3;
        }
body[data-page="contato"] .text-body{
            font-size: clamp(1rem, 2vw, 1.375rem);
            font-weight: 400;
            line-height: 1.7;
        }
/* ============================================
           ANIMATION CLASSES
        ============================================ */
body[data-page="contato"] .fade-up{
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="contato"] .fade-up.animate{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="contato"] .slide-left{
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="contato"] .slide-left.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="contato"] .slide-right{
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
body[data-page="contato"] .slide-right.animate{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="contato"] .scale-in{
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }
body[data-page="contato"] .scale-in.animate{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="contato"] .delay-1{ transition-delay: 0.1s !important; }
body[data-page="contato"] .delay-2{ transition-delay: 0.2s !important; }
body[data-page="contato"] .delay-3{ transition-delay: 0.3s !important; }
body[data-page="contato"] .delay-4{ transition-delay: 0.4s !important; }
body[data-page="contato"] .delay-5{ transition-delay: 0.5s !important; }
body[data-page="contato"] .delay-6{ transition-delay: 0.6s !important; }
/* ============================================
           SCREEN 1: GREETING
        ============================================ */
body[data-page="contato"] .screen-greeting{
            background: var(--azul);
        }
/* Área para vídeo/gif da Calanga */
body[data-page="contato"] .greeting-video-container{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40%;
            height: 70%;
            overflow: visible;
            pointer-events: none;
            z-index: 1;
        }
@media (min-width: 768px){
body[data-page="contato"] .greeting-video-container{
                width: 35%;
                height: 75%;
            }
}
@media (min-width: 1024px){
body[data-page="contato"] .greeting-video-container{
                width: 30%;
                height: 80%;
            }
}
body[data-page="contato"] .greeting-video-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.2);
            text-align: center;
            padding: 24px;
            border: 2px dashed rgba(255,255,255,0.1);
            border-radius: 24px;
            margin: 24px;
            box-sizing: border-box;
        }
/* Quando tiver o vídeo/gif real */
body[data-page="contato"] .greeting-video-container video, body[data-page="contato"] .greeting-video-container img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }
/* Conteúdo da hero por cima do vídeo */
body[data-page="contato"] .screen-greeting .screen-content{
            position: relative;
            z-index: 2;
        }
body[data-page="contato"] .greeting-text .greeting-line{
            display: block;
            overflow: visible;
        }
body[data-page="contato"] .greeting-text .greeting-word{
            display: inline-block;
            transform: translateY(120%);
            transition: transform 1s var(--ease-out-expo);
        }
body[data-page="contato"] .screen-greeting.in-view .greeting-word{
            transform: translateY(0);
        }
body[data-page="contato"] .greeting-text .greeting-line:nth-child(1) .greeting-word{ transition-delay: 0.2s; }
body[data-page="contato"] .greeting-text .greeting-line:nth-child(2) .greeting-word{ transition-delay: 0.4s; }
/* Scroll hint */
body[data-page="contato"] .scroll-hint{
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 1.5s forwards;
        }
body[data-page="contato"] .scroll-hint-text{
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
        }
body[data-page="contato"] .scroll-hint-arrow{
            width: 24px;
            height: 24px;
            animation: bounce 2s ease-in-out infinite;
        }
body[data-page="contato"] .scroll-hint-arrow svg{ stroke: rgba(255, 255, 255, 0.5); }
@keyframes bounce{
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }
@keyframes fadeInUp{
            from { opacity: 0; transform: translateX(-50%) translateY(20px); }
            to { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
/* ============================================
           SCREEN 2: TAGLINE
        ============================================ */
body[data-page="contato"] .screen-tagline{
            background: var(--preto);
            position: relative;
            overflow: hidden;
        }
/* Placeholder para imagem de fundo */
body[data-page="contato"] .tagline-bg-image{
            position: absolute;
            inset: 0;
            z-index: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255,255,255,0.1);
            margin: 24px;
            border-radius: 24px;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.15);
            text-align: center;
        }
/* Quando tiver imagem real */
body[data-page="contato"] .tagline-bg-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }
/* Degradê animado - Aurora/Blob effect */
body[data-page="contato"] .tagline-gradient-bg{
            position: absolute;
            top: -100%;
            left: -100%;
            right: -100%;
            bottom: -100%;
            z-index: 1;
        }
body[data-page="contato"] .tagline-gradient-blob{
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: blobFloat 20s ease-in-out infinite;
        }
body[data-page="contato"] .tagline-gradient-blob:nth-child(1){
            width: 600px;
            height: 600px;
            background: var(--azul);
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }
body[data-page="contato"] .tagline-gradient-blob:nth-child(2){
            width: 500px;
            height: 500px;
            background: var(--verde-limao);
            top: 30%;
            right: 20%;
            animation-delay: -5s;
            opacity: 0.4;
        }
body[data-page="contato"] .tagline-gradient-blob:nth-child(3){
            width: 400px;
            height: 400px;
            background: var(--azul-dark);
            bottom: 10%;
            left: 40%;
            animation-delay: -10s;
        }
@keyframes blobFloat{
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(50px, -30px) scale(1.1);
            }
            50% {
                transform: translate(-30px, 50px) scale(0.9);
            }
            75% {
                transform: translate(30px, 20px) scale(1.05);
            }
        }
body[data-page="contato"] .screen-tagline .screen-content{
            position: relative;
            z-index: 2;
        }
body[data-page="contato"] .tagline-text{
            text-align: left;
            color: var(--verde-limao);
            white-space: nowrap;
            position: relative;
        }
@media (max-width: 768px){
body[data-page="contato"] .tagline-text{
                white-space: normal;
                font-size: clamp(2rem, 8vw, 5rem);
            }
}
body[data-page="contato"] .tagline-char{
            display: inline-block;
            opacity: 0;
            transform: translateY(50px) rotateX(90deg);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="contato"] .screen-tagline.in-view .tagline-char{
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
/* ============================================
           SCREEN 3: MANIFEST
        ============================================ */
body[data-page="contato"] .screen-manifest{
            background: linear-gradient(135deg, var(--azul) 0%, var(--azul-dark) 100%);
            position: relative;
            overflow: hidden;
        }
body[data-page="contato"] .screen-manifest::before{
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(204, 255, 141, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
        }
/* Canvas para partículas - será controlado via JS */
body[data-page="contato"] .particles-canvas{
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
/* Partículas CSS como fallback e complemento */
body[data-page="contato"] .particles-container{
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
body[data-page="contato"] .particle{
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(204, 255, 141, 0.6);
            border-radius: 50%;
            animation: particleFloat 20s linear infinite;
        }
body[data-page="contato"] .particle::before{
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, rgba(204, 255, 141, 0.3), transparent);
            transform-origin: left center;
            animation: particleLine 20s linear infinite;
        }
body[data-page="contato"] .particle:nth-child(1){ top: 15%; left: 10%; animation-delay: 0s; }
body[data-page="contato"] .particle:nth-child(2){ top: 25%; left: 85%; animation-delay: -3s; }
body[data-page="contato"] .particle:nth-child(3){ top: 45%; left: 5%; animation-delay: -6s; }
body[data-page="contato"] .particle:nth-child(4){ top: 65%; left: 90%; animation-delay: -9s; }
body[data-page="contato"] .particle:nth-child(5){ top: 80%; left: 15%; animation-delay: -12s; }
body[data-page="contato"] .particle:nth-child(6){ top: 10%; left: 50%; animation-delay: -15s; }
body[data-page="contato"] .particle:nth-child(7){ top: 70%; left: 60%; animation-delay: -18s; }
body[data-page="contato"] .particle:nth-child(8){ top: 35%; left: 25%; animation-delay: -2s; }
body[data-page="contato"] .particle:nth-child(9){ top: 55%; left: 75%; animation-delay: -7s; }
body[data-page="contato"] .particle:nth-child(10){ top: 90%; left: 40%; animation-delay: -11s; }
body[data-page="contato"] .particle:nth-child(11){ top: 20%; left: 65%; animation-delay: -4s; }
body[data-page="contato"] .particle:nth-child(12){ top: 85%; left: 80%; animation-delay: -14s; }
body[data-page="contato"] .particle:nth-child(odd)::before{
            transform: rotate(45deg);
        }
body[data-page="contato"] .particle:nth-child(even)::before{
            transform: rotate(-30deg);
            width: 80px;
        }
body[data-page="contato"] .particle:nth-child(3n)::before{
            transform: rotate(120deg);
            width: 120px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
        }
@keyframes particleFloat{
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translate(30px, -20px) scale(1.2);
                opacity: 1;
            }
            50% {
                transform: translate(-20px, 30px) scale(0.8);
                opacity: 0.4;
            }
            75% {
                transform: translate(15px, 15px) scale(1.1);
                opacity: 0.8;
            }
        }
@keyframes particleLine{
            0%, 100% {
                opacity: 0.3;
                width: 100px;
            }
            50% {
                opacity: 0.6;
                width: 150px;
            }
        }
/* Linhas de conexão entre partículas */
body[data-page="contato"] .connection-lines{
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
body[data-page="contato"] .connection-line{
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(204, 255, 141, 0.15), transparent);
            transform-origin: left center;
            animation: lineConnect 25s ease-in-out infinite;
        }
body[data-page="contato"] .connection-line:nth-child(1){
            top: 20%; left: 10%; width: 200px; transform: rotate(25deg);
            animation-delay: 0s;
        }
body[data-page="contato"] .connection-line:nth-child(2){
            top: 40%; left: 60%; width: 180px; transform: rotate(-15deg);
            animation-delay: -5s;
        }
body[data-page="contato"] .connection-line:nth-child(3){
            top: 70%; left: 20%; width: 250px; transform: rotate(40deg);
            animation-delay: -10s;
        }
body[data-page="contato"] .connection-line:nth-child(4){
            top: 30%; left: 40%; width: 150px; transform: rotate(-35deg);
            animation-delay: -15s;
        }
body[data-page="contato"] .connection-line:nth-child(5){
            top: 60%; left: 70%; width: 220px; transform: rotate(10deg);
            animation-delay: -20s;
        }
@keyframes lineConnect{
            0%, 100% {
                opacity: 0;
                transform: scaleX(0) rotate(var(--rotation, 0deg));
            }
            10%, 90% {
                opacity: 0.3;
                transform: scaleX(1) rotate(var(--rotation, 0deg));
            }
            50% {
                opacity: 0.5;
            }
        }
body[data-page="contato"] .manifest-lines{
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
            position: relative;
            z-index: 2;
        }
@media (min-width: 768px){
body[data-page="contato"] .manifest-lines{ gap: 24px; }
}
body[data-page="contato"] .manifest-line{
            font-size: clamp(1.25rem, 4vw, 2.5rem);
            font-weight: 500;
            color: var(--branco);
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s var(--ease-out-expo);
        }
body[data-page="contato"] .screen-manifest.in-view .manifest-line{
            opacity: 1;
            transform: translateX(0);
        }
body[data-page="contato"] .manifest-line:nth-child(1){ transition-delay: 0.1s; }
body[data-page="contato"] .manifest-line:nth-child(2){ transition-delay: 0.25s; }
body[data-page="contato"] .manifest-line:nth-child(3){ transition-delay: 0.4s; }
body[data-page="contato"] .manifest-line:nth-child(4){ transition-delay: 0.55s; }
body[data-page="contato"] .manifest-line .highlight{
            color: var(--verde-limao);
            font-weight: 700;
        }
/* ============================================
           SCREEN 4: CALANGA INTRO
        ============================================ */
body[data-page="contato"] .screen-calanga-intro{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="contato"] .calanga-intro-content{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 1024px){
body[data-page="contato"] .calanga-intro-content{
                grid-template-columns: 1fr 1fr;
                text-align: left;
                gap: 80px;
            }
}
body[data-page="contato"] .calanga-placeholder{
            width: 280px;
            height: 280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            color: rgba(24, 24, 24, 0.5);
            text-align: center;
            padding: 24px;
            opacity: 0;
            transform: scale(0.8) rotate(-10deg);
            transition: all 1s var(--ease-out-expo);
        }
@media (min-width: 768px){
body[data-page="contato"] .calanga-placeholder{ width: 360px; height: 360px; }
}
@media (min-width: 1024px){
body[data-page="contato"] .calanga-placeholder{ width: 420px; height: 420px; }
}
body[data-page="contato"] .screen-calanga-intro.in-view .calanga-placeholder{
            opacity: 1;
            transform: scale(1) rotate(0);
        }
body[data-page="contato"] .calanga-intro-text h2{ margin-bottom: 24px; }
body[data-page="contato"] .calanga-intro-text p{ margin-bottom: 32px; opacity: 0.8; }
/* Buttons */
body[data-page="contato"] .btn{
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .btn-primary{
            background: var(--preto);
            color: var(--branco);
        }
body[data-page="contato"] .btn-primary:hover{
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
body[data-page="contato"] .btn-secondary{
            background: var(--azul);
            color: var(--branco);
        }
body[data-page="contato"] .btn-secondary:hover{
            background: var(--azul-dark);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(17, 85, 246, 0.4);
        }
body[data-page="contato"] .btn-arrow{
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .btn:hover .btn-arrow{ transform: translateX(4px); }
/* ============================================
           SCREEN 5: BRASILIA
        ============================================ */
body[data-page="contato"] .screen-brasilia{
            background: var(--preto);
        }
body[data-page="contato"] .brasilia-bg{
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }
body[data-page="contato"] .brasilia-bg-placeholder{
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 85, 246, 0.3) 0%, rgba(24, 24, 24, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
body[data-page="contato"] .brasilia-bg-placeholder span{
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
            border: 1px dashed rgba(255, 255, 255, 0.2);
            padding: 16px 24px;
            border-radius: 8px;
        }
body[data-page="contato"] .brasilia-content{
            max-width: 900px;
        }
body[data-page="contato"] .brasilia-title{
            color: var(--verde-limao);
            margin-bottom: 40px;
        }
body[data-page="contato"] .brasilia-text{ color: rgba(255, 255, 255, 0.85); }
body[data-page="contato"] .brasilia-text p{ margin-bottom: 24px; }
body[data-page="contato"] .brasilia-text strong{ color: var(--verde-limao); font-weight: 600; }
/* ============================================
           SCREEN 6: SERVICES
        ============================================ */
body[data-page="contato"] .screen-services{
            background: var(--branco);
            color: var(--preto);
        }
body[data-page="contato"] .services-header{
            text-align: left;
            margin-bottom: 48px;
        }
body[data-page="contato"] .services-layout{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }
@media (min-width: 1024px){
body[data-page="contato"] .services-layout{
                grid-template-columns: 1fr 320px;
                gap: 64px;
            }
}
body[data-page="contato"] .services-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
@media (min-width: 768px){
body[data-page="contato"] .services-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
/* Calanga que muda com hover */
body[data-page="contato"] .services-calanga{
            display: none;
            align-items: center;
            justify-content: center;
            order: 1;
            position: relative;
            height: 400px;
        }
@media (min-width: 1024px){
body[data-page="contato"] .services-calanga{
                display: flex;
            }
}
body[data-page="contato"] .calanga-state{
            position: absolute;
            width: 280px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(17, 85, 246, 0.05);
            border-radius: 24px;
            border: 2px dashed rgba(17, 85, 246, 0.15);
            font-size: 0.75rem;
            color: rgba(17, 85, 246, 0.4);
            text-align: center;
            padding: 24px;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: all 0.5s var(--ease-out-expo);
            pointer-events: none;
        }
body[data-page="contato"] .calanga-state.active{
            opacity: 1;
            transform: scale(1) translateY(0);
        }
/* Estados da Calanga para cada serviço */
body[data-page="contato"] .calanga-state[data-service="default"]{
            opacity: 1;
            transform: scale(1) translateY(0);
        }
body[data-page="contato"] .services-grid:hover ~ .services-calanga .calanga-state[data-service="default"]{
            opacity: 0;
            transform: scale(0.9) translateY(20px);
        }
body[data-page="contato"] .service-card{
            background: var(--branco);
            border: 1px solid var(--cinza-claro);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="contato"] .screen-services.in-view .service-card{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="contato"] .service-card:nth-child(1){ transition-delay: 0.1s; }
body[data-page="contato"] .service-card:nth-child(2){ transition-delay: 0.2s; }
body[data-page="contato"] .service-card:nth-child(3){ transition-delay: 0.3s; }
body[data-page="contato"] .service-card:nth-child(4){ transition-delay: 0.4s; }
body[data-page="contato"] .service-card::before{
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 4px;
            height: 0;
            background: var(--azul);
            transition: height 0.5s var(--ease-out-expo);
        }
body[data-page="contato"] .service-card:hover{
            border-color: var(--azul);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
body[data-page="contato"] .service-card:hover::before{ height: 100%; }
body[data-page="contato"] .service-number{
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--azul);
            opacity: 0.5;
            margin-bottom: 16px;
        }
body[data-page="contato"] .service-title{
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
body[data-page="contato"] .service-text{
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.7;
        }
body[data-page="contato"] .services-cta{
            text-align: left;
            margin-top: 48px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s var(--ease-out-expo) 0.5s;
        }
body[data-page="contato"] .screen-services.in-view .services-cta{
            opacity: 1;
            transform: translateY(0);
        }
/* ============================================
           SCREEN 7: WORK
        ============================================ */
body[data-page="contato"] .screen-work{
            background: linear-gradient(180deg, var(--branco) 0%, #f8f9fa 100%);
            color: var(--preto);
        }
body[data-page="contato"] .work-header{
            text-align: left;
            margin-bottom: 64px;
        }
body[data-page="contato"] .work-header .subtitle{
            font-size: 1rem;
            color: var(--cinza-medio);
            margin-top: 12px;
        }
body[data-page="contato"] .work-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
@media (min-width: 768px){
body[data-page="contato"] .work-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="contato"] .work-grid{ grid-template-columns: repeat(3, 1fr); }
}
body[data-page="contato"] .work-card{
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s var(--ease-out-expo);
        }
body[data-page="contato"] .screen-work.in-view .work-card{
            opacity: 1;
            transform: scale(1);
        }
body[data-page="contato"] .work-card:nth-child(1){ transition-delay: 0.1s; }
body[data-page="contato"] .work-card:nth-child(2){ transition-delay: 0.15s; }
body[data-page="contato"] .work-card:nth-child(3){ transition-delay: 0.2s; }
body[data-page="contato"] .work-card:nth-child(4){ transition-delay: 0.25s; }
body[data-page="contato"] .work-card:nth-child(5){ transition-delay: 0.3s; }
body[data-page="contato"] .work-card:nth-child(6){ transition-delay: 0.35s; }
body[data-page="contato"] .work-card-bg{
            position: absolute;
            inset: 0;
            transition: transform 0.6s var(--ease-out-expo);
        }
body[data-page="contato"] .work-card:hover .work-card-bg{ transform: scale(1.08); }
body[data-page="contato"] .work-card-placeholder{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }
body[data-page="contato"] .work-card-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(17, 85, 246, 0.95) 0%, rgba(17, 85, 246, 0.6) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s var(--ease-out-expo);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }
body[data-page="contato"] .work-card:hover .work-card-overlay{ opacity: 1; }
body[data-page="contato"] .work-card-title{
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--branco);
            margin-bottom: 8px;
            transform: translateY(20px);
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .work-card:hover .work-card-title{ transform: translateY(0); }
body[data-page="contato"] .work-card-tag{
            font-size: 0.875rem;
            color: var(--verde-limao);
            transform: translateY(20px);
            transition: transform 0.4s var(--ease-out-expo) 0.05s;
        }
body[data-page="contato"] .work-card:hover .work-card-tag{ transform: translateY(0); }
body[data-page="contato"] .work-card-arrow{
            position: absolute;
            top: 20px; right: 20px;
            width: 44px; height: 44px;
            background: var(--verde-limao);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(80px);
            transition: transform 0.4s var(--ease-out-expo);
        }
body[data-page="contato"] .work-card:hover .work-card-arrow{ transform: translateX(0); }
body[data-page="contato"] .work-cta{ text-align: left; margin-top: 48px; }
/* ============================================
           SCREEN 8: CTA
        ============================================ */
body[data-page="contato"] .screen-cta{
            background: var(--azul);
        }
body[data-page="contato"] .screen-cta::before{
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(204, 255, 141, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
        }
body[data-page="contato"] .cta-content{
            text-align: left;
            max-width: 800px;
        }
body[data-page="contato"] .cta-calanga{
            width: 140px;
            height: 140px;
            margin-bottom: 40px;
            opacity: 0;
            transform: scale(0.8) rotate(-15deg);
            transition: all 1s var(--ease-out-expo);
        }
@media (min-width: 768px){
body[data-page="contato"] .cta-calanga{ width: 180px; height: 180px; }
}
body[data-page="contato"] .screen-cta.in-view .cta-calanga{
            opacity: 1;
            transform: scale(1) rotate(0);
        }
body[data-page="contato"] .cta-calanga-placeholder{
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            border: 2px dashed rgba(255, 255, 255, 0.2);
        }
body[data-page="contato"] .cta-title{ color: var(--branco); margin-bottom: 24px; }
body[data-page="contato"] .cta-text{
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 600px;
        }
body[data-page="contato"] .cta-buttons{
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }
@media (min-width: 480px){
body[data-page="contato"] .cta-buttons{ flex-direction: row; justify-content: flex-start; }
}
body[data-page="contato"] .btn-cta-primary{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="contato"] .btn-cta-primary:hover{
            background: var(--verde-dark);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(204, 255, 141, 0.3);
        }
body[data-page="contato"] .btn-cta-outline{
            background: transparent;
            color: var(--branco);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
body[data-page="contato"] .btn-cta-outline:hover{
            border-color: var(--branco);
            background: rgba(255, 255, 255, 0.1);
        }
/* ============================================
           FOOTER
        ============================================ */
body[data-page="contato"] .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="contato"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="contato"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="contato"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="contato"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="contato"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="contato"] .footer-brand{ max-width: 320px; }
body[data-page="contato"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="contato"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="contato"] .footer-logo-svg path, body[data-page="contato"] .footer-logo-svg rect, body[data-page="contato"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="contato"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="contato"] .footer-social{ display: flex; gap: 12px; }
body[data-page="contato"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="contato"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="contato"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="contato"] .footer-links{ list-style: none; }
body[data-page="contato"] .footer-links li{ margin-bottom: 12px; }
body[data-page="contato"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="contato"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="contato"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="contato"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="contato"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="contato"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="contato"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="contato"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="contato"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="contato"] .footer-legal a:hover{ color: var(--verde-limao); }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="contato"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="contato"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="contato"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="contato"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="contato"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="contato"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
/* ============================================
           CONTACT PAGE (OVERRIDES)
        ============================================ */
body[data-page="contato"] .screen-contact-hero{
            background: var(--azul);
            color: var(--branco);
        }
body[data-page="contato"] .contact-hero-inner{
            max-width: 900px;
            margin: 0;
            text-align: left;
        }
body[data-page="contato"] .contact-hero-inner .hero-title{
            font-size: clamp(48px, 6vw, 88px);
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
            font-weight: 700;
        }
body[data-page="contato"] .contact-hero-inner .hero-subtitle{
            font-size: clamp(18px, 2.2vw, 22px);
            opacity: 0.95;
            max-width: 52ch;
            margin-bottom: 28px;
        }
body[data-page="contato"] .screen-contact-form{
            background: var(--branco);
            color: var(--preto);
        }
body[data-page="contato"] .contact-grid{
            width: 100%;
            max-width: 1200px;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
@media (max-width: 1024px){
body[data-page="contato"] .contact-grid{ gap: 40px; }
}
@media (max-width: 860px){
body[data-page="contato"] .contact-grid{ grid-template-columns: 1fr; gap: 28px; }
}
body[data-page="contato"] .contact-col{
            /* no “cards/quadros” — visual clean, como no print */
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
        }
body[data-page="contato"] .contact-col h2{
            font-size: clamp(32px, 3.2vw, 44px);
            letter-spacing: -0.02em;
            margin-bottom: 18px;
            color: var(--azul);
        }
body[data-page="contato"] .form-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
body[data-page="contato"] .form-group{
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
body[data-page="contato"] .form-group.full{
            grid-column: 1 / -1;
        }
body[data-page="contato"] label{
            font-size: 14px;
            font-weight: 600;
            color: rgba(0,0,0,0.75);
        }
body[data-page="contato"] input, body[data-page="contato"] select, body[data-page="contato"] textarea{
            width: 100%;
            padding: 14px 14px;
            border-radius: 14px;
            border: 1px solid rgba(0,0,0,0.18);
            background: rgba(255,255,255,0.75);
            color: var(--preto);
            font-family: var(--font-main);
            font-size: 16px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }
body[data-page="contato"] textarea{
            min-height: 140px;
            resize: vertical;
        }
body[data-page="contato"] input:focus, body[data-page="contato"] select:focus, body[data-page="contato"] textarea:focus{
            border-color: rgba(17,85,246,0.6);
            box-shadow: 0 0 0 4px rgba(17,85,246,0.12);
            background: #fff;
        }
body[data-page="contato"] .btn-submit{
            border: none;
            cursor: pointer;
            margin-top: 10px;
        }
body[data-page="contato"] .screen-contact-form .btn-primary.btn-submit{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="contato"] .screen-contact-form .btn-primary.btn-submit:hover{
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(0,0,0,0.16);
        }
body[data-page="contato"] .calanga-message{
            display: none;
            gap: 12px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(0,0,0,0.12);
            align-items: flex-start;
        }
body[data-page="contato"] .calanga-message.show{
            display: flex;
        }
body[data-page="contato"] .calanga-avatar{
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--verde-limao);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
body[data-page="contato"] .info-block{
            margin-bottom: 18px;
        }
body[data-page="contato"] .info-block h3{
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--azul);
        }
body[data-page="contato"] .info-block a{
            color: inherit;
            text-decoration: none;
            border-bottom: 1px solid rgba(0,0,0,0.25);
        }
body[data-page="contato"] .map-container{
            width: 100%;
            height: 280px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.12);
            margin-top: 12px;
        }
body[data-page="contato"] .whatsapp-btn{
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            padding: 12px 16px;
            border-radius: 14px;
            background: #25D366;
            color: var(--preto);
            text-decoration: none;
            font-weight: 700;
        }
body[data-page="contato"] .whatsapp-icon{
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
/* Redes sociais (evita ícones gigantes no mobile e mantém estilo do print) */
body[data-page="contato"] .social-links{
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }
body[data-page="contato"] .social-links a{
            width: 34px;
            height: 34px;
            border-radius: 999px;
            background: rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.10);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.75);
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
body[data-page="contato"] .social-links a:hover{
            transform: translateY(-1px);
            background: rgba(0,0,0,0.12);
            color: rgba(0,0,0,0.9);
        }
body[data-page="contato"] .social-links svg{
            width: 18px;
            height: 18px;
            display: block;
            fill: currentColor;
        }
/* Active state in header/menu */
body[data-page="contato"] .nav-link.active::after{ width: 100%; }
body[data-page="contato"] .mobile-menu-link.active{ font-weight: 700; }
/* Responsive */
@media (max-width: 980px){
body[data-page="contato"] .contact-grid{ grid-template-columns: 1fr; }
body[data-page="contato"] .form-grid{ grid-template-columns: 1fr; }
}
/* --- Overrides contato (garantir 50/50 como no print) --- */
/* Alguns estilos globais responsivos estavam empilhando os 2 blocos.
           Aqui forçamos 2 colunas na seção 2, e só empilhamos em telas menores. */
body[data-page="contato"] .screen-contact-form .contact-grid{
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        }
@media (max-width: 980px){
body[data-page="contato"] .screen-contact-form .contact-grid{ gap: 40px; }
}
@media (max-width: 760px){
body[data-page="contato"] .screen-contact-form .contact-grid{
                grid-template-columns: 1fr !important;
                gap: 28px;
            }
}
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="contato"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="contato"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="contato"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="contato"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="contato"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="contato"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="contato"] body .footer-brand{ max-width: 320px !important; }
body[data-page="contato"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="contato"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="contato"] body .footer-logo-svg path, body[data-page="contato"] body .footer-logo-svg rect, body[data-page="contato"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="contato"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="contato"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="contato"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="contato"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="contato"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="contato"] body .footer-links{ list-style: none !important; }
body[data-page="contato"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="contato"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="contato"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="contato"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="contato"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="contato"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="contato"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="contato"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="contato"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="contato"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="contato"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: politica-privacidade.html ===== */
body[data-page="politica-privacidade"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="politica-privacidade"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --dot-bg: rgba(255, 255, 255, 0.2);}
body[data-page="politica-privacidade"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--branco);
            color: var(--preto);
            line-height: 1.7;
        }
/* HEADER */
body[data-page="politica-privacidade"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
body[data-page="politica-privacidade"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="politica-privacidade"] .logo-svg path, body[data-page="politica-privacidade"] .logo-svg rect, body[data-page="politica-privacidade"] .logo-svg polygon{
            fill: var(--preto);
        }
body[data-page="politica-privacidade"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="politica-privacidade"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--preto);
            transition: opacity 0.3s;
        }
body[data-page="politica-privacidade"] .nav-link:hover{ opacity: 0.6; }
/* ============================================
           HEADER
        ============================================ */
body[data-page="politica-privacidade"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] .header{ padding: 32px 48px; }
}
body[data-page="politica-privacidade"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="politica-privacidade"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="politica-privacidade"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="politica-privacidade"] .logo-svg path, body[data-page="politica-privacidade"] .logo-svg rect, body[data-page="politica-privacidade"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="politica-privacidade"] .header.logo-white .logo-svg path, body[data-page="politica-privacidade"] .header.logo-white .logo-svg rect, body[data-page="politica-privacidade"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="politica-privacidade"] .header.logo-green .logo-svg path, body[data-page="politica-privacidade"] .header.logo-green .logo-svg rect, body[data-page="politica-privacidade"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="politica-privacidade"] .header.logo-dark .logo-svg path, body[data-page="politica-privacidade"] .header.logo-dark .logo-svg rect, body[data-page="politica-privacidade"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="politica-privacidade"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="politica-privacidade"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="politica-privacidade"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="politica-privacidade"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="politica-privacidade"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="politica-privacidade"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="politica-privacidade"] .logo-svg{ height: 36px; }
}
body[data-page="politica-privacidade"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="politica-privacidade"] .nav-menu{ display: flex; }
}
body[data-page="politica-privacidade"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="politica-privacidade"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="politica-privacidade"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="politica-privacidade"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="politica-privacidade"] .menu-toggle{ display: none; }
}
body[data-page="politica-privacidade"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="politica-privacidade"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="politica-privacidade"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="politica-privacidade"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="politica-privacidade"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="politica-privacidade"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="politica-privacidade"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="politica-privacidade"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="politica-privacidade"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* CONTEÚDO */
body[data-page="politica-privacidade"] .main{
            max-width: 900px;
            margin: 0 auto;
            padding: 160px 4rem 6rem;
        }
body[data-page="politica-privacidade"] .page-title{
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
body[data-page="politica-privacidade"] .last-update{
            color: rgba(0,0,0,0.5);
            margin-bottom: 4rem;
            font-size: 0.95rem;
        }
body[data-page="politica-privacidade"] .content h2{
            font-size: 1.8rem;
            font-weight: 700;
            margin: 3rem 0 1rem;
        }
body[data-page="politica-privacidade"] .content h3{
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
        }
body[data-page="politica-privacidade"] .content p{
            margin-bottom: 1.2rem;
        }
body[data-page="politica-privacidade"] .content ul, body[data-page="politica-privacidade"] .content ol{
            margin: 1rem 0 1.5rem 2rem;
        }
body[data-page="politica-privacidade"] .content li{
            margin-bottom: 0.5rem;
        }
body[data-page="politica-privacidade"] .content strong{
            font-weight: 600;
            color: var(--azul);
        }
body[data-page="politica-privacidade"] .highlight-box{
            background: rgba(17, 85, 246, 0.05);
            border-left: 4px solid var(--azul);
            padding: 1.5rem;
            margin: 2rem 0;
        }
body[data-page="politica-privacidade"] .nav{ display: none; }
body[data-page="politica-privacidade"] .main{ padding: 120px 2rem 4rem; }
body[data-page="politica-privacidade"] .page-title{ font-size: 2rem; }
body[data-page="politica-privacidade"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="politica-privacidade"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
body[data-page="politica-privacidade"] }

/* ============================================
           FOOTER
        ============================================ */
        .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="politica-privacidade"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="politica-privacidade"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="politica-privacidade"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="politica-privacidade"] .footer-brand{ max-width: 320px; }
body[data-page="politica-privacidade"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="politica-privacidade"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="politica-privacidade"] .footer-logo-svg path, body[data-page="politica-privacidade"] .footer-logo-svg rect, body[data-page="politica-privacidade"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="politica-privacidade"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="politica-privacidade"] .footer-social{ display: flex; gap: 12px; }
body[data-page="politica-privacidade"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="politica-privacidade"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="politica-privacidade"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="politica-privacidade"] .footer-links{ list-style: none; }
body[data-page="politica-privacidade"] .footer-links li{ margin-bottom: 12px; }
body[data-page="politica-privacidade"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="politica-privacidade"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="politica-privacidade"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="politica-privacidade"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="politica-privacidade"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="politica-privacidade"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="politica-privacidade"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="politica-privacidade"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="politica-privacidade"] .footer-legal a:hover{ color: var(--verde-limao); }
/* Footer hardening (prevents accidental overrides) */
body[data-page="politica-privacidade"] .footer{
            display: block;
            width: 100%;
            background: var(--preto) !important;
            color: var(--branco) !important;
            position: relative;
            z-index: 1;
        }
body[data-page="politica-privacidade"] .footer *{ box-sizing: border-box; }
body[data-page="politica-privacidade"] .footer a{ color: rgba(255, 255, 255, 0.6); }
body[data-page="politica-privacidade"] .footer a:hover{ color: var(--verde-limao); }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="politica-privacidade"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="politica-privacidade"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="politica-privacidade"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="politica-privacidade"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="politica-privacidade"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="politica-privacidade"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
@media (max-width: 768px){
body[data-page="politica-privacidade"] .main{ padding: 120px 2rem 4rem; }
body[data-page="politica-privacidade"] .page-title{ font-size: 2rem; }
}
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="politica-privacidade"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="politica-privacidade"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="politica-privacidade"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="politica-privacidade"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="politica-privacidade"] body .footer-brand{ max-width: 320px !important; }
body[data-page="politica-privacidade"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="politica-privacidade"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="politica-privacidade"] body .footer-logo-svg path, body[data-page="politica-privacidade"] body .footer-logo-svg rect, body[data-page="politica-privacidade"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="politica-privacidade"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="politica-privacidade"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="politica-privacidade"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="politica-privacidade"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="politica-privacidade"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="politica-privacidade"] body .footer-links{ list-style: none !important; }
body[data-page="politica-privacidade"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="politica-privacidade"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="politica-privacidade"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="politica-privacidade"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="politica-privacidade"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="politica-privacidade"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="politica-privacidade"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="politica-privacidade"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="politica-privacidade"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="politica-privacidade"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="politica-privacidade"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: termos-uso.html ===== */
body[data-page="termos-uso"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="termos-uso"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --dot-bg: rgba(255, 255, 255, 0.2);}
body[data-page="termos-uso"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--branco);
            color: var(--preto);
            line-height: 1.7;
        }
/* HEADER */
body[data-page="termos-uso"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
body[data-page="termos-uso"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="termos-uso"] .logo-svg path, body[data-page="termos-uso"] .logo-svg rect, body[data-page="termos-uso"] .logo-svg polygon{
            fill: var(--preto);
        }
body[data-page="termos-uso"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="termos-uso"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--preto);
            transition: opacity 0.3s;
        }
body[data-page="termos-uso"] .nav-link:hover{ opacity: 0.6; }
/* ============================================
           HEADER
        ============================================ */
body[data-page="termos-uso"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] .header{ padding: 32px 48px; }
}
body[data-page="termos-uso"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="termos-uso"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="termos-uso"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="termos-uso"] .logo-svg path, body[data-page="termos-uso"] .logo-svg rect, body[data-page="termos-uso"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="termos-uso"] .header.logo-white .logo-svg path, body[data-page="termos-uso"] .header.logo-white .logo-svg rect, body[data-page="termos-uso"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="termos-uso"] .header.logo-green .logo-svg path, body[data-page="termos-uso"] .header.logo-green .logo-svg rect, body[data-page="termos-uso"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="termos-uso"] .header.logo-dark .logo-svg path, body[data-page="termos-uso"] .header.logo-dark .logo-svg rect, body[data-page="termos-uso"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="termos-uso"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="termos-uso"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="termos-uso"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="termos-uso"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="termos-uso"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="termos-uso"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="termos-uso"] .logo-svg{ height: 36px; }
}
body[data-page="termos-uso"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="termos-uso"] .nav-menu{ display: flex; }
}
body[data-page="termos-uso"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="termos-uso"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="termos-uso"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="termos-uso"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="termos-uso"] .menu-toggle{ display: none; }
}
body[data-page="termos-uso"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="termos-uso"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="termos-uso"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="termos-uso"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="termos-uso"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="termos-uso"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="termos-uso"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="termos-uso"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="termos-uso"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* CONTEÚDO */
body[data-page="termos-uso"] .main{
            max-width: 900px;
            margin: 0 auto;
            padding: 160px 4rem 6rem;
        }
body[data-page="termos-uso"] .page-title{
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
body[data-page="termos-uso"] .last-update{
            color: rgba(0,0,0,0.5);
            margin-bottom: 4rem;
            font-size: 0.95rem;
        }
body[data-page="termos-uso"] .content h2{
            font-size: 1.8rem;
            font-weight: 700;
            margin: 3rem 0 1rem;
        }
body[data-page="termos-uso"] .content h3{
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
        }
body[data-page="termos-uso"] .content p{
            margin-bottom: 1.2rem;
        }
body[data-page="termos-uso"] .content ul, body[data-page="termos-uso"] .content ol{
            margin: 1rem 0 1.5rem 2rem;
        }
body[data-page="termos-uso"] .content li{
            margin-bottom: 0.5rem;
        }
body[data-page="termos-uso"] .content strong{
            font-weight: 600;
            color: var(--azul);
        }
body[data-page="termos-uso"] .highlight-box{
            background: rgba(17, 85, 246, 0.05);
            border-left: 4px solid var(--azul);
            padding: 1.5rem;
            margin: 2rem 0;
        }
body[data-page="termos-uso"] .nav{ display: none; }
body[data-page="termos-uso"] .main{ padding: 120px 2rem 4rem; }
body[data-page="termos-uso"] .page-title{ font-size: 2rem; }
body[data-page="termos-uso"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="termos-uso"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
body[data-page="termos-uso"] }

/* ============================================
           FOOTER
        ============================================ */
        .footer{
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] .footer{ padding: 120px 48px 48px; }
}
body[data-page="termos-uso"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="termos-uso"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="termos-uso"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="termos-uso"] .footer-brand{ max-width: 320px; }
body[data-page="termos-uso"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="termos-uso"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="termos-uso"] .footer-logo-svg path, body[data-page="termos-uso"] .footer-logo-svg rect, body[data-page="termos-uso"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="termos-uso"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="termos-uso"] .footer-social{ display: flex; gap: 12px; }
body[data-page="termos-uso"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="termos-uso"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="termos-uso"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="termos-uso"] .footer-links{ list-style: none; }
body[data-page="termos-uso"] .footer-links li{ margin-bottom: 12px; }
body[data-page="termos-uso"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="termos-uso"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="termos-uso"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="termos-uso"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="termos-uso"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="termos-uso"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="termos-uso"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="termos-uso"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="termos-uso"] .footer-legal a:hover{ color: var(--verde-limao); }
/* Footer hardening (prevents accidental overrides) */
body[data-page="termos-uso"] .footer{
            display: block;
            width: 100%;
            background: var(--preto) !important;
            color: var(--branco) !important;
            position: relative;
            z-index: 1;
        }
body[data-page="termos-uso"] .footer *{ box-sizing: border-box; }
body[data-page="termos-uso"] .footer a{ color: rgba(255, 255, 255, 0.6); }
body[data-page="termos-uso"] .footer a:hover{ color: var(--verde-limao); }
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="termos-uso"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="termos-uso"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="termos-uso"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="termos-uso"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="termos-uso"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="termos-uso"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
@media (max-width: 768px){
body[data-page="termos-uso"] .main{ padding: 120px 2rem 4rem; }
body[data-page="termos-uso"] .page-title{ font-size: 2rem; }
}
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="termos-uso"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="termos-uso"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="termos-uso"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="termos-uso"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="termos-uso"] body .footer-brand{ max-width: 320px !important; }
body[data-page="termos-uso"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="termos-uso"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="termos-uso"] body .footer-logo-svg path, body[data-page="termos-uso"] body .footer-logo-svg rect, body[data-page="termos-uso"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="termos-uso"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="termos-uso"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="termos-uso"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="termos-uso"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="termos-uso"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="termos-uso"] body .footer-links{ list-style: none !important; }
body[data-page="termos-uso"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="termos-uso"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="termos-uso"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="termos-uso"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="termos-uso"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="termos-uso"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="termos-uso"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="termos-uso"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="termos-uso"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="termos-uso"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="termos-uso"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ===== Scoped: case-template.html ===== */
body[data-page="case-template"] *{ margin: 0; padding: 0; box-sizing: border-box; }
body[data-page="case-template"]{
            --azul: #1155F6;
            --verde-limao: #CCFF8D;
            --preto: #181818;
            --branco: #FFFFFF;
        }
body[data-page="case-template"]{
            font-family: 'Space Grotesk', sans-serif;
            background: var(--branco);
            color: var(--preto);
            overflow-x: hidden;
        }
/* HEADER */
body[data-page="case-template"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
        }
body[data-page="case-template"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="case-template"] .logo-svg path, body[data-page="case-template"] .logo-svg rect, body[data-page="case-template"] .logo-svg polygon{
            fill: var(--preto);
        }
body[data-page="case-template"] .nav{ display: flex; gap: 2.5rem; list-style: none; }
body[data-page="case-template"] .nav-link{
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--preto);
            transition: opacity 0.3s;
        }
body[data-page="case-template"] .nav-link:hover{ opacity: 0.6; }
/* HERO */
body[data-page="case-template"] .hero{
            width: 100%;
            height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 4rem;
            background: rgba(0,0,0,0.03);
        }
body[data-page="case-template"] .hero-placeholder{
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.2);
            font-size: 1.2rem;
            border: 3px dashed rgba(0,0,0,0.1);
            overflow: hidden;
        }
body[data-page="case-template"] .hero-placeholder:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="case-template"] .hero-placeholder img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
body[data-page="case-template"] .hero-placeholder:has(img)::after{
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
            pointer-events: none;
        }
body[data-page="case-template"] .hero:has(.hero-placeholder img) .hero-title,
body[data-page="case-template"] .hero:has(.hero-placeholder img) .hero-tagline,
body[data-page="case-template"] .hero:has(.hero-placeholder img) .hero-tags{
            color: var(--branco);
        }
body[data-page="case-template"] .hero-content{
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }
body[data-page="case-template"] .hero-title{
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
body[data-page="case-template"] .hero-tagline{
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            font-weight: 400;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }
body[data-page="case-template"] .hero-tags{
            display: flex;
            gap: 1rem;
            font-size: 0.95rem;
            opacity: 0.6;
        }
/* SECTIONS */
body[data-page="case-template"] .section{
            padding: 8rem 4rem;
        }
body[data-page="case-template"] .section-content{
            max-width: 1400px;
            margin: 0 auto;
        }
body[data-page="case-template"] .section-title{
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
        }
/* CONTEXTO */
body[data-page="case-template"] .contexto-grid{
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: start;
        }
body[data-page="case-template"] .contexto-text p{
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
body[data-page="case-template"] .info-box{
            background: rgba(0,0,0,0.03);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--azul);
            position: sticky;
            top: 150px;
        }
body[data-page="case-template"] .info-box h3{
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--azul);
            margin-bottom: 1.5rem;
        }
body[data-page="case-template"] .info-item{
            margin-bottom: 1.2rem;
        }
body[data-page="case-template"] .info-label{
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(0,0,0,0.5);
            margin-bottom: 0.3rem;
        }
body[data-page="case-template"] .info-value{
            font-size: 1.05rem;
            font-weight: 500;
        }
/* INSIGHT */
body[data-page="case-template"] .insight{
            background: var(--verde-limao);
            color: var(--preto);
        }
body[data-page="case-template"] .insight-text p{
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 900px;
        }
/* EXECUÇÃO */
body[data-page="case-template"] .execucao-intro{
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 4rem;
            max-width: 800px;
        }
body[data-page="case-template"] .galeria-grid{
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }
@media (max-width: 900px){
body[data-page="case-template"] .galeria-grid{ grid-template-columns: 1fr; }
}
body[data-page="case-template"] .galeria-item{
            aspect-ratio: 16/9;
            background: rgba(0,0,0,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(0,0,0,0.1);
            color: rgba(0,0,0,0.35);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;

            /* button reset */
            appearance: none;
            -webkit-appearance: none;
            padding: 0;
            width: 100%;
            font-family: inherit;
            font-size: 0.9rem;
            background-clip: padding-box;
            overflow: hidden;
            position: relative;

            transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow .35s ease,
                        border-color .25s ease,
                        background .25s ease;
        }
body[data-page="case-template"] .galeria-item:has(img){
            border: 0;
            background: transparent;
        }
body[data-page="case-template"] .galeria-item img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.4s ease;
            display: block;
        }
body[data-page="case-template"] .galeria-item:hover{
            transform: translateY(-3px);
            border-color: rgba(0,0,0,0.18);
            background: rgba(0,0,0,0.06);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
        }
body[data-page="case-template"] .galeria-item:hover img{
            transform: scale(1.05);
            filter: saturate(1.1);
        }
body[data-page="case-template"] .galeria-item:focus-visible{
            outline: 2px solid var(--verde-limao);
            outline-offset: 4px;
        }
/* RESULTADO */
body[data-page="case-template"] .resultado-numeros{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
body[data-page="case-template"] .numero-card{
            text-align: center;
            padding: 2rem;
        }
body[data-page="case-template"] .numero-valor{
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--azul);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
body[data-page="case-template"] .numero-label{
            font-size: 1.1rem;
            line-height: 1.5;
            opacity: 0.7;
        }
body[data-page="case-template"] .resultado-texto p{
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            max-width: 800px;
        }
/* CTA */
body[data-page="case-template"] .cta{
            background: var(--azul);
            color: var(--branco);
            text-align: left;
            }
body[data-page="case-template"] .cta .section-content{
            display:flex;
            flex-direction:column;
            align-items:flex-start;
        }
body[data-page="case-template"] .cta-title, body[data-page="case-template"] .cta-text{max-width: 1100px; margin-right:auto; margin-left:0;
        }
body[data-page="case-template"] .cta-text{opacity:0.9;}
body[data-page="case-template"] .cta-title{
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
body[data-page="case-template"] .cta-text{
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            opacity: 0.9;
        }
body[data-page="case-template"] .btn{
            background: var(--verde-limao);
            color: var(--preto);
            transition: all 0.3s;
        }
body[data-page="case-template"] .btn:hover{
            background: #B8E87A;
            transform: translateY(-2px);
        }
body[data-page="case-template"] .execucao-link{
            margin: 4rem 0 0;
            padding: 2.5rem 3rem;
            background: rgba(17, 85, 246, 0.06);
            border-radius: 16px;
            text-align: left;
            max-width: 800px;
        }
body[data-page="case-template"] .execucao-link-text{
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--preto);
            margin: 0 0 1.75rem 0;
            max-width: 640px;
            opacity: 0.85;
        }
body[data-page="case-template"] .execucao-link-btn{
            display: inline-block;
            width: auto;
            font-size: 1rem;
            padding: 1rem 2.25rem;
            margin-right: 1rem;
        }
body[data-page="case-template"] .execucao-link-btn:last-child{
            margin-right: 0;
        }
@media (max-width: 600px){
body[data-page="case-template"] .execucao-link{ padding: 2rem 1.5rem; }
body[data-page="case-template"] .execucao-link-btn{
            display: block;
            margin-right: 0;
            margin-bottom: 0.75rem;
            text-align: center;
        }
body[data-page="case-template"] .execucao-link-btn:last-child{ margin-bottom: 0; }
}
/* SITES PORTFOLIO (cards de sites/produtos digitais entregues) */
body[data-page="case-template"] .sites-portfolio{
            margin: 4rem 0 0;
        }
body[data-page="case-template"] .sites-portfolio-intro{
            font-size: clamp(1.25rem, 2vw, 1.6rem);
            line-height: 1.5;
            font-weight: 500;
            color: var(--preto);
            margin: 0 0 3rem 0;
            max-width: 1050px;
        }
body[data-page="case-template"] .sites-portfolio-grid{
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }
@media (max-width: 900px){
body[data-page="case-template"] .sites-portfolio-grid{ grid-template-columns: 1fr; }
}
body[data-page="case-template"] .site-card{
            display: flex;
            flex-direction: column;
            background: rgba(17, 85, 246, 0.06);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: var(--preto);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(17, 85, 246, 0.12);
        }
body[data-page="case-template"] .site-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(17, 85, 246, 0.18);
            border-color: rgba(17, 85, 246, 0.25);
        }
body[data-page="case-template"] .site-card-thumb{
            position: relative;
            aspect-ratio: 16 / 10;
            background: rgba(0,0,0,0.05);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.4);
            font-size: 0.85rem;
            text-align: center;
            padding: 1rem;
        }
body[data-page="case-template"] .site-card-thumb img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
body[data-page="case-template"] .site-card:hover .site-card-thumb img{
            transform: scale(1.04);
        }
body[data-page="case-template"] .site-card-content{
            padding: 1.75rem 2rem 2rem;
        }
body[data-page="case-template"] .site-card-label{
            display: block;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--azul);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
body[data-page="case-template"] .site-card-title{
            font-size: 1.4rem;
            line-height: 1.25;
            margin: 0 0 0.75rem 0;
            word-break: break-word;
            font-weight: 600;
        }
body[data-page="case-template"] .site-card-desc{
            font-size: 0.95rem;
            line-height: 1.55;
            color: var(--preto);
            opacity: 0.75;
            margin: 0 0 1.25rem 0;
        }
body[data-page="case-template"] .site-card-cta{
            display: inline-block;
            font-weight: 600;
            color: var(--azul);
            font-size: 0.95rem;
        }
body[data-page="case-template"] .site-card:hover .site-card-cta{
            text-decoration: underline;
        }
@media (max-width: 600px){
body[data-page="case-template"] .site-card-content{ padding: 1.5rem; }
body[data-page="case-template"] .site-card-title{ font-size: 1.2rem; }
}
/* NAVEGAÇÃO */
body[data-page="case-template"] .navegacao{
            background: #f5f5f5;
            padding: 4rem;
        }
body[data-page="case-template"] .navegacao-content{
            max-width: 1400px;
            margin: 0 auto;
        }
body[data-page="case-template"] .navegacao-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
body[data-page="case-template"] .nav-card{
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            text-decoration: none;
            color: var(--preto);
            transition: all 0.3s;
        }
body[data-page="case-template"] .nav-card:hover{
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }
body[data-page="case-template"] .nav-card.prev{
            flex-direction: row;
        }
body[data-page="case-template"] .nav-card.next{
            flex-direction: row-reverse;
        }
body[data-page="case-template"] .nav-thumb{
            width: 120px;
            height: 80px;
            background: rgba(0,0,0,0.05);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: rgba(0,0,0,0.3);
            overflow: hidden;
        }
body[data-page="case-template"] .nav-thumb img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
body[data-page="case-template"] .nav-card:hover .nav-thumb img{
            transform: scale(1.06);
        }
body[data-page="case-template"] .nav-info h3{
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(0,0,0,0.5);
            margin-bottom: 0.5rem;
        }
body[data-page="case-template"] .nav-info p{
            font-size: 1.2rem;
            font-weight: 600;
        }
body[data-page="case-template"] .nav-center{
            text-align: center;
        }
body[data-page="case-template"] .nav-center a{
            color: var(--azul);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: opacity 0.3s;
        }
body[data-page="case-template"] .nav-center a:hover{
            opacity: 0.7;
        }
/* FOOTER */
body[data-page="case-template"] .footer{
            background: var(--preto);
            padding: 128px 64px 56px;
            position: relative;
        }
body[data-page="case-template"] .footer::before{
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--verde-limao) 20%, var(--verde-limao) 80%, transparent);
            opacity: 0.3;
        }
body[data-page="case-template"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="case-template"] .footer-grid{
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
            gap: 72px;
            margin-bottom: 72px;
        }
body[data-page="case-template"] .footer-logo-text{
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--branco);
        }
body[data-page="case-template"] .footer-tagline{
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 28px;
        }
body[data-page="case-template"] .footer-social{ display: flex; gap: 14px; }
body[data-page="case-template"] .footer-social a{
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.4s;
        }
body[data-page="case-template"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="case-template"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--verde-limao);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
body[data-page="case-template"] .footer-column-title::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--verde-limao);
            opacity: 0.4;
        }
body[data-page="case-template"] .footer-links{ list-style: none; padding: 0; }
body[data-page="case-template"] .footer-links li{ margin-bottom: 14px; }
body[data-page="case-template"] .footer-links a{
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="case-template"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="case-template"] .footer-contact-item{
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
        }
body[data-page="case-template"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
body[data-page="case-template"] .footer-copyright{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="case-template"] .footer-legal{ display: flex; gap: 28px; }
body[data-page="case-template"] .footer-legal a{
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.3s;
        }
body[data-page="case-template"] .footer-legal a:hover{ color: var(--verde-limao); }
@media (max-width: 1024px){
body[data-page="case-template"] .contexto-grid{ grid-template-columns: 1fr; }
body[data-page="case-template"] .info-box{ position: relative; top: 0; }
body[data-page="case-template"] .navegacao-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 768px){
body[data-page="case-template"] .header{ padding: 1.5rem 2rem; }
body[data-page="case-template"] .nav{ display: none; }
body[data-page="case-template"] .hero{ padding: 2rem; height: 60vh; }
body[data-page="case-template"] .section{ padding: 4rem 2rem; }
body[data-page="case-template"] .footer-grid{ grid-template-columns: 1fr; gap: 48px; }
body[data-page="case-template"] .footer-bottom{ flex-direction: column; gap: 20px; text-align: left; }
}
/* ============================================
           PADRÃO HOME (MENU + FOOTER + LOADER)
        ============================================ */
/* ============================================
           HOME TOKENS (EXTENSÃO)
        ============================================ */
body[data-page="case-template"]{
            --azul-dark: #0D44C4;
            --azul-light: #3D7AFF;
            --verde-dark: #B8E87A;
            --cinza-claro: #E2E2E2;
            --cinza-medio: #A0A0A0;
            --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
        }
body[data-page="case-template"] .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            backdrop-filter: none;
            mix-blend-mode: normal;
        }
@media (min-width: 768px){
body[data-page="case-template"] .header{ padding: 32px 48px; }
}
body[data-page="case-template"] .logo{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--branco);
            transition: opacity 0.3s ease;
        }
body[data-page="case-template"] .logo:hover{
            opacity: 0.8;
        }
body[data-page="case-template"] .logo-svg{
            height: 32px;
            width: auto;
        }
body[data-page="case-template"] .logo-svg path, body[data-page="case-template"] .logo-svg rect, body[data-page="case-template"] .logo-svg polygon{
            fill: var(--branco);
            transition: fill 0.4s ease;
        }
/* Cores da logo por seção */
body[data-page="case-template"] .header.logo-white .logo-svg path, body[data-page="case-template"] .header.logo-white .logo-svg rect, body[data-page="case-template"] .header.logo-white .logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="case-template"] .header.logo-green .logo-svg path, body[data-page="case-template"] .header.logo-green .logo-svg rect, body[data-page="case-template"] .header.logo-green .logo-svg polygon{
            fill: var(--verde-limao) !important;
        }
body[data-page="case-template"] .header.logo-dark .logo-svg path, body[data-page="case-template"] .header.logo-dark .logo-svg rect, body[data-page="case-template"] .header.logo-dark .logo-svg polygon{
            fill: var(--preto) !important;
        }
/* Cores do menu por seção */
body[data-page="case-template"] .header.logo-white .nav-link{ color: var(--branco) !important; }
body[data-page="case-template"] .header.logo-green .nav-link{ color: var(--verde-limao) !important; }
body[data-page="case-template"] .header.logo-dark .nav-link{ color: var(--preto) !important; }
/* Cores do hamburger por seção */
body[data-page="case-template"] .header.logo-white .menu-toggle span{ background: var(--branco) !important; }
body[data-page="case-template"] .header.logo-green .menu-toggle span{ background: var(--verde-limao) !important; }
body[data-page="case-template"] .header.logo-dark .menu-toggle span{ background: var(--preto) !important; }
@media (min-width: 768px){
body[data-page="case-template"] .logo-svg{ height: 36px; }
}
body[data-page="case-template"] .nav-menu{
            display: none;
            list-style: none;
            gap: 40px;
        }
@media (min-width: 1024px){
body[data-page="case-template"] .nav-menu{ display: flex; }
}
body[data-page="case-template"] .nav-link{
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--branco);
            text-decoration: none;
            position: relative;
            padding: 4px 0;
            transition: color 0.4s ease;
        }
body[data-page="case-template"] .nav-link::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s var(--ease-out-expo);
        }
body[data-page="case-template"] .nav-link:hover::after{ width: 100%; }
/* Menu Toggle */
body[data-page="case-template"] .menu-toggle{
            width: 48px;
            height: 48px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
        }
@media (min-width: 1024px){
body[data-page="case-template"] .menu-toggle{ display: none; }
}
body[data-page="case-template"] .menu-toggle span{
            width: 24px;
            height: 2px;
            background: var(--branco);
            border-radius: 2px;
            transition: all 0.4s var(--ease-out-expo);
        }
body[data-page="case-template"] .menu-toggle.active span:nth-child(1){
            transform: rotate(45deg) translate(5px, 6px);
        }
body[data-page="case-template"] .menu-toggle.active span:nth-child(2){ opacity: 0; }
body[data-page="case-template"] .menu-toggle.active span:nth-child(3){
            transform: rotate(-45deg) translate(5px, -6px);
        }
/* Mobile Menu */
body[data-page="case-template"] .mobile-menu{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="case-template"] .mobile-menu.active{
            opacity: 1;
            visibility: visible;
        }
body[data-page="case-template"] .mobile-menu-link{
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: var(--branco);
            text-decoration: none;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s var(--ease-out-expo);
        }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link{
            opacity: 1;
            transform: translateY(0);
        }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(1){ transition-delay: 0.1s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(2){ transition-delay: 0.15s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(3){ transition-delay: 0.2s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(4){ transition-delay: 0.25s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(5){ transition-delay: 0.3s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(6){ transition-delay: 0.35s; }
body[data-page="case-template"] .mobile-menu.active .mobile-menu-link:nth-child(7){ transition-delay: 0.4s; }
body[data-page="case-template"] .mobile-menu-link:hover{ color: var(--verde-limao); }
/* ============================================
           SCROLL PROGRESS
        ============================================ */
body[data-page="case-template"] .footer{
            background: var(--preto) !important;
            color: var(--branco) !important;
            background: var(--preto);
            padding: 80px 24px 40px;
            scroll-snap-align: start;
        }
@media (min-width: 768px){
body[data-page="case-template"] .footer{
            background: var(--preto) !important;
            color: var(--branco) !important; padding: 120px 48px 48px; }
}
body[data-page="case-template"] .footer-content{ max-width: 1400px; margin: 0 auto; }
body[data-page="case-template"] .footer-grid{
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
@media (min-width: 768px){
body[data-page="case-template"] .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px){
body[data-page="case-template"] .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
}
body[data-page="case-template"] .footer-brand{ max-width: 320px; }
body[data-page="case-template"] .footer-logo{
            margin-bottom: 20px;
        }
body[data-page="case-template"] .footer-logo-svg{
            height: 40px;
            width: auto;
        }
body[data-page="case-template"] .footer-logo-svg path, body[data-page="case-template"] .footer-logo-svg rect, body[data-page="case-template"] .footer-logo-svg polygon{
            fill: var(--branco);
        }
body[data-page="case-template"] .footer-tagline{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 24px;
        }
body[data-page="case-template"] .footer-social{ display: flex; gap: 12px; }
body[data-page="case-template"] .footer-social a{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branco);
            transition: all 0.3s var(--ease-out-expo);
        }
body[data-page="case-template"] .footer-social a:hover{
            background: var(--azul);
            transform: translateY(-4px);
        }
body[data-page="case-template"] .footer-column-title{
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--verde-limao);
            margin-bottom: 20px;
        }
body[data-page="case-template"] .footer-links{ list-style: none; }
body[data-page="case-template"] .footer-links li{ margin-bottom: 12px; }
body[data-page="case-template"] .footer-links a{
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="case-template"] .footer-links a:hover{ color: var(--verde-limao); }
body[data-page="case-template"] .footer-contact-item{
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
        }
body[data-page="case-template"] .footer-contact-icon{ flex-shrink: 0; color: var(--azul); }
body[data-page="case-template"] .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: left;
        }
@media (min-width: 768px){
body[data-page="case-template"] .footer-bottom{
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
}
body[data-page="case-template"] .footer-copyright{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
        }
body[data-page="case-template"] .footer-legal{ display: flex; gap: 24px; }
body[data-page="case-template"] .footer-legal a{
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }
body[data-page="case-template"] .footer-legal a:hover{ color: var(--verde-limao); }
/* ============================================
           
/* ============================================
           LOADING SCREEN
        ============================================ */
body[data-page="case-template"] .loader{
            position: fixed;
            inset: 0;
            background: var(--azul);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
body[data-page="case-template"] .loader.hidden{
            opacity: 0;
            visibility: hidden;
        }
body[data-page="case-template"] .loader-logo{
            width: 80px;
            height: 80px;
            background: var(--branco);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            animation: pulse 1.5s ease-in-out infinite;
        }
@keyframes pulse{
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
body[data-page="case-template"] .loader-text{
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
        }
body[data-page="case-template"] .loader-bar{
            width: 120px;
            height: 3px;
            background: var(--dot-bg);
            border-radius: 3px;
            overflow: hidden;
        }
body[data-page="case-template"] .loader-bar-fill{
            height: 100%;
            background: var(--verde-limao);
            border-radius: 3px;
            animation: loading 1.5s ease-in-out infinite;
        }
@keyframes loading{
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }
/* LIGHTBOX */
body[data-page="case-template"] .lightbox{ position: fixed; inset: 0; z-index: 9999; display: none; }
body[data-page="case-template"] .lightbox.is-open{ display:block; }
body[data-page="case-template"] .lightbox-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,0.75); }
body[data-page="case-template"] .lightbox-panel{
            position: relative;
            width: min(1100px, calc(100vw - 48px));
            margin: 48px auto;
            background: var(--branco);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 120px rgba(0,0,0,0.35);
        }
body[data-page="case-template"] .lightbox-close{
            position:absolute;
            top: 16px;
            right: 16px;
            width: 44px; height: 44px;
            border-radius: 999px;
            border: 1px solid rgba(0,0,0,0.10);
            background: rgba(255,255,255,0.92);
            font-size: 28px;
            line-height: 1;
            cursor:pointer;
        }
body[data-page="case-template"] .lightbox-media{
            aspect-ratio: 16/9;
            background: rgba(0,0,0,0.06);
            display:flex;
            align-items:center;
            justify-content:center;
            color: rgba(0,0,0,0.45);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
body[data-page="case-template"] .lightbox-media img, body[data-page="case-template"] .lightbox-media video{
            width:100%;
            height:100%;
            object-fit: cover;
            display:block;
        }
body[data-page="case-template"] .lightbox-meta{
            padding: 28px 28px 32px;
        }
body[data-page="case-template"] .lightbox-title{
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
body[data-page="case-template"] .lightbox-desc{
            font-size: 1.05rem;
            line-height: 1.6;
            color: rgba(0,0,0,0.70);
            margin-bottom: 14px;
        }
@media (max-width: 700px){
body[data-page="case-template"] .lightbox-panel{ width: calc(100vw - 24px); margin: 18px auto; border-radius: 18px; }
body[data-page="case-template"] .lightbox-meta{ padding: 20px 18px 24px; }
}
body[data-page="case-template"] .no-scroll{ overflow:hidden !important; }
/* ============================================
   FOOTER (PADRÃO DO ARQUIVO-MÃE / HOME)
============================================ */
/* ============================================
           FOOTER
        ============================================ */
body[data-page="case-template"] body .footer{
            background: var(--preto) !important;
            padding: 80px 24px 40px !important;
            scroll-snap-align: start !important;
        }
@media (min-width: 768px){
body[data-page="case-template"] body .footer{ padding: 120px 48px 48px !important; }
}
body[data-page="case-template"] body .footer-content{ max-width: 1400px !important; margin: 0 auto !important; }
body[data-page="case-template"] body .footer-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 48px !important;
            margin-bottom: 64px !important;
        }
@media (min-width: 768px){
body[data-page="case-template"] body .footer-grid{ grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px){
body[data-page="case-template"] body .footer-grid{ grid-template-columns: 2fr 1fr 1fr 1fr !important; gap: 64px !important; }
}
body[data-page="case-template"] body .footer-brand{ max-width: 320px !important; }
body[data-page="case-template"] body .footer-logo{
            margin-bottom: 20px !important;
        }
body[data-page="case-template"] body .footer-logo-svg{
            height: 40px !important;
            width: auto !important;
        }
body[data-page="case-template"] body .footer-logo-svg path, body[data-page="case-template"] body .footer-logo-svg rect, body[data-page="case-template"] body .footer-logo-svg polygon{
            fill: var(--branco) !important;
        }
body[data-page="case-template"] body .footer-tagline{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            line-height: 1.6 !important;
            margin-bottom: 24px !important;
        }
body[data-page="case-template"] body .footer-social{ display: flex !important; gap: 12px !important; }
body[data-page="case-template"] body .footer-social a{
            width: 44px !important;
            height: 44px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 10px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--branco) !important;
            transition: all 0.3s var(--ease-out-expo) !important;
        }
body[data-page="case-template"] body .footer-social a:hover{
            background: var(--azul) !important;
            transform: translateY(-4px) !important;
        }
body[data-page="case-template"] body .footer-column-title{
            font-size: 0.75rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.1em !important;
            color: var(--verde-limao) !important;
            margin-bottom: 20px !important;
        }
body[data-page="case-template"] body .footer-links{ list-style: none !important; }
body[data-page="case-template"] body .footer-links li{ margin-bottom: 12px !important; }
body[data-page="case-template"] body .footer-links a{
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="case-template"] body .footer-links a:hover{ color: var(--verde-limao) !important; }
body[data-page="case-template"] body .footer-contact-item{
            display: flex !important;
            gap: 12px !important;
            margin-bottom: 16px !important;
            font-size: 0.9375rem !important;
            color: rgba(255, 255, 255, 0.6) !important;
        }
body[data-page="case-template"] body .footer-contact-icon{ flex-shrink: 0 !important; color: var(--azul) !important; }
body[data-page="case-template"] body .footer-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            padding-top: 32px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 16px !important;
            align-items: flex-start !important;
            text-align: center !important;
        }
@media (min-width: 768px){
body[data-page="case-template"] body .footer-bottom{
                flex-direction: row !important;
                justify-content: space-between !important;
                text-align: left !important;
            }
}
body[data-page="case-template"] body .footer-copyright{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
        }
body[data-page="case-template"] body .footer-legal{ display: flex !important; gap: 24px !important; }
body[data-page="case-template"] body .footer-legal a{
            font-size: 0.8125rem !important;
            color: rgba(255, 255, 255, 0.4) !important;
            text-decoration: none !important;
            transition: color 0.3s ease !important;
        }
body[data-page="case-template"] body .footer-legal a:hover{ color: var(--verde-limao) !important; }


/* ============================================
   LOADER: fallback anti-travamento
   - Caso algum JS não rode (ou trave), o loader some sozinho
   - Mantém o "tempo padrão" (1s) como nas demais páginas
   ============================================ */
body[data-page] .loader{
    opacity: 1;
    visibility: visible;
    animation: loaderAutoHide 0.6s ease forwards;
    animation-delay: 2s;
}


body[data-page] .loader.hidden{pointer-events:none;}

@keyframes loaderAutoHide{
    to{
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}


/* ===========================================
   LOADER: padrão visual único (todas as páginas)
   - Evita diferenças entre páginas (Trabalhos/Processo/etc.)
   - Usa animação própria (loadingStandard) para não conflitar com @keyframes 'loading' já existentes no CSS
   ============================================ */
body[data-page] .loader-logo{
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul);
    animation: pulse 1.5s ease-in-out infinite;
}

body[data-page] .loader-text{
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

body[data-page] .loader-bar{
    width: 120px;
    height: 3px;
    background: var(--dot-bg);
    border-radius: 3px;
    overflow: hidden;
}

body[data-page] .loader-bar-fill{
    height: 100%;
    width: 0;
    background: var(--verde-limao);
    border-radius: 3px;
    animation: loadingStandard 1.5s ease-in-out infinite;
}

/* Hidden global (independe do data-page específico) */
.loader.hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes loadingStandard{
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

#loader {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: none;
}

#loader.hidden {
  display: flex !important;
  opacity: 1 !important;
}
/* ========================================
   FORMULÁRIO DE CONTATO
   ======================================== */

.calanga-form {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(17, 85, 246, 0.08);
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  font-size: 2.5rem;
  color: #1155F6;
  margin-bottom: 12px;
  font-weight: 700;
}

.form-intro p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #181818;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #E2E2E2;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
  color: #181818;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #CCFF8D;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1155F6;
  background: white;
  box-shadow: 0 0 0 4px rgba(17, 85, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-consent .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #1155F6;
  cursor: pointer;
}

.form-consent a {
  color: #1155F6;
  text-decoration: underline;
}

.form-consent a:hover {
  color: #0d3fb5;
}

a.btn,
button.btn,
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 1.5rem 4.5rem !important;
  min-height: 64px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: auto;
  max-width: 100%;
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}
/* Garantir respiro lateral em containers de CTA (todas as páginas) */
.cta-content,
.cta-buttons,
.calanga-intro-text > .fade-up{
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}
/* Mobile: respiro adicional em CTAs */
@media (max-width: 768px){
  .cta-buttons{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/* Modificador opcional: ocupar 100% da largura (uso em form submit) */
.btn-block,
form .btn {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1155F6 0%, #0d44c7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(17, 85, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0d44c7 0%, #0a368f 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(17, 85, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(17, 85, 246, 0.3);
}

/* Animação de carregamento */
.btn-primary:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mensagem de sucesso (Formspree) */
.formspree-message {
  padding: 20px;
  background: #CCFF8D;
  color: #181818;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

/* ========================================
   RESPONSIVO
   ======================================== */

@media (max-width: 768px) {
  .form-container {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .form-intro h2 {
    font-size: 2rem;
  }

  .form-intro p {
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .btn {
    padding: 20px 56px !important;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .calanga-form {
    padding: 60px 16px;
  }

  .form-container {
    padding: 24px 20px;
  }

  .form-intro h2 {
    font-size: 1.75rem;
  }
}


/* ========================================
   MENSAGENS DE FEEDBACK
   ======================================== */

.form-message {
  margin-top: 32px;
  padding: 32px;
  border-radius: 16px;
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success {
  background: linear-gradient(135deg, #CCFF8D 0%, #b8f066 100%);
  border: 2px solid #a8e050;
}

.form-error {
  background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
  border: 2px solid #ffb3b3;
}

.message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.message-content svg {
  flex-shrink: 0;
}

.message-content h3 {
  font-size: 1.5rem;
  color: #181818;
  margin: 0;
  font-weight: 700;
}

.message-content p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.message-content a {
  color: #1155F6;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #1155F6;
  transition: all 0.3s ease;
}

.message-content a:hover {
  color: #0d44c7;
  border-bottom-color: #0d44c7;
}

/* Estado de loading do botão */
.btn-primary:disabled {
  background: linear-gradient(135deg, #7a9fd4 0%, #6384b8 100%);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Responsivo */
@media (max-width: 768px) {
  .form-message {
    padding: 24px 20px;
    margin-top: 24px;
  }

  .message-content h3 {
    font-size: 1.25rem;
  }

  .message-content p {
    font-size: 1rem;
  }

  .message-content svg {
    width: 40px;
    height: 40px;
  }
}

/* =========================
   Cookie banner (LGPD)
   Uses body[data-page] prefix to outrank page-level
   universal resets that zero padding/margin.
   ========================= */
body[data-page] .cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  width: min(720px, calc(100% - 64px));
  max-width: 720px;
  background: #181818;
  color: #f2f2f2;
  border: 1px solid rgba(242, 242, 242, 0.12);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body[data-page] .cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body[data-page] .cookie-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

body[data-page] .cookie-banner-text {
  flex: 1 1 100%;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.88);
  padding: 0;
  margin: 0;
}

body[data-page] .cookie-banner-text strong {
  color: #CCFF8D;
  font-weight: 600;
  margin-right: 4px;
}

body[data-page] .cookie-banner-text a {
  color: #CCFF8D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body[data-page] .cookie-banner-text a:hover {
  color: #b8e87a;
}

body[data-page] .cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
  align-self: flex-end;
  padding: 0;
}

body[data-page] .cookie-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.2px;
  white-space: nowrap;
  margin: 0;
}

body[data-page] .cookie-btn-reject {
  background: transparent;
  color: #f2f2f2;
  border-color: rgba(242, 242, 242, 0.3);
}

body[data-page] .cookie-btn-reject:hover {
  border-color: #f2f2f2;
  background: rgba(242, 242, 242, 0.06);
}

body[data-page] .cookie-btn-accept {
  background: #CCFF8D;
  color: #181818;
}

body[data-page] .cookie-btn-accept:hover {
  background: #b8e87a;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  body[data-page] .cookie-banner {
    bottom: 16px;
    padding: 22px 20px;
    border-radius: 16px;
    width: calc(100% - 24px);
  }
  body[data-page] .cookie-banner-inner {
    gap: 18px;
  }
  body[data-page] .cookie-banner-actions {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }
  body[data-page] .cookie-btn {
    flex: 1;
    padding: 13px 16px;
  }
}

/* ============================================================
   CAMADA 1 — MICROINTERAÇÕES (não toca trabalhos/relatorios)
   ============================================================ */

/* --- 1.1 Botões: lift + shadow padronizado ---------------- */
body[data-page="index"] .btn,
body[data-page="sobre"] .btn,
body[data-page="servicos"] .btn,
body[data-page="servicos"] .btn-cta,
body[data-page="processo"] .btn,
body[data-page="estudio"] .btn,
body[data-page="contato"] .btn,
body[data-page="case-template"] .btn,
body[data-page="estudio"] .simulador-btn{
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.2s ease,
                color 0.2s ease;
}
body[data-page="index"] .btn:hover,
body[data-page="sobre"] .btn:hover,
body[data-page="servicos"] .btn:hover,
body[data-page="servicos"] .btn-cta:hover,
body[data-page="processo"] .btn:hover,
body[data-page="estudio"] .btn:hover,
body[data-page="contato"] .btn:hover,
body[data-page="case-template"] .btn:hover,
body[data-page="estudio"] .simulador-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}
body[data-page="index"] .btn:active,
body[data-page="sobre"] .btn:active,
body[data-page="servicos"] .btn:active,
body[data-page="servicos"] .btn-cta:active,
body[data-page="processo"] .btn:active,
body[data-page="estudio"] .btn:active,
body[data-page="contato"] .btn:active,
body[data-page="case-template"] .btn:active{
    transform: translateY(-1px);
}

/* CTA submit do formulário de contato */
body[data-page="contato"] .btn-primary,
body[data-page="contato"] .whatsapp-btn{
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
body[data-page="contato"] .btn-primary:hover,
body[data-page="contato"] .whatsapp-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* --- 1.2 Hover em imagens (sobre, estudio) ---------------- */
body[data-page="sobre"] .carousel-placeholder img,
body[data-page="sobre"] .image-placeholder img,
body[data-page="estudio"] .studio-gallery-slide img{
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.4s ease;
}
body[data-page="sobre"] .raizes-image:hover .image-placeholder img,
body[data-page="estudio"] .studio-gallery-frame:hover .studio-gallery-slide.active img{
    transform: scale(1.04);
    filter: saturate(1.08);
}

/* Cards de serviço (home) com lift */
body[data-page="index"] .service-card{
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
body[data-page="index"] .service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 85, 246, 0.1);
}

/* Calanga icons (sobre, estudio) hover bobble */
body[data-page="sobre"] .calanga-column,
body[data-page="sobre"] .metodo-block,
body[data-page="estudio"] .equipamento-block,
body[data-page="estudio"] .processo-block,
body[data-page="estudio"] .publico-bloco{
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
body[data-page="sobre"] .calanga-column:hover,
body[data-page="estudio"] .equipamento-block:hover,
body[data-page="estudio"] .publico-bloco:hover{
    transform: translateY(-4px);
}

/* --- 1.3 Cascade reveal nas listas dos serviços ---------- */
@keyframes cascade-in{
    from{ opacity: 0; transform: translateY(8px); }
    to{ opacity: 1; transform: translateY(0); }
}
body[data-page="servicos"] .servico-lista ul li{
    opacity: 0;
    animation: cascade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body[data-page="servicos"] .servico-lista ul li:nth-child(1){ animation-delay: 0.05s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(2){ animation-delay: 0.13s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(3){ animation-delay: 0.21s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(4){ animation-delay: 0.29s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(5){ animation-delay: 0.37s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(6){ animation-delay: 0.45s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(7){ animation-delay: 0.53s; }
body[data-page="servicos"] .servico-lista ul li:nth-child(8){ animation-delay: 0.61s; }

/* Cascade nos blocos "Como funciona" do estúdio */
body[data-page="estudio"] .processo-grid .processo-block,
body[data-page="estudio"] .equipamentos-grid .equipamento-block,
body[data-page="estudio"] .publico-blocos .publico-bloco{
    opacity: 0;
    animation: cascade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body[data-page="estudio"] .processo-grid .processo-block:nth-child(1),
body[data-page="estudio"] .equipamentos-grid .equipamento-block:nth-child(1),
body[data-page="estudio"] .publico-blocos .publico-bloco:nth-child(1){ animation-delay: 0.1s; }
body[data-page="estudio"] .processo-grid .processo-block:nth-child(2),
body[data-page="estudio"] .equipamentos-grid .equipamento-block:nth-child(2),
body[data-page="estudio"] .publico-blocos .publico-bloco:nth-child(2){ animation-delay: 0.22s; }
body[data-page="estudio"] .processo-grid .processo-block:nth-child(3),
body[data-page="estudio"] .equipamentos-grid .equipamento-block:nth-child(3),
body[data-page="estudio"] .publico-blocos .publico-bloco:nth-child(3){ animation-delay: 0.34s; }
body[data-page="estudio"] .processo-grid .processo-block:nth-child(4),
body[data-page="estudio"] .equipamentos-grid .equipamento-block:nth-child(4){ animation-delay: 0.46s; }

/* --- 1.4 Section counter: fade + slide ------------------- */
body[data-page="index"] .section-counter .current,
body[data-page="sobre"] .section-counter .current,
body[data-page="servicos"] .section-counter .current,
body[data-page="processo"] .section-counter .current,
body[data-page="estudio"] .section-counter .current,
body[data-page="contato"] .section-counter .current{
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                color 0.3s ease;
}
body[data-page="index"] .section-counter.is-changing .current,
body[data-page="sobre"] .section-counter.is-changing .current,
body[data-page="servicos"] .section-counter.is-changing .current,
body[data-page="processo"] .section-counter.is-changing .current,
body[data-page="estudio"] .section-counter.is-changing .current,
body[data-page="contato"] .section-counter.is-changing .current{
    transform: translateY(-12px);
    opacity: 0;
}

/* --- 1.5 Nav-link active: underline animado -------------- */
body[data-page] .nav-link{
    position: relative;
    transition: color 0.25s ease, opacity 0.25s ease;
}
body[data-page] .nav-link::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
body[data-page] .nav-link:hover::after,
body[data-page] .nav-link.is-active::after{
    width: 80%;
    left: 10%;
}
body[data-page] .nav-link.is-active{
    opacity: 1;
}

/* --- 1.6 Logo color transition --------------------------- */
body[data-page="index"] .logo-svg path,
body[data-page="sobre"] .logo-svg path,
body[data-page="servicos"] .logo-svg path,
body[data-page="processo"] .logo-svg path,
body[data-page="estudio"] .logo-svg path,
body[data-page="contato"] .logo-svg path,
body[data-page="case-template"] .logo-svg path{
    transition: fill 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 1.7 prefers-reduced-motion -------------------------- */
@media (prefers-reduced-motion: reduce){
    body[data-page] *,
    body[data-page] *::before,
    body[data-page] *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    body[data-page] .servico-lista ul li,
    body[data-page="estudio"] .processo-grid .processo-block,
    body[data-page="estudio"] .equipamentos-grid .equipamento-block,
    body[data-page="estudio"] .publico-blocos .publico-bloco{
        opacity: 1 !important;
        transform: none !important;
    }
}
