:root {
    --black: #050104; --pure-black: #000000; --text-primary: #ffffff; 
    --text-dim: #e0e0e0; --deep-red: #8e0000; --bright-red: #ff0505;
    --neon-purple: #4e008e; --st-magenta: #8a2be2; --glitch-magenta: #ff00ff; --neon-cyan: #00ffff;
    --font-header: 'Playfair Display', serif; --font-body: 'Inter', sans-serif; --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* --- REMOÇÃO DA BARRA DE ROLAGEM --- */
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; }
/* ----------------------------------- */

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { background-color: var(--black); color: var(--text-primary); font-family: var(--font-body); overflow-x: hidden; line-height: 1.5; width: 100%; }

/* ========================================================
   TELA DE BOOT
======================================================== */
#retro-boot {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
    background-color: #080d1f; 
    z-index: 9997; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-mono); text-align: center; overflow: hidden;
    animation: crtFlicker 0.15s infinite alternate; 
}

@keyframes crtFlicker {
    0% { filter: brightness(1); }
    50% { filter: brightness(0.95); }
    100% { filter: brightness(1.05); }
}

/* CARCAÇA DA TV */
.crt-bezel {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    pointer-events: none; z-index: 10;
    border: 60px solid #030303; 
    border-radius: 120px; 
    box-sizing: border-box;
    box-shadow: inset 0 0 30px rgba(0,0,0,1);
}

/* VIDRO CURVO E BARREL DISTORTION */
.crt-vignette {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    pointer-events: none; z-index: 9;
    box-shadow: 
        inset 0 0 250px rgba(0,0,0,1), 
        inset 0 0 80px rgba(0,0,0,0.8);
    background: 
        radial-gradient(ellipse at 50% -20%, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 45%),
        radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.95) 100%);
}

/* CONTEÚDO COM ABERRAÇÃO CROMÁTICA */
.boot-content { 
    position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 100%; 
    text-shadow: 2px 0px 1px rgba(255,0,0,0.6), -2px 0px 1px rgba(0,255,255,0.6);
}
.boot-logo { font-family: var(--font-header); font-size: clamp(3rem, 6vw, 6rem); font-style: italic; letter-spacing: 2px; margin-bottom: 20px; text-shadow: 0 0 15px rgba(255,255,255,0.6), 4px 0px 2px rgba(255,0,0,0.5), -4px 0px 2px rgba(0,255,255,0.5); }
.boot-sys-text { font-size: 0.85rem; color: #aaa; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.boot-loader-wrapper { width: 300px; height: 30px; border: 2px solid #fff; padding: 3px; margin-bottom: 100px; box-shadow: 0 0 15px rgba(255,255,255,0.2), 2px 0px 1px rgba(255,0,0,0.5), -2px 0px 1px rgba(0,255,255,0.5); }
.boot-bar { height: 100%; width: 0%; background-color: #fff; background-image: repeating-linear-gradient(to right, #fff 0%, #fff 15px, transparent 15px, transparent 20px); box-shadow: 0 0 20px rgba(255,255,255,0.9); }
.boot-copyright { position: absolute; bottom: -100px; font-size: 0.7rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }

/* TRANSIÇÃO CLEAN */
.glitch-out { animation: crtSnapOff 0.4s cubic-bezier(0.1, 0.9, 0.2, 1) forwards !important; }
@keyframes crtSnapOff {
    0%   { transform: scale(1, 1); opacity: 1; filter: contrast(1) brightness(1); }
    40%  { transform: scale(1, 0.01); opacity: 1; filter: contrast(2) brightness(2); background-color: #ffffff; }
    100% { transform: scale(0, 0); opacity: 0; filter: contrast(1) brightness(0); }
}

/* ATMOSFERA E OTIMIZAÇÃO DE GPU */
.vhs-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.08; pointer-events: none; z-index: 9999; }
.scanlines { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 50%); background-size: 100% 4px; pointer-events: none; z-index: 9998; }
.dimension-fog { position: fixed; bottom: -10%; left: 0; width: 100%; height: 70vh; background: radial-gradient(circle at center, var(--neon-purple) 0%, transparent 70%); opacity: 0.25; filter: blur(100px); pointer-events: none; z-index: 1; transition: opacity 0.5s; will-change: filter, opacity; }

/* NAVEGAÇÃO */
.main-nav { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; padding: 30px 0; }
.nav-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }

/* Logo interativo */
.nav-logo { text-decoration: none; display: flex; flex-direction: column; transition: all 0.3s ease; }
.nav-logo:hover { transform: translateY(-3px); text-shadow: 0 0 15px var(--neon-cyan); }
.logo-main { font-family: var(--font-header); font-weight: 900; font-size: 1.8rem; color: #fff; }
.logo-sub { font-family: var(--font-mono); font-size: 0.7rem; color: var(--deep-red); letter-spacing: 3px; }

.nav-links { display: flex; list-style: none; gap: 40px; align-items: center; }

/* Links interativos */
.nav-item { 
    text-decoration: none; color: var(--text-dim); font-family: var(--font-mono); font-size: 0.85rem; text-transform: uppercase; 
    display: inline-block; 
    transition: all 0.3s ease; 
}
.nav-item:hover { 
    transform: translateY(-3px); color: #fff; text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan); 
}

/* Botão interativo */
.nav-btn { 
    text-decoration: none; color: #fff; border: 1px solid var(--deep-red); padding: 12px 24px; font-family: var(--font-mono); font-size: 0.8rem; 
    display: inline-block; 
    transition: all 0.3s ease; 
}
.nav-btn:hover { 
    transform: translateY(-3px); box-shadow: 0 0 15px var(--bright-red), inset 0 0 10px var(--bright-red); text-shadow: 0 0 10px #fff, 0 0 20px var(--bright-red); background: rgba(255, 5, 5, 0.1); border-color: var(--bright-red);
}

/* CHAVE TOGGLE ANALÓGICA 3D */
.industrial-switch-wrapper { position: absolute; top: 120px; right: 50px; display: flex; align-items: center; gap: 15px; z-index: 100; }
.switch-labels { display: flex; flex-direction: column; justify-content: space-between; height: 40px; font-family: var(--font-mono); font-size: 0.65rem; color: #666; font-weight: bold; }
.lbl-on { color: var(--bright-red); text-shadow: 0 0 5px var(--bright-red); }
.switch-plate { width: 30px; height: 50px; background: linear-gradient(135deg, #333 0%, #111 100%); border: 2px solid #222; border-radius: 4px; position: relative; box-shadow: inset 0 0 5px #000, 2px 2px 5px rgba(0,0,0,0.8); cursor: pointer; transition: all 0.3s ease; }
.switch-plate:hover { transform: perspective(100px) translateY(-3px); box-shadow: inset 0 0 5px #000, 2px 5px 15px rgba(255,5,5,0.6); }
.switch-slot { position: absolute; top: 10px; left: 12px; width: 4px; height: 30px; background: #000; box-shadow: inset 1px 1px 2px rgba(0,0,0,0.9); }
.switch-lever { position: absolute; width: 12px; height: 25px; background: linear-gradient(to right, #ccc, #fff, #999); border-radius: 2px; left: 8px; top: 5px; box-shadow: 0 5px 5px rgba(0,0,0,0.8), inset 0 1px 0 #fff; transform-origin: bottom center; transform: perspective(100px) rotateX(25deg); transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.switch-screws span { position: absolute; color: #000; font-size: 8px; font-family: sans-serif; transform: rotate(45deg); }
.switch-screws span:nth-child(1) { top: 2px; left: 11px; }
.switch-screws span:nth-child(2) { bottom: 2px; left: 11px; }
.switch-status-led { width: 8px; height: 8px; background: var(--bright-red); border-radius: 50%; box-shadow: 0 0 10px var(--bright-red), inset 1px 1px 2px rgba(255,255,255,0.5); border: 1px solid #440000; transition: 0.3s; }

body.lights-out .switch-lever { top: 18px; transform: perspective(100px) rotateX(-25deg); box-shadow: 0 -5px 5px rgba(0,0,0,0.8), inset 0 -1px 0 #fff; }
body.lights-out .lbl-on { color: #444; text-shadow: none; }
body.lights-out .lbl-off { color: #888; }
body.lights-out .switch-status-led { background: #333; box-shadow: inset 1px 1px 2px rgba(0,0,0,0.8); border-color: #111; }
body.lights-out .fixture-tube { background: #222 !important; box-shadow: none !important; }
body.lights-out .dimension-fog { opacity: 0 !important; }

/* FIXTURE - LARGURA (HITBOX) REDUZIDA E OTIMIZADA PARA GPU */
.hanging-fixture-container { position: fixed; top: -50px; left: 50%; transform: translateX(-50%) rotate(0deg); transform-origin: top center; width: 100px; display: flex; flex-direction: column; align-items: center; z-index: 9996; animation: naturalSway 6s ease-in-out infinite; cursor: grab; user-select: none; will-change: transform; }
.hanging-fixture-container:active { cursor: grabbing; animation: none; }
@keyframes naturalSway { 0%, 100% { transform: translateX(-50%) rotate(-1deg); } 50% { transform: translateX(-50%) rotate(1deg); } }
.fixture-wire { width: 2px; height: 150px; background: #222; }
.fixture-head { width: 60px; height: 30px; background: #1a1a1a; border-radius: 10px 10px 4px 4px; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 5px; }
.fixture-tube { width: 40px; height: 15px; background: #fff; border-radius: 4px; box-shadow: 0 0 10px #fff, 0 0 30px var(--st-magenta), 0 40px 120px 30px rgba(138,43,226,0.9); transition: background 0.3s, box-shadow 0.3s; }

/* SEÇÕES */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: transparent; z-index: 50; }
.hero-inner { text-align: center; max-width: 1200px; will-change: transform, opacity, filter; }
.badge { font-family: var(--font-mono); font-size: 0.75rem; color: var(--bright-red); border: 1px solid var(--bright-red); padding: 6px 15px; border-radius: 50px; margin-bottom: 25px; }
.st-neon { font-family: var(--font-header); font-size: clamp(3rem, 10vw, 8.5rem); font-weight: 900; line-height: 0.9; position: relative; color: transparent; background: linear-gradient(to right, var(--neon-cyan), var(--st-magenta)); -webkit-background-clip: text; background-clip: text; text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 40px var(--st-magenta); font-style: italic; }
.st-slogan { font-family: var(--font-header); font-size: clamp(1.2rem, 3vw, 2.2rem); color: var(--text-dim); margin-top: 20px; text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }
.st-slogan span { color: var(--bright-red); display: block; text-shadow: 0 0 8px rgba(255, 5, 5, 0.4); }

.arcade-start-btn { 
    display: inline-block; margin-top: 40px; font-family: var(--font-mono); color: var(--neon-cyan); text-decoration: none; text-shadow: 0 0 10px var(--neon-cyan); 
    transition: all 0.3s ease; 
}
.arcade-start-btn:hover { 
    transform: translateY(-3px); text-shadow: 0 0 20px var(--neon-cyan), 0 0 10px #fff; 
}

.blink-text { animation: arcadeBlink 1.2s infinite step-end; }
@keyframes arcadeBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.work-section { padding: 150px 0; min-height: 100vh; background: var(--pure-black); background-image: linear-gradient(rgba(138, 43, 226, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 43, 226, 0.05) 1px, transparent 1px); background-size: 30px 30px; box-shadow: inset 0 150px 150px -50px var(--black), inset 0 -150px 150px -50px var(--black); position: relative; z-index: 40; }
.container { max-width: 1300px; width: 100%; margin: 0 auto; padding: 0 30px; }
.section-header { margin-bottom: 60px; }
.center-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 80px; }
.section-num { font-family: var(--font-mono); color: var(--bright-red); }
.section-title { font-family: var(--font-header); font-size: 3.5rem; }
.header-line { width: 100px; height: 3px; background: var(--bright-red); margin-top: 20px; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.project-card { height: 400px; position: relative; border-radius: 8px; background: #111; overflow: hidden; }
.project-card.large { grid-column: span 2; height: 500px; }
.neon-border { border: 2px solid #222; }
.card-image { width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.6; }

/* OVERLAY E EFEITOS DE HOVER NOS BALÕES E BOTÕES */
.card-overlay { position: absolute; bottom: 0; width: 100%; padding: 40px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }

.card-tags { margin-bottom: 15px; }
.card-tags span { 
    display: inline-block; margin-right: 10px; padding: 4px 12px; border: 1px solid #444; border-radius: 50px; font-family: var(--font-mono); font-size: 0.65rem; color: #ccc; background: rgba(0,0,0,0.5);
    transition: all 0.3s ease; cursor: default; 
}
.card-tags span:hover { 
    transform: translateY(-3px); box-shadow: 0 0 12px var(--neon-cyan); border-color: var(--neon-cyan); color: #fff; text-shadow: 0 0 5px var(--neon-cyan); 
}

.card-overlay p { margin-bottom: 10px; } 

.neon-btn { 
    display: inline-block; margin-top: 25px; border: 1px solid var(--bright-red); color: var(--bright-red); padding: 10px 20px; text-decoration: none; font-family: var(--font-mono); font-size: 0.8rem; border-radius: 50px; 
    transition: all 0.3s ease; 
}
.neon-btn:hover { 
    transform: translateY(-3px); box-shadow: 0 0 15px var(--bright-red), inset 0 0 5px var(--bright-red); color: #fff; text-shadow: 0 0 5px var(--bright-red); 
}

/* ========================================================
   EFEITO DE ERRO/GLITCH NAS SEÇÕES EM CONSTRUÇÃO
======================================================== */
.under-construction {
    cursor: not-allowed; 
}

.under-construction:hover, .under-construction:active {
    animation: errorJitter 0.15s infinite;
    box-shadow: inset 0 0 30px rgba(255, 0, 0, 0.4), 0 0 15px rgba(255, 0, 0, 0.6);
    border-color: var(--bright-red);
}

.under-construction:hover .card-overlay {
    background: linear-gradient(transparent, rgba(138, 0, 0, 0.8));
}

.under-construction:hover * {
    text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--bright-red) !important;
}

@keyframes errorJitter {
    0% { transform: translate(0, 0); }
    25% { transform: translate(3px, -2px) skewX(1deg); }
    50% { transform: translate(-3px, 2px) skewX(-1deg); }
    75% { transform: translate(2px, 2px) skewX(0.5deg); }
    100% { transform: translate(-2px, -2px) skewX(-0.5deg); }
}

.construction-tape { position: absolute; top: 40%; left: -10%; width: 120%; height: 30px; background: repeating-linear-gradient(45deg, #ffcc00, #ffcc00 20px, #111 20px, #111 40px); z-index: 5; opacity: 0.8; }
.tape-1 { transform: rotate(-10deg); }
.tape-2 { transform: rotate(5deg); top: 50%; }
.badge-soon { color: #ffcc00; font-family: var(--font-mono); border: 1px solid #ffcc00; padding: 4px 10px; font-size: 0.7rem; }

/* SOBRE O ARQUITETO */
.about-section { padding: 100px 0 150px; background: var(--black); position: relative; z-index: 30; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-lead { font-size: 1.8rem; font-family: var(--font-header); font-style: italic; color: #fff; }

.about-bio { margin-top: 25px; margin-bottom: 30px; font-size: 1rem; color: #ccc; line-height: 1.6; }
.about-bio p { margin-bottom: 20px; }

.skill-list { list-style: none; font-family: var(--font-mono); font-size: 0.85rem; color: var(--neon-cyan); display: flex; flex-direction: column; gap: 12px; }
.skill-list li { transition: all 0.3s ease; display: inline-block; width: fit-content; cursor: default; }
.skill-list li:hover { transform: translateX(10px); color: #fff; text-shadow: 0 0 10px var(--neon-cyan); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.stat-item { border-left: 2px solid var(--deep-red); padding-left: 20px; }
.stat-num { font-size: 2.5rem; font-weight: 900; display: block; }
.stat-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim); }

.glass-terminal { background: rgba(15,15,20,0.8); backdrop-filter: blur(15px); border: 1px solid #333; border-radius: 10px; overflow: hidden; transition: 0.4s; }
.glass-terminal:hover { border-color: var(--bright-red); box-shadow: 0 0 30px rgba(255,5,5,0.2); }
.terminal-header { background: #222; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
.dots { display: flex; gap: 8px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #444; transition: 0.4s; }
.glass-terminal:hover .dots span:nth-child(1) { background: #00ff00; }
.glass-terminal:hover .dots span:nth-child(2) { background: #ffcc00; }
.glass-terminal:hover .dots span:nth-child(3) { background: #ff0505; }
.profile-layout { padding: 35px; display: flex; gap: 30px; align-items: center; }
.pixel-avatar { width: 120px; height: 150px; border: 2px solid var(--deep-red); overflow: hidden; position: relative; }
.pixel-avatar img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.term-text-group { font-family: var(--font-mono); color: var(--bright-red); font-size: 0.85rem; }

/* ========================================================
   SEÇÃO FAQ (ARQUIVOS DESCRIPTOGRAFADOS)
======================================================== */
.faq-section { padding: 100px 0 150px; background: var(--pure-black); box-shadow: inset 0 150px 150px -50px var(--black); position: relative; z-index: 20; }
.faq-accordion { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #111; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; cursor: pointer; }

/* Efeito Neon no Hover do Acordeão */
.faq-item:hover { border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); color: var(--text-primary); font-size: 1rem; }
.faq-question span:first-child { transition: color 0.3s; }
.faq-item:hover .faq-question span:first-child { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }
.faq-icon { font-size: 1.5rem; color: var(--bright-red); transition: transform 0.4s ease; font-weight: bold; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, border-color 0.4s ease; background: #0a0a0a; border-top: 1px solid transparent; }
.faq-answer p { padding: 0 30px; font-family: var(--font-body); color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; opacity: 0; transition: opacity 0.3s ease; }

/* Estado Ativo (Aberto) */
.faq-item.active { border-color: var(--bright-red); box-shadow: 0 0 20px rgba(255, 5, 5, 0.2); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--neon-cyan); }
.faq-item.active .faq-answer { max-height: 300px; border-top-color: #222; }
.faq-item.active .faq-answer p { padding: 25px 30px; opacity: 1; animation: decryptText 0.5s forwards; }

@keyframes decryptText {
    0% { filter: blur(5px); opacity: 0; transform: translateX(-10px); }
    100% { filter: blur(0); opacity: 1; transform: translateX(0); }
}

/* FOOTER */
.main-footer { padding: 100px 0; background: var(--black); border-top: 1px solid #111; position: relative; z-index: 10; }
.footer-top { text-align: center; }
.glow-title { font-family: var(--font-header); font-size: 5rem; text-shadow: 0 0 30px var(--bright-red); }

/* AJUSTE DO BOTÃO DE EMAIL NO FOOTER */
.footer-email { 
    font-family: var(--font-header); font-size: 2rem; color: var(--deep-red); margin-top: 40px; 
    display: inline-flex; flex-direction: column; align-items: center; 
    background: none; border: none; cursor: pointer; transition: all 0.3s ease; 
}
.footer-email:hover { 
    transform: translateY(-3px); color: #fff; text-shadow: 0 0 20px var(--bright-red), 0 0 10px rgba(255,255,255,0.5); 
}

/* FEEDBACK VISUAL DE "COPIADO" */
.copy-feedback { 
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); 
    opacity: 0; transform: translateY(-10px); transition: all 0.3s ease; margin-top: 8px; letter-spacing: 1px;
}
.footer-email.copied .copy-feedback { 
    opacity: 1; transform: translateY(0); 
}
.footer-email.copied .email-text { 
    color: var(--neon-cyan); text-shadow: 0 0 15px var(--neon-cyan); 
}

.footer-bottom { border-top: 1px solid #111; padding-top: 40px; margin-top: 40px; display: flex; justify-content: center; align-items: center; color: #444; font-family: var(--font-mono); font-size: 0.8rem; text-align: center; }
.footer-info { width: 100%; }
.legal-note { font-size: 0.7rem; color: #444; text-transform: uppercase; margin-top: 10px; }

/* ========================================================
   AJUSTES RESPONSIVOS OTIMIZADOS (CELULAR E TABLET)
======================================================== */
@media (max-width: 900px) {
    .projects-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .project-card.large, .project-card { height: 400px; grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-wrapper { padding: 0 20px; justify-content: center; }
    .nav-links { display: none; }
    
    .industrial-switch-wrapper { 
        top: 25px; 
        right: 20px; 
        transform: scale(0.75); 
        transform-origin: top right;
    }

    .hanging-fixture-container { top: -65px; }

    .hero-inner { padding: 0 20px; margin-top: 40px; }
    .st-neon { font-size: clamp(2.5rem, 8vw, 4rem); line-height: 1.1; }
    .st-slogan { font-size: 1.2rem; }

    .profile-layout { flex-direction: column; text-align: center; padding: 25px 20px; gap: 20px; }
    .pixel-avatar { width: 100px; height: 125px; margin: 0 auto; }
    .term-text-group { align-items: center; width: 100%; }
    .term-line { margin-bottom: 5px; }
    .stats-grid { grid-template-columns: 1fr; gap: 25px; }

    .faq-question { font-size: 0.9rem; padding: 20px 15px; flex-direction: column; align-items: flex-start; gap: 15px; }
    .faq-icon { align-self: flex-end; }
    .faq-item.active .faq-answer p { padding: 20px 15px; }

    .glow-title { font-size: 3rem; }
    .footer-email { font-size: 1.2rem; margin-top: 20px; }

    .dimension-fog { height: 40vh; opacity: 0.2; bottom: -5%; display: none; } /* Oculto no mobile para performance */
    .crt-bezel { border-width: 25px; border-radius: 60px; }
}

/* ========================================================
   ESCUDO DE ACESSIBILIDADE (LBI / ADA COMPLIANCE)
======================================================== */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    #retro-boot, #crt-flash, .dimension-fog, .vhs-overlay, .scanlines {
        display: none !important; 
    }
}