﻿/* --- DESIGN SYSTEM VARS --- */
        :root {
            --c-bg: #FFFFFF;     /* Fundo Branco (Light Mode) */
            --c-dark: #121212;   /* Texto escuro */
            --c-accent: #D4AF37; /* Amarelo da logo AXIOMA */
            --font-display: 'Fira Mono', monospace;
            --font-body: 'Manrope', sans-serif;
            --spacing-layout: 2rem;
        }

        @media (min-width: 768px) {
            :root {
                --spacing-layout: 4rem;
            }
        }

        /* --- RESET & ESTRUTURA BASE --- */
        body, html {
            margin: 0;
            padding: 0;
            background-color: var(--c-bg); /* O BODY todo herdará o Light Mode puro */
            color: var(--c-dark);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- LENIS SMOOTH SCROLL --- */
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
        .lenis.lenis-stopped { overflow: hidden; }
        .lenis.lenis-scrolling iframe { pointer-events: none; }

        /* ========================================= */
        /*          1. HERO SECTION (DOBRA 1)        */
        /* ========================================= */

        /* A seção Hero precisa forçar um fundo dark caso os frames demorem a carregar */
        #hero-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: var(--c-dark);
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: scale(1.02); 
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(18,18,18,0.4) 0%, transparent 40%, transparent 80%, rgba(18,18,18,0.6) 100%);
            z-index: 2;
            pointer-events: none;
        }

        #header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: var(--spacing-layout);
            z-index: 10;
            box-sizing: border-box;
            display: flex;
            justify-content: flex-start;
            will-change: transform, opacity, filter;
        }

        #logo {
            height: 48px;
            object-fit: contain;
            opacity: 0; 
            filter: blur(20px);
            will-change: transform, opacity, filter;
        }
        
        @media (max-width: 768px) {
            #logo { height: 36px; }
        }

        #hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            pointer-events: none;
            will-change: transform, opacity, filter;
        }

        #title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 16vw, 15rem);
            font-weight: 700;
            line-height: 1;
            margin: 0;
            letter-spacing: -0.05em;
            color: rgba(255, 255, 255, 0.4); 
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
            mix-blend-mode: plus-lighter; 
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.1);
            opacity: 0;
            filter: blur(20px);
            will-change: transform, opacity, filter;
            text-align: center;
            padding: 0 1rem;
        }


        /* ========================================= */
        /*        2. SOBRE NÓS SECTION (DOBRA 2)     */
        /* ========================================= */

        .sobre-nos {
            min-height: 100vh;
            background-color: var(--c-bg); /* Fundo branco puro da dobra */
            padding: calc(var(--spacing-layout) * 2) var(--spacing-layout);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .sobre-nos-grid {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .sobre-nos-grid {
                grid-template-columns: 1fr 1.1fr; /* Coluna da imagem levemente maior */
                gap: 6rem;
            }
        }

        /* --- Textos (Light Mode Apperance) --- */
        .sobre-text-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .sobre-title {
            font-family: var(--font-display);
            color: var(--c-accent); /* Amarelo da Marca */
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        .sobre-subtitle {
            font-family: var(--font-body);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--c-dark); /* Texto pretaço luxuoso para fundo claro */
            font-weight: 700;
            line-height: 1.1;
            margin-top: 0;
            margin-bottom: 2rem;
            letter-spacing: -0.03em;
        }

        .sobre-desc {
            font-family: var(--font-body);
            color: rgba(18, 18, 18, 0.7); /* Cinza escurecido com leve transparência para leitura suave */
            font-size: 1.125rem;
            line-height: 1.7;
            margin-top: 0;
            margin-bottom: 1.5rem;
            font-weight: 400; /* Mais peso e legibilidade num fundo claro */
            max-width: 90%;
        }

        /* --- Imagem --- */
        .sobre-img-col {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .sobre-img-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            border-radius: 24px;   
            overflow: hidden; /* Cobre o vazamento da imagem caso dê zoom */
            box-shadow: 0 40px 90px rgba(0,0,0,0.12); /* Sombra difusa mais leve para contrastar bem c/ fundo branco */
            border: 1px solid rgba(0,0,0,0.03);
        }

        .sobre-img {
            width: 100%;
            height: auto;          
            display: block;
            transform-origin: center;
            will-change: transform; 
        }

        /* ========================================= */
        /*        3. PORTFÓLIO SECTION (DOBRA 3)     */
        /* ========================================= */

        #portfolio {
            padding: calc(var(--spacing-layout) * 3) var(--spacing-layout);
            background-color: var(--c-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .portfolio-title {
            font-family: var(--font-display);
            color: var(--c-accent);
            font-size: 2rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 0;
        }

        .portfolio-desc {
            font-family: var(--font-body);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
            font-weight: 300;
            text-align: center;
            max-width: 800px;
            margin: 3rem auto 0 auto;
            line-height: 1.6;
            padding: 0 1rem;
        }

        .gallery-container {
            display: flex;
            width: 90vw;
            max-width: 1200px;
            height: 60vh;
            min-height: 400px;
            gap: 15px; 
            padding: 20px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            flex: 1; 
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: grayscale(100%); 
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            overflow: hidden;
        }

        .gallery-item:hover,
        .gallery-item.active {
            flex: 6; 
            filter: grayscale(0%); 
            transform: scale(1.03); 
            z-index: 10;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item:hover::after,
        .gallery-item.active::after {
            opacity: 1;
        }

        .gallery-title {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            text-align: center;
            font-family: var(--font-display);
            color: #FFFFFF;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            z-index: 20;
            pointer-events: none;
            text-shadow: 0 4px 10px rgba(0,0,0,0.6); /* Leve sombra para destacar mais */
        }

        .gallery-item:hover .gallery-title,
        .gallery-item.active .gallery-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s; /* Atraso sutil para aparecer junto ao final da expansão */
        }

        @media (max-width: 768px) {
            .gallery-title {
                font-size: 0.9rem;
                bottom: 1.5rem;
            }
            .portfolio-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }
            .gallery-container {
                gap: 8px;
                height: 50vh;
            }
            .gallery-item {
                border-radius: 12px;
            }
            .gallery-item:hover,
            .gallery-item.active {
                flex: 4; 
                transform: scale(1.02);
            }
        }

        /* ========================================= */
        /*   4. TRANSFORMAÇÃO SECTION (DOBRA 4)      */
        /* ========================================= */
        #transformation {
            height: 100vh;
            background-color: var(--c-dark); /* Mantendo a identidade escura p/ essa sessão */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .image-reveal-container {
            position: relative;
            width: 95vw;
            height: 90vh;
            /* Abordagem responsiva perfeitamente enquadrada em 16:9 */
            max-width: calc(90vh * (16 / 9));
            max-height: calc(95vw * (9 / 16));
            border: 2px solid var(--c-accent);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .transformation-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .transformation-img.antes {
            z-index: 1;
        }

        .transformation-img.depois {
            z-index: 2;
            opacity: 0;
        }

        /* ========================================= */
        /*   5. CRIAÇÃO DE PROJETOS (DOBRA 5)        */
        /* ========================================= */
        #project-creation {
            min-height: 100vh;
            background-color: #ffffff; /* Fundo branco puro */
            padding: calc(var(--spacing-layout) * 2) var(--spacing-layout);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-creation-container {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .project-creation-container {
                grid-template-columns: 1fr 1fr;
                gap: 6rem;
            }
        }

        /* --- Imagem (Left Col) --- */
        .project-creation-img-col {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .project-img-wrapper {
            width: 100%;
            height: auto;
            border-radius: 12px;
            overflow: hidden;
            clip-path: inset(0 100% 0 0); /* Para Swipe In da esquerda para direita */
        }

        .project-creation-img {
            width: 100%;
            height: auto;
            display: block;
            filter: blur(15px); /* Blur in initial state */
            transform: scale(1.05);
            will-change: transform, filter;
        }

        /* --- Textos (Right Col) --- */
        .project-creation-text-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        /* Os textos começarão invisíveis para entrar via GSAP */
        .project-title, .project-subtitle, .project-desc {
            opacity: 0;
            transform: translateY(30px);
            will-change: transform, opacity;
        }

        .project-title {
            font-family: var(--font-display);
            color: #121212;
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        .project-subtitle {
            font-family: var(--font-body);
            color: var(--c-accent); /* Dourado */
            font-size: clamp(1.2rem, 1.8vw, 1.5rem);
            font-weight: 500;
            margin-bottom: 2rem;
            margin-top: 0;
        }

        .project-desc {
            font-family: var(--font-body);
            color: #333333;
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        /* ==========================================
           6. PRELOADER (HOUSEMOOD STYLE)
           ========================================== */
        #axioma-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #121212; /* Fundo escuro premium combinando com Hero */
            z-index: 9999; 
            display: flex;
            justify-content: center;
            align-items: center;
            clip-path: inset(0% 0% 0% 0%); 
        }

        .preloader-logo-wrapper {
            overflow: hidden; 
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .preloader-logo {
            width: 250px; 
            height: auto;
            opacity: 0;
            transform: translateY(100%) scale(1.05); /* Logo entra de baixo subindo e ajustando escala */
            will-change: transform, opacity;
        }

        @media (max-width: 768px) {
            .preloader-logo {
                width: 180px; 
            }
        }
        /* ==========================================
           7. FOOTER
           ========================================== */
        #site-footer {
            background-color: var(--c-dark);
            color: var(--c-bg);
            position: relative;
            overflow: hidden;
            padding-top: calc(var(--spacing-layout) * 2);
        }

        .footer-top-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-layout);
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        @media (min-width: 1024px) {
            .footer-top-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
            }
        }

        /* --- Esquerda: CTA --- */
        .footer-cta-left {
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            z-index: 2;
        }

        .footer-cta-text-clean {
            font-family: var(--font-body);
            font-size: clamp(1.5rem, 2.5vw, 2.2rem);
            font-weight: 500;
            line-height: 1.2;
            margin: 0 0 2.5rem 0;
            color: rgba(255,255,255,0.9);
            letter-spacing: -0.02em;
        }

        /* --- Direita: Colunas de Links --- */
        .footer-links-right {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            width: 100%;
            justify-content: flex-end;
            z-index: 2;
        }
        
        @media (min-width: 768px) {
            .footer-links-right {
                flex-direction: row;
                gap: 6rem;
                width: auto;
            }
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-col-title {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--c-accent); /* Amarelo da Axioma */
            margin: 0 0 0.5rem 0;
        }

        .footer-link, .footer-text-info {
            font-family: var(--font-body);
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 0;
            display: block; /* Garante estabilidade nos links */
        }

        .footer-link:hover {
            color: var(--c-bg);
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 0.8rem; /* Letras pequenas se quiser simular icones */
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--c-accent);
            color: var(--c-dark);
            transform: translateY(-3px);
        }

        /* --- Copyright Separator --- */
        .footer-copyright {
            max-width: 1400px;
            margin: 4rem auto 0 auto;
            padding: 2rem var(--spacing-layout) 0 var(--spacing-layout);
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.4);
            z-index: 2;
        }

        @media (min-width: 768px) {
            .footer-copyright {
                flex-direction: row;
                margin-top: 6rem;
            }
        }

        /* --- Letreiro Gigante --- */
        .footer-giant-text-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            margin-top: 1rem;
            z-index: 1; /* pra não sobrepor as interações */
        }

        .footer-giant-text {
            font-family: var(--font-display);
            font-size: 17.5vw;
            font-weight: 700;
            line-height: 0.75;
            margin: 0;
            letter-spacing: -0.05em;
            color: rgba(255, 255, 255, 0.7); /* Opacidade = 70% pedida */
            text-align: center;
            white-space: nowrap;
            width: 100%;
            -webkit-mask-image: linear-gradient(to top, transparent 5%, black 60%);
            mask-image: linear-gradient(to top, transparent 5%, black 60%);
        }

        .footer-giant-text span {
            color: var(--c-accent);
        }

        /* ==========================================
           BEAM ANIMATION BUTTON (CSS Puro)
           ========================================== */
        .beam-btn-wrapper {
            position: relative;
            display: inline-block;
            cursor: pointer;
            text-decoration: none;
        }

        .beam-btn-glow {
            position: absolute;
            top: -8px; left: -8px; right: -8px; bottom: -8px;
            background: rgba(212, 175, 55, 0.3); /* c-accent glow verdeado com blur intenso */
            border-radius: 9999px;
            filter: blur(20px);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .beam-btn-wrapper:hover .beam-btn-glow {
            opacity: 1;
        }

        .beam-btn-border-overflow {
            position: absolute;
            top: -1px; left: -1px; right: -1px; bottom: -1px;
            border-radius: 9999px;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .beam-btn-wrapper:hover .beam-btn-border-overflow {
            opacity: 1;
        }

        .beam-btn-spinner-inner {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 300%; height: 300%;
            background: conic-gradient(from 0deg, transparent 0 340deg, var(--c-accent) 360deg);
            animation: beam-spin 2s linear infinite;
        }

        .beam-btn-button {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            padding: 1px; /* border fina fake */
            overflow: hidden;
            background: none;
            border: none;
            line-height: 1;
        }

        .beam-btn-spinner-outer {
            position: absolute;
            top: -1000%; bottom: -1000%; left: -1000%; right: -1000%;
            background: conic-gradient(from 0deg, transparent 0 340deg, var(--c-accent) 360deg);
            animation: beam-spin-outer 2s linear infinite;
            z-index: -1;
        }

        .beam-btn-content {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%; height: 100%;
            background-color: var(--c-dark);
            border-radius: 9999px;
            padding: 1rem 2.5rem;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
            overflow: hidden; 
        }

        .beam-btn-shimmer {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            transform: skewX(-12deg) translateX(-100%);
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .beam-btn-wrapper:hover .beam-btn-shimmer {
            opacity: 1;
            animation: beam-shimmer 1.5s infinite;
        }

        .beam-btn-text {
            position: relative;
            z-index: 10;
            font-family: var(--font-body);
            font-size: 1.125rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            color: var(--c-bg);
            text-transform: capitalize;
        }

        .beam-btn-icon {
            position: relative;
            z-index: 10;
            margin-left: 1rem;
            color: rgba(255,255,255,0.5); /* cor suave default */
            transition: transform 0.2s ease, color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .beam-btn-wrapper:hover .beam-btn-icon {
            transform: translateX(4px);
            color: var(--c-bg);
        }

        @keyframes beam-spin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes beam-spin-outer {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes beam-shimmer {
            0% { transform: translateX(-100%) skewX(-12deg); }
            100% { transform: translateX(200%) skewX(-12deg); }
        }

        .img-mobile { display: none !important; }
        .br-mobile { display: none; }

        /* ========================================= */
        /*   📱 AJUSTES DE RESPONSIVIDADE (MOBILE)   */
        /* ========================================= */
        @media (max-width: 768px) {
            /* 1. Ajustes Globais e Tipografia */
            .sobre-nos, 
            #portfolio, 
            #project-creation, 
            #site-footer {
                padding: 60px 20px !important;
            }

            .img-desktop { display: none !important; }
            .img-mobile { display: block !important; }
            .br-mobile { display: block; }
            
            .sobre-title {
                font-size: 0.70rem !important;
                letter-spacing: 0.1em;
                white-space: nowrap;
                margin-top: -10px;
            }

            .project-subtitle {
                font-size: 0.70rem !important;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                margin-bottom: 2rem !important;
            }

            .portfolio-title {
                font-size: clamp(1rem, 7vw, 1.4rem) !important;
                white-space: nowrap;
                letter-spacing: 0.1em;
                margin-bottom: 2rem;
            }

            .sobre-subtitle, 
            .project-title, 
            .footer-cta-text-clean,
            h2, h3 {
                font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
                line-height: 1.2;
                word-wrap: break-word;
                hyphens: auto;
            }

            /* 2. Primeira Dobra (Hero) */
            #header {
                justify-content: center !important;
            }
            #logo {
                height: 32px !important;
            }
            #hero-content {
                padding: 0 20px;
                box-sizing: border-box;
            }
            #title {
                font-size: clamp(3rem, 16vw, 5rem) !important;
                line-height: 1;
                margin: 0;
            }

            /* 3. Segunda Dobra (Sobre Nós) */
            .sobre-nos-grid {
                display: flex !important;
                flex-direction: column !important; /* O DOM já tem o texto antes da imagem, então column já deixa o texto no topo */
                gap: 2.5rem;
            }
            .sobre-text-col {
                align-items: center;
                text-align: center;
            }
            .sobre-desc,
            .project-desc {
                max-width: 100%;
                text-align: center;
                font-size: 0.95rem !important;
                padding: 0 15px;
            }
            .sobre-img-wrapper {
                width: 100% !important;
                max-width: 400px;
                margin: 0 auto;
            }

            /* 4. Terceira Dobra (Portfólio Expansível) */
            .gallery-container {
                flex-direction: column !important;
                height: 80vh !important;
                gap: 10px !important;
                padding: 0 !important;
            }
            .gallery-item {
                flex: 1 !important;
                width: 100% !important;
                border-radius: 12px !important;
            }
            .gallery-item:hover,
            .gallery-item.active {
                flex: 5 !important;
                transform: scale(1) !important;
            }

            /* 5. Quarta Dobra (Transformação) */
            .image-reveal-container {
                width: 90vw !important;
                height: auto !important;
                aspect-ratio: 4 / 5 !important;
                max-width: none !important;
                max-height: none !important;
            }
            .transformation-img.img-mobile {
                object-fit: contain !important;
            }

            /* 6. Quinta Dobra (Arquitetura Autoral) */
            .project-creation-container {
                display: flex !important;
                flex-direction: column !important;
                gap: 2.5rem;
            }
            .project-creation-text-col {
                align-items: center;
                text-align: center;
            }
            .project-img-wrapper {
                width: 100% !important;
                height: auto !important;
            }
            .project-creation-img {
                height: auto !important;
                object-fit: contain !important;
            }

            /* 7. Sexta Dobra (Rodapé) */
            #site-footer {
                overflow: hidden !important; 
            }
            .footer-cta-left {
                align-items: center;
                text-align: center;
                margin: 0 auto;
            }
            .footer-cta-text-clean {
                font-size: 2rem !important;
                margin-bottom: 1.5rem;
            }
            .beam-btn-wrapper {
                transform: scale(0.9);
            }
            .footer-links-right {
                align-items: center;
                text-align: center;
            }
            .footer-col {
                align-items: center;
            }
            .footer-giant-text-container {
                overflow: hidden !important;
                width: 100%;
            }
        }