/* ==========================================================================
   CSS3 DE ÚLTIMA GERAÇÃO - PROTOCOLO FRSO-V22-IGNITION MASTER
   ========================================================================== */

:root {
    --bg-dark-master: #0F0F0F;
    --bg-dark-alt: #0A0A0A;
    --bg-terminal: #050505;
    --text-pure-white: #FFFFFF;
    --text-titanium-muted: #fff;
    --brand-accent-red: #FF0000;
    --brand-accent-yellow: #FFD700;
    --border-alpha: rgba(255, 255, 255, 0.05);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark-master);
    color: var(--text-pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::selection {
    background-color: var(--brand-accent-red);
    color: var(--text-pure-white);
}


.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.text-accent { color: var(--brand-accent-red); }
.text-highlight {
    color: var(--text-pure-white);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--brand-accent-red);
    text-underline-offset: 4px;
}

.img-colossal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: zoom-in;
}

.code-area, .terminal-tag, .hud-mini-tag, .badge-tag {
        font-family: 'JetBrains Mono', monospace;
    }

/* ==========================================================================
   LIGHTBOX GALERIA AVANÇADA
   ========================================================================== */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.lightbox-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    pointer-events: none;
}

.lightbox-image-container {
    width: 100%;
    text-align: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: zoom-in;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
    pointer-events: auto;
}

#lightbox.zoomed {
    overflow: auto;
    align-items: flex-start;
}

#lightbox.zoomed .lightbox-wrapper {
    display: block;
    width: max-content;
    min-width: 100%;
    padding: 80px 20px;
    text-align: center;
}

#lightbox img.full-size {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    cursor: zoom-out;
}

.lightbox-hint {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-pure-white);
    padding: 12px 24px;
    margin-bottom: 24px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    pointer-events: auto;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: inline-block;
}

#lightbox.zoomed #zoom-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    margin-bottom: 0;
}

.lightbox-control {
    position: fixed;
    background: rgba(18, 18, 18, 0.6);
    color: var(--text-pure-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-control:hover {
    background: var(--brand-accent-red);
    border-color: var(--brand-accent-red);
    box-shadow: 0 0 15px var(--brand-accent-red);
}

#lightbox-close { top: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; border-radius: 50%; }
#lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); width: 60px; height: 80px; font-size: 30px; }
#lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); width: 60px; height: 80px; font-size: 30px; }

/* ==========================================================================
    NAVEGAÇÃO DO CONTROL ROOM
   ========================================================================== */
.nav-global {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid var(--border-alpha);
    backdrop-filter: blur(12px);
    background-color: rgba(5, 5, 5, 0.8);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-group {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.nav-logo-main {
    color: var(--text-pure-white);
    font-weight: 900;
    letter-spacing: -0.05em;
    font-size: 18px;
    text-transform: uppercase;
    font-style: italic;
    transition: color 0.3s;
}

.nav-logo-group:hover .nav-logo-main {
    color: var(--brand-accent-red);
}

.dot-accent { color: var(--brand-accent-red); }

.nav-logo-sub {
    color: var(--brand-accent-red);
    font-size: 8px;
    letter-spacing: 0.2em;
    opacity: 0.5;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hud-status {
    display: none;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-accent-red);
    border: 1px solid var(--brand-accent-red);
    padding: 4px 12px;
    border-radius: 2px;
}

@media (min-width: 640px) { .hud-status { display: block; } }

.btn-nav {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    color: var(--text-pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--brand-accent-red);
    border-color: var(--brand-accent-red);
    color: #000000;
}

/* ==========================================================================
   HERO HEADER
   ========================================================================== */
.hero-header {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 96px;
    border-b: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img-src {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            object-position: center; 
            transform: scale(1.3) translateY(-10%);
            
          
            will-change: transform;
        }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark-master) 0%, rgba(15,15,15,0.8) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.badge-tag {
    border: 1px solid var(--brand-accent-red);
    color: var(--brand-accent-red);
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
    display: inline-block;
    background-color: rgba(255, 0, 0, 0.1);
}

        
     
        @keyframes furioso-idle-tremor {
            0%, 100% { translate: 0 0; }
            25% { translate: -2px 1px; }
            50% { translate: 2px -1px; }
            75% { translate: -1px 2px; }
        }

        @keyframes furioso-hover-tremor {
            0%, 100% { translate: 0 0; }
            20% { translate: -4px 2px; }
            40% { translate: 4px -3px; }
            60% { translate: -2px 4px; }
            80% { translate: 3px -2px; }
        }

    
        @keyframes furioso-idle-glitch {
            0%, 100% { color: var(--brand-accent-red); text-shadow: 0 0 15px rgba(255,0,0,0.8); }
            33% { color: #ffffff; text-shadow: 0 0 20px #ffffff, 0 0 30px var(--brand-accent-red); }
            66% { color: var(--brand-accent-yellow); text-shadow: 0 0 15px var(--brand-accent-yellow), 0 0 30px rgba(255,0,0,0.5); }
        }

        /* 4. Estrobo Overdrive (Hover) */
        @keyframes furioso-hover-glitch {
            0%, 100% { color: #ffffff; text-shadow: 0 0 30px #ffffff, 0 0 50px var(--brand-accent-red); }
            33% { color: var(--brand-accent-yellow); text-shadow: 0 0 30px var(--brand-accent-yellow), 0 0 50px var(--brand-accent-red); }
            66% { color: var(--brand-accent-red); text-shadow: 0 0 40px var(--brand-accent-red); }
        }

  
        .hero-title {
            font-size: clamp(3.75rem, 10vw, 8rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.05em;
            line-height: 0.9;
            margin-bottom: 24px;
            display: block; 
        }

 
        .furioso-word {
            display: inline-block; 
            color: var(--brand-accent-red);
            will-change: translate, color, text-shadow;
            animation: 
                furioso-idle-tremor 0.3s linear infinite,
                furioso-idle-glitch 0.9s step-end infinite;
        }

        .hero-title .text-italic-accent {
            color: var(--text-pure-white);
            font-style: italic;
            display: inline-block; 
            transition: color 0.3s ease;
            font-size: 0.5em; 
            vertical-align: middle;
            margin-left: 12px;
        }

        
        .hero-title:hover .furioso-word {
            animation: 
                furioso-hover-tremor 0.08s linear infinite,
                furioso-hover-glitch 0.15s step-end infinite;
            cursor: crosshair;
        }
        
        .hero-title:hover .text-italic-accent {
            color: var(--brand-accent-yellow);
        }
.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--text-titanium-muted);
    max-width: 48rem;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-arrow {
    width: 12px;
    height: 80px;
    color: var(--brand-accent-red);
    animation: arrow-bounce 2s infinite;
}


.section-manifesto {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: var(--bg-dark-alt);
}

.section-header {
    max-width: 1280px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.hud-mini-tag {
    color: var(--brand-accent-red);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--text-titanium-muted);
    font-size: 14px;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
           MOTOR DE ENERGIA: Títulos das Seções (Neon Falho)
           ============================================================ */
        
        @keyframes section-neon-blink {
    
            0%, 45%, 55%, 100% { 
                opacity: 1; 
                text-shadow: 0 0 15px rgba(255, 0, 0, 0.4); 
            }
          
            46%, 48% { 
                opacity: 0.4; 
                text-shadow: none; 
            }
   
            50% { 
                opacity: 1; 
                text-shadow: 0 0 25px var(--brand-accent-red), 0 0 40px var(--brand-accent-red); 
            }
      
            52%, 53% { 
                opacity: 0.2; 
                text-shadow: none; 
            }
        }

  
        .section-title-landing {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 24px;
            animation: section-neon-blink 2s infinite;
        }

        
        @keyframes super-glow-pulse {
            0%, 100% { 
         
                text-shadow: 0 0 15px var(--brand-accent-red), 0 0 30px var(--brand-accent-red);
                color: var(--text-pure-white);
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
           
                text-shadow: 0 0 20px #ffffff, 0 0 50px var(--brand-accent-yellow), 0 0 90px var(--brand-accent-red);
                color: #ffffff;
                transform: scale(1.03); 
                filter: brightness(1.3);
            }
        }

      
        .section-title-landing:hover {
            animation: super-glow-pulse 1.2s ease-in-out infinite;
            cursor: crosshair;
        }


        .btn-launch-campaign:hover,
        .full-bleed-cta:hover {
            animation: super-glow-pulse 1.2s ease-in-out infinite;
            border-color: var(--brand-accent-yellow); 
            background-color: rgba(255, 0, 0, 0.1); 
            z-index: 10;
        }

.grid-three-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .grid-three-cols { grid-template-columns: repeat(3, 1fr); }
}

.manifesto-card {
    border-left: 2px solid var(--brand-accent-red);
    padding-left: 24px;
}

.card-mini-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--brand-accent-red);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.card-main-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.card-text {
    color: var(--text-titanium-muted);
    font-size: 14px;
    line-height: 1.6;
}


.terminal-wrapper {
    max-width: 56rem;
    margin: 128px auto 0 auto;
}

.terminal-box {
    background-color: var(--bg-terminal);
    border: 1px solid var(--border-alpha);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.02);
}

.terminal-title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-pure-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-lock {
    width: 20px;
    height: 20px;
    color: var(--brand-accent-red);
}

.terminal-intro {
    color: var(--text-titanium-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.terminal-window {
    background-color: #000000;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-header-bar {
    background: #111;
    padding: 12px;
    display: flex;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-tag {
    font-family: var(--font-secondary);
    font-size: 10px;
    color: var(--text-titanium-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-left: 16px;
}

.code-area {
    font-family: monospace;
    font-size: 12px;
    line-height: 1.8;
    padding: 24px;
    color: #E0E0E0;
}

.code-hl { color: var(--brand-accent-red); }
.code-comment { color: #666; }

.badge-code {
    background-color: rgba(255, 0, 0, 0.15);
    color: var(--brand-accent-red);
    padding: 2px 4px;
}


.section-media-static {
    padding-top: 128px;
    padding-bottom: 128px;
    background-color: var(--bg-dark-master);
    border-top: 1px solid var(--border-alpha);
    border-bottom: 1px solid var(--border-alpha);
}

.bento-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    auto-rows: 450px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-alpha);
    border-radius: 12px;
}

.col-12 { grid-column: span 12; }
.col-6  { grid-column: span 12; }
.col-4  { grid-column: span 12; }

@media (min-width: 768px) {
    .col-6 { grid-column: span 6; }
    .col-4 { grid-column: span 4; }
}

.group-hover:hover .img-colossal {
    transform: scale(1.03);
}

.bento-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-left: 4px solid var(--brand-accent-red);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.bento-badge span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-pure-white);
}

.center-obj { object-position: center; }

/* ==========================================================================
   FILME COMERCIAL & STORYBOARD
   ========================================================================== */
.section-commercial {
    padding-top: 128px;
    padding-bottom: 128px;
    background-color: var(--bg-dark-alt);
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    background-color: #000000;
    border: 1px solid var(--border-alpha);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.08);
    margin-bottom: 64px;
    border-radius: 12px;
}

.video-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.storyboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.storyboard-item {
    grid-column: span 12;
    height: 400px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-alpha);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .storyboard-item.span-3 { grid-column: span 7; }
    .storyboard-item.span-2 { grid-column: span 5; }
    /* Inverte proporção para simetria visual complexa */
    .storyboard-grid > div:nth-child(3) { grid-column: span 5; }
    .storyboard-grid > div:nth-child(4) { grid-column: span 7; }
    .storyboard-item { height: 600px; }
}

/* ==========================================================================
   CINEMÁTICA VERTICAL (SPLIT LAYOUT)
   ========================================================================== */
.section-vertical {
    position: relative;
    padding-top: 128px;
    padding-bottom: 128px;
    overflow: hidden;
}

.bg-alt { background-color: var(--bg-dark-master); }

.glow-radial {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-color: rgba(255, 0, 0, 0.04);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .container-split { grid-template-columns: 1fr 1fr; }
}

.split-text {
    position: relative;
    z-index: 10;
}

.split-p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-titanium-muted);
    margin-bottom: 32px;
}

.hud-inline-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-titanium-muted);
    background-color: rgba(0,0,0,0.5);
    border-radius: 9999px;
}

.split-video {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.vertical-video-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    background-color: #000000;
    border: 1px solid rgba(255, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
    border-radius: 12px;
}

.vertical-frames-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.v-frame {
    grid-column: span 12;
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-alpha);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .v-frame { height: 400px; }
    .v-frame.span-7 { grid-column: span 7; }
    .v-frame.span-5 { grid-column: span 5; }
    .v-frame.span-4 { grid-column: span 4; }
    /* Custom override para row 1 vs row 2 */
    .vertical-frames-grid > div:nth-child(1) { height: 500px; }
    .vertical-frames-grid > div:nth-child(2) { height: 500px; }
}

/* ==========================================================================
   A VISÃO PHYGITAL TERMINAL INTERFACE
   ========================================================================== */
.section-phygital {
    position: relative;
    padding-top: 128px;
    padding-bottom: 128px;
    background-color: var(--bg-dark-alt);
    overflow: hidden;
    border-top: 1px solid var(--border-alpha);
}

.center-glow {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 800px;
    background-color: rgba(255, 0, 0, 0.02);
}

.container-split-phygital {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .container-split-phygital { grid-template-columns: 1fr 1fr; }
}

.phygital-media {
    position: relative;
    z-index: 10;
}

.phygital-img-wrapper {
    aspect-ratio: 4 / 3;
    background-color: #000000;
    border: 1px solid var(--border-alpha);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border-radius: 12px;
}

.phygital-media .img-colossal { opacity: 0.6; }
.phygital-media:hover .img-colossal { transform: scale(1.05); opacity: 0.8; }

.phygital-img-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 4px 12px;
    border: 1px solid var(--border-alpha);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-titanium-muted);
}

.phygital-content {
    position: relative;
    z-index: 10;
}

.phygital-p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-titanium-muted);
    margin-bottom: 24px;
}

.phygital-list {
    font-size: 14px;
    color: var(--text-titanium-muted);
    list-style: none;
    border-left: 1px solid rgba(255, 0, 0, 0.5);
    padding-left: 16px;
}

.phygital-list li {
    margin-bottom: 8px;
}

/* ==========================================================================
   RAW ASSETS MASONRY-GRID
   ========================================================================== */
.section-raw {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: var(--bg-dark-master);
    border-top: 1px solid var(--border-alpha);
}

.raw-assets-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.raw-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-alpha);
    border-radius: 8px;
    grid-column: span 12;
}

.aspect-tall { aspect-ratio: 4 / 8; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 21 / 9; }

@media (min-width: 768px) {
    .raw-item { grid-column: span 4; }
    .span-md-2 { grid-column: span 8; }
    .span-full { grid-column: span 12; }
}

.project-info-block {
    margin-top: 48px;
    border-top: 1px solid var(--border-alpha);
    padding-top: 48px;
}

.footer-project-title {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-pure-white);
    margin-bottom: 10px;
}

.footer-project-status {
    font-size: 14.4px;
    color: #888;
    text-transform: uppercase;
    border-left: 2px solid var(--brand-accent-red);
    padding-left: 15px;
    margin-bottom: 20px;
}

.footer-project-desc {
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-titanium-muted);
}

/* ==========================================================================
   FULL-BLEED REACTIVE CALL TO ACTION
   ========================================================================== */
.full-bleed-cta-wrapper {
    width: 100%;
    margin-top: 0;
    padding-bottom: 48px;
    overflow: hidden;
}

.full-bleed-cta {
    display: block;
    width: 100%;
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--border-alpha);
    border-bottom: 1px solid var(--border-alpha);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    text-decoration: none;
    text-align: center;
    font-size: clamp(14px, 2vw, 24px);
    color: var(--text-pure-white);
    transition: all 0.7s ease;
    cursor: pointer;
    position: relative;
}

.full-bleed-cta:hover {
    background-color: var(--brand-accent-red);
    border-color: var(--brand-accent-red);
    color: var(--text-pure-white);
}

.cta-text-anim {
    display: inline-block;
    transition: transform 0.5s;
}

.full-bleed-cta:hover .cta-text-anim {
    transform: scale(1.1);
}

.cta-support-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-support-text {
    margin-top: 32px;
    font-size: 10px;
    color: var(--text-titanium-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    opacity: 0.4;
}

/* ==========================================================================
   FOOTER HUD & SIGNATURES (CURRENT YEAR 2026 LOGIC)
   ========================================================================== */
.footer-hud {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: var(--bg-terminal);
    border-top: 1px solid var(--border-alpha);
    position: relative;
    overflow: hidden;
}

.glow-radial-footer {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: var(--brand-accent-red);
    opacity: 0.02;
    filter: blur(150px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    text-align: left;
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 8fr 4fr; }
}

.footer-main-action {
    position: relative;
    z-index: 10;
}

.hud-ping-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ping-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-accent-red);
    animation: pulse-ping 1.5s infinite;
}

.ping-text {
    color: var(--brand-accent-red);
    font-family: monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

.footer-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-pure-white);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 40px;
}

.text-outline-stroke {
    -webkit-text-stroke: 1.5px var(--brand-accent-red);
    color: transparent;
    font-style: italic;
}

.btn-launch-campaign {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background-color: var(--text-pure-white);
    color: #000000;
    padding: 24px 40px;
    border-radius: 2px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.5s ease;
}

.btn-launch-campaign:hover {
    background-color: var(--brand-accent-red);
    gap: 48px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.5s;
}

.btn-launch-campaign:hover .arrow-icon {
    transform: translate(8px);
}

.footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .footer-info-block {
        padding-left: 48px;
        border-left: 1px solid var(--border-alpha);
    }
}

.info-label {
    font-size: 9px;
    font-family: monospace;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 16px;
}

.info-value {
    color: var(--text-titanium-muted);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lnk-social {
    color: var(--text-pure-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.lnk-social:hover { color: var(--brand-accent-red); }

/* Sub-Bar de Copyright 2026 */
.footer-sub-bar {
    margin-top: 128px;
    padding-top: 48px;
    border-top: 1px solid var(--border-alpha);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-sub-bar { flex-direction: row; gap: 0; }
}

.dev-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

@media (min-width: 768px) { .dev-signature { text-align: left; } }

.sig-name {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
}

.sig-title {
    font-size: 8px;
    font-family: monospace;
    color: var(--brand-accent-red);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.copyright-text {
    font-size: 9px;
    font-family: monospace;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}

.hud-status-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid var(--border-alpha);
}

.badge-label {
    font-size: 8px;
    font-family: monospace;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.badge-active-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 8px;
    font-family: monospace;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    animation: text-pulse-green 2s infinite;
}

.mini-green-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 5px #22c55e;
}

/* ==========================================================================
   MÓDULO PHYGITAL E ESTRUTURA LANDING PAGE - FURIOSO V22
   ========================================================================== */

.section-phygital-landing {
    position: relative;
    padding: 128px 0;
    background-color: #0A0A0A;
    overflow: hidden;
}

.container-phygital {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.glow-radial-phygital {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 800px;
    background-color: rgba(255, 0, 0, 0.03);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

/* Sistema de Grid Isolado */
.phygital-landing-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 128px;
}

.phygital-landing-grid:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .phygital-landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.landing-info-block, 
.phygital-info-block {
    position: relative;
    z-index: 10;
}

.section-p-large {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.section-p-normal {
    color: #A5A9B4;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.section-p-normal strong {
    color: #FFFFFF;
}

/* Botão de Alta Voltagem */
.btn-access-landing {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background-color: #FF0000; /* Herança brand-red-fire */
    color: #FFFFFF;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-access-landing:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.icon-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

.btn-access-landing:hover .icon-arrow {
    transform: translateX(8px);
}

/* Layout Empilhado de Imagens (Ajustado nativamente) */
.landing-image-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

@media (min-width: 768px) {
    .landing-image-stack {
        height: 500px;
    }
}

.stack-img {
    position: absolute;
    width: 75%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    object-fit: cover;
}

.stack-img-bottom {
    top: 128px;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.stack-img-middle {
    top: 64px;
    right: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}

.stack-img-top {
    top: 0;
    right: 96px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.stack-img:hover {
    opacity: 1;
    z-index: 30;
}

.stack-img-top:hover {
    transform: scale(1.03);
}

/* Container de Unboxing Simples */
.unboxing-preview-block {
    position: relative;
    z-index: 10;
}

.unboxing-card-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .unboxing-card-wrapper {
        aspect-ratio: 4 / 3;
    }
}

.unboxing-media-src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.unboxing-card-wrapper:hover .unboxing-media-src {
    transform: scale(1.05);
    opacity: 0.8;
}

.unboxing-badge-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
    font-family: monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A5A9B4;
}

/* Lista de Arquitetura Técnica */
.phygital-tech-list {
    font-size: 14px;
    font-family: monospace;
    color: #A5A9B4;
    list-style: none;
    border-left: 1px solid rgba(255, 0, 0, 0.5);
    padding-left: 16px;
    margin-top: 32px;
}

.phygital-tech-list li {
    margin-bottom: 8px;
}

/* =========================================
   DESTAQUE: SEÇÃO LANDING PAGE
   ========================================= */

.highlight-section {
    position: relative;
    padding: 6rem 0;
    /* Fundo escurecido atrás do bloco para criar contraste */
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(20,0,0,0.5) 50%, rgba(10,10,10,0) 100%);
    overflow: hidden;
}

.pulse-glow {
    animation: pulseOpacity 4s infinite alternate;
    background: radial-gradient(circle, rgba(255, 30, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    z-index: 0;
    pointer-events: none;
}

/* O "Caixote" que abriga o conteúdo para destacá-lo do resto do site */
.kinetic-box {
    position: relative;
    z-index: 1;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 40, 0, 0.3);
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 0 40px rgba(255, 40, 0, 0.05), inset 0 0 20px rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 40, 0, 0.6);
}

/* Grid Ajustado */
.phygital-landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}



.btn-kinetic-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 2.5rem;
    position: relative;
    border: none;
    color: #ffffff;
    background: transparent; 
    

    animation: btn-tremor-subtle 0.1s infinite;
}

.btn-kinetic-cta .btn-text,
.btn-kinetic-cta .btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
}

.btn-kinetic-cta .btn-icon svg {
    width: 24px;
    height: 24px;
}


.btn-kinetic-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    animation: btn-color-pulse 0.4s infinite alternate;
}


.btn-kinetic-cta:hover {
    cursor: crosshair;
}

.btn-kinetic-cta:hover::before {

    animation: collapse-implode-loop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.btn-kinetic-cta:hover .btn-text,
.btn-kinetic-cta:hover .btn-icon {

    animation: text-implode-loop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}


@keyframes btn-tremor-subtle {
    0% { transform: translate(1px, 0) rotate(0deg); }
    50% { transform: translate(-1px, 0) rotate(0deg); }
    100% { transform: translate(1px, 0) rotate(0deg); }
}


@keyframes btn-color-pulse {
    0% { 
        background-color: #ff1e00; 
        box-shadow: 0 0 15px rgba(255, 30, 0, 0.8); 
    }
    100% { 
        background-color: #ffcc00; 
        box-shadow: 0 0 25px rgba(255, 204, 0, 1); 
    }
}


@keyframes collapse-implode-loop {
    0% {
        transform: scale(1);
        clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        background-color: #ff1e00;
        box-shadow: 0 0 15px rgba(255, 30, 0, 0.8);
    }
    25% {
  
        transform: scaleX(1.1) scaleY(0.8) skewX(20deg);
        background-color: #ffffff;
    }
    50% {

        transform: scaleX(1) scaleY(0.1);
        clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
        background-color: #ff1e00;
        box-shadow: 0 0 50px #ffcc00, 0 0 20px #ff1e00 inset;
    }
    75% {
 
        transform: scaleX(0.9) scaleY(1.1) skewX(-15deg);
        clip-path: polygon(5% 5%, 95% 0, 90% 95%, 0 100%);
        background-color: #000000;
    }
    100% {
        
        transform: scale(1);
        clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
        background-color: #ffcc00; 
        box-shadow: 0 0 25px rgba(255, 204, 0, 1);
    }
}


@keyframes text-implode-loop {
    0% { 
        transform: scale(1); 
        opacity: 1; 
        color: #ffffff; 
    }
    25% { 
        color: #000000; 
        transform: scaleY(0.8); 
    }
    50% { 
       
        transform: scaleY(0.1); 
        opacity: 0; 
    }
    75% { 
        color: #ff1e00; 
        transform: scaleY(1.1); 
        opacity: 1; 
    }
    100% { 
        transform: scale(1); 
        opacity: 1; 
        color: #000000; 
    }
}


.landing-image-stack {
    position: relative;
    width: 100%;
    height: 500px; 
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-img {
    position: absolute;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}


.stack-img-bottom {
    top: 60px;
    right: 5%;
    transform: translateZ(-100px) rotate(-6deg);
    opacity: 0.5;
    filter: blur(2px);
}

.stack-img-middle {
    top: 30px;
    right: 12%;
    transform: translateZ(-50px) rotate(-3deg);
    opacity: 0.8;
    filter: blur(1px);
}

.stack-img-top {
    top: 0;
    right: 20%;
    transform: translateZ(0) rotate(2deg);
    border: 1px solid rgba(255, 40, 0, 0.3);
}


.landing-image-stack:hover .stack-img-bottom {
    transform: translateZ(-100px) translateX(60px) rotate(-10deg);
    opacity: 0.8;
    filter: blur(0);
}

.landing-image-stack:hover .stack-img-middle {
    transform: translateZ(-50px) translateX(30px) rotate(-5deg);
    opacity: 1;
    filter: blur(0);
}

.landing-image-stack:hover .stack-img-top {
    transform: translateZ(80px) translateX(-20px) scale(1.05) rotate(0deg);
    box-shadow: -15px 30px 60px rgba(255, 30, 0, 0.3);
    border-color: rgba(255, 40, 0, 0.8);
}


@keyframes pulseOpacity {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}


@media (max-width: 992px) {
    .phygital-landing-grid {
        grid-template-columns: 1fr;
    }
    .kinetic-box {
        padding: 2rem;
    }
    .landing-image-stack {
        height: 400px;
        margin-top: 2rem;
    }
}


@media (max-width: 1023px) {
    .grid-inverted .unboxing-preview-block {
        order: 2;
    }
    .grid-inverted .phygital-info-block {
        order: 1;
    }
}

@media (min-width: 1024px) {
    .grid-inverted .unboxing-preview-block {
        order: 1;
    }
    .grid-inverted .phygital-info-block {
        order: 2;
    }
}


@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes pulse-ping {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes text-pulse-green {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}