@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&family=Inter:wght@400;600;700&display=swap');

:root {
    --gold: #C9A227; /* Real Guardião Gold */
    --gold-bright: #FFF7B0;
    --gold-dark: #8B1A1A; /* Guardião Secondary */
    --blue: #2196F3; /* Real Safe Blue */
    --blue-deep: #1A3FD4;
    --purple: #6622CC; /* Real Emula Purple */
    --bg-black: #010103;
    
    --grad-gold: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    --grad-blue: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 50%, var(--blue-deep) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; cursor: default; }

body {
    background-color: #050510;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Ambient Background — mesmo padrao do Dashboard Admin (mesh cyan + grid 60px + particulas/neural) */
.avoker-ambient {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -10;
    overflow: hidden;
}
.avoker-ambient-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(8, 145, 178, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(8, 145, 178, 0.03) 0%, transparent 60%);
}
.avoker-ambient-grid {
    position: absolute; inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(#0891b2 1px, transparent 1px),
        linear-gradient(90deg, #0891b2 1px, transparent 1px);
    background-size: 60px 60px;
}
.avoker-ambient-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
}

/* Compat: esconde decorativos antigos (stars + aurora) — substituidos pelo Ambient unificado */
.stars-bg, .star, .aurora-bg, .aurora-orb, .aurora-blur-layer { display: none !important; }

.nav-v3 {
    margin: 25px auto;
    width: 92%;
    max-width: 1200px;
    padding: 15px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; top: 25px; z-index: 100;
    
    /* 🛡️ Clean Floating Pill */
    background: rgba(10, 10, 15, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.brand { display: flex; align-items: center; gap: 15px; }
.logo-v3 {
    width: 52px; height: 52px;
    background: url('https://api.iconify.design/solar:shield-bold-duotone.svg?color=%23C9A227') center/contain no-repeat;
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.4));
}
.brand span { font-family: 'Outfit'; font-weight: 900; font-size: 32px; letter-spacing: 2px; }

.links-v3 { display: flex; gap: 45px; }
.links-v3 a {
    text-decoration: none; color: rgba(255,255,255,0.7);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    transition: 0.3s;
}
.links-v3 a:hover { 
    color: var(--gold); 
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.btn-consult {
    padding: 12px 24px;
    background: #FFF;
    color: #000;
    border: none;
    font-weight: 700; font-size: 13px; border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-consult:hover {
    transform: scale(0.96);
    background: #E0E0E0;
}

/* 🛡️ HERO LAYOUT (MIRROR) */
.hero-v3 {
    padding: 20px 16% 100px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.text-group h1 {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.text-group h1 span {
    background: linear-gradient(to right, #FFF7B0 0%, #FFD700 40%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-group h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
}

.text-group p {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 25px;
}

/* Breathing Light BoxShadow Animation */
@keyframes neonBreathing {
    0% { box-shadow: 0 0 10px rgba(255,215,0, 0.15), 0 0 40px rgba(255,215,0,0.05); }
    100% { box-shadow: 0 0 15px rgba(255,215,0, 0.3), 0 0 60px rgba(255,215,0,0.1); }
}

.hero-btns { display: flex; gap: 15px; flex-wrap: nowrap; margin-top: 40px; }
.btn-get { 
    padding: 22px 35px; background: #FFD700; color: #000; border: none; 
    font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
    border-radius: 50px; cursor: pointer; transition: 0.4s;
    animation: neonBreathing 3s infinite alternate ease-in-out;
    white-space: nowrap;
}
.btn-get:hover, .btn-get:focus, .btn-get:active { transform: scale(0.96); background: #FFD700 !important; color: #000 !important; outline: none; }

.btn-learn { 
    padding: 22px 35px; background: transparent; color: #fff; 
    border: 1px solid rgba(255,255,255,0.3); font-weight: 700; 
    font-size: 13px; backdrop-filter: blur(15px); letter-spacing: 0.5px;
    border-radius: 50px; cursor: pointer; transition: 0.4s;
    white-space: nowrap;
}
.btn-learn:hover { transform: scale(0.96); border-color: rgba(255,255,255,0.6); }

.slider-texts {
    position: relative;
    height: 120px; /* Reduzido para encaixar na tela */
    margin-top: 15px;
}

.slide-text {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-text.slide-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blue-txt { color: var(--blue); text-shadow: 0 0 15px rgba(33, 150, 243, 0.4); font-size: 2rem; margin-bottom: 10px; font-weight: 700; }
.gold-txt { color: var(--gold); text-shadow: 0 0 15px rgba(201, 162, 39, 0.4); font-size: 2rem; margin-bottom: 10px; font-weight: 700; }
.purple-txt { color: var(--purple); text-shadow: 0 0 15px rgba(102, 34, 204, 0.4); font-size: 2rem; margin-bottom: 10px; font-weight: 700; }


/* 📱 MOCKUP DO CELULAR */
.mockup-zone { position: relative; height: 100%; display: flex; justify-content: flex-end; align-items: center; perspective: 1000px; }

/* Wrapper para garantir alinhamento perfeito de Brilho + Hardware */
.phone-wrapper {
    position: relative;
    width: 215px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-wrapper:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.avoker-phone {
    width: 100%;
    height: 100%;
    background: #0b0b0d !important; /* Obsidian Deep - Minimamente mais preto */
    background-color: #0b0b0d !important;
    opacity: 1 !important;
    border-radius: 35px;
    border: 3px solid #15151a !important; /* Borda tática ultra-escura */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 
                0 40px 80px rgba(0,0,0,0.6);
    position: relative;
    padding: 10px;
    z-index: 2;
}

/* O brilho que vaza para a moldura, sincronizado com os apps */
.avoker-phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 150%; height: 120%; /* Brilho que vaza proporcional ao celular */
    filter: blur(120px);
    border-radius: 50%;
    z-index: 1; /* Atrás do celular */
    transition: background 1s ease;
    opacity: 0.35;
    pointer-events: none;
}

/* A tela interna visível do Celular */
.avoker-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    z-index: 2; /* Acima da luz de vazamento */
}

/* Classes de Sincronia de Cores via JS */
.glow-blue { background: var(--blue); }
.glow-gold { background: var(--gold); }
.glow-purple { background: var(--purple); }

/* Identidade Android / Camera Hole-Punch na moldura (Bezel) do celular */
.avoker-notch {
    position: absolute;
    top: 1px; left: 50%; /* No Bezel superior - Limite absoluto */
    transform: translateX(-50%);
    width: 10px; height: 10px; /* Camera dot menor e mais realista */
    background: #000;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.2);
}

/* As abas do Celular que transicionam (Apps falsos/Templates) */
.screen-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: scale(1.05); /* Efeito zoom suave na saída */
    transition: all 0.8s ease;
    display: flex; align-items: center; justify-content: center;
}

.screen-slide.slide-active {
    opacity: 1;
    transform: scale(1);
}

/* Dummies que podem ser sobrepostos por background-image no futuro */
.dummy-ui {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    padding-top: 50px;
    gap: 12px; color: #fff; font-size: 11px; letter-spacing: 2px;
    background-size: cover; background-position: center;
    position: relative;
}
.dummy-ui::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    pointer-events: none;
}
.dummy-blue { background: radial-gradient(circle at top, rgba(33,150,243,0.15) 0%, #050508 80%); border-top: 2px solid var(--blue); }
.dummy-gold { background: radial-gradient(circle at top, rgba(201,162,39,0.15) 0%, #050508 80%); border-top: 2px solid var(--gold); }
.dummy-purple { background: radial-gradient(circle at top, rgba(102,34,204,0.15) 0%, #050508 80%); border-top: 2px solid var(--purple); }

.full-screen-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; border-radius: 30px;
    transform: scale(1.015); /* Zoom aumentado levemente para impacto */
    transform-origin: bottom;
}

.screen-glare {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(255,255,255,0.04) 100%);
    pointer-events: none; z-index: 5; border-radius: 30px;
}

.dummy-content {
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 15px; width: 85%;
}
.dummy-metrics {
    width: 100%; display: flex; flex-direction: column; gap: 8px; margin-top: 20px;
}
.dummy-hud {
    height: 12px; border-radius: 6px; background: rgba(255,255,255,0.05); overflow: hidden; width: 100%;
}
.dummy-hud-fill { height: 100%; border-radius: 6px; width: 60%; }
.fill-blue { background: var(--blue); box-shadow: 0 0 10px var(--blue); width: 80%; }
.fill-gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); width: 45%; }
.fill-purple { background: var(--purple); box-shadow: 0 0 10px var(--purple); width: 95%; }

/* UI - ARC GAUGE RADIAL (Guardião) */
.arc-gauge {
    width: 140px; height: 70px; /* meia-lua */
    position: relative; overflow: hidden; margin-top: 20px;
}
.arc-bg {
    position: absolute; top: 0; left: 0; width: 140px; height: 140px;
    border-radius: 50%; border: 12px solid rgba(255,255,255,0.05);
}
.arc-progress {
    position: absolute; top: 0; left: 0; width: 140px; height: 140px;
    border-radius: 50%; border: 12px solid transparent;
    border-top-color: var(--gold); border-left-color: var(--gold);
    transform: rotate(45deg); /* meio círculo = de 45 a 225 */
    filter: drop-shadow(0 0 15px var(--gold));
}

/* UI - CYBER GLITCH (Emula) */
.glitch-text {
    position: relative; font-size: 24px; font-weight: 900; color: #FFF; text-transform: uppercase; font-family: 'Outfit';
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.glitch-text::before { left: 2px; text-shadow: -2px 0 red; background: transparent; animation: glitch-anim 2s infinite linear alternate-reverse; }
.glitch-text::after { left: -2px; text-shadow: -2px 0 blue; background: transparent; animation: glitch-anim-2 3s infinite linear alternate-reverse; }

@keyframes glitch-anim {
    0% { clip: rect(5px, 9999px, 15px, 0); transform: translate(0); }
    20% { clip: rect(25px, 9999px, 35px, 0); transform: translate(-1px, 1px); }
    40% { clip: rect(10px, 9999px, 20px, 0); transform: translate(1px, -1px); }
    100% { clip: rect(5px, 9999px, 15px, 0); transform: translate(0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(10px, 9999px, 20px, 0); transform: translate(0); }
    20% { clip: rect(30px, 9999px, 45px, 0); transform: translate(1px, -1px); }
    100% { clip: rect(10px, 9999px, 20px, 0); transform: translate(0); }
}

/* ⚔️ TACTICAL DIVIDER */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16%;
    margin-top: 60px;
    margin-bottom: 140px; 
}
.section-divider .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
}
.section-divider .badge {
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0 30px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

/* 🛡️ TACTICAL OPERATIVE MODULES (V3.2) */
.tactical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 16% 120px;
}

.module-card {
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 480px;
}

.module-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3C%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05; pointer-events: none; mix-blend-mode: overlay;
}

.module-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--m-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(var(--m-rgb), 0.2);
}

.module-card.blue { --m-color: var(--blue); --m-rgb: 33, 150, 243; }
.module-card.purple { --m-color: var(--purple); --m-rgb: 156, 39, 176; }
.module-card.gold { --m-color: var(--gold); --m-rgb: 201, 162, 39; }

/* Active Scanline */
.module-scan {
    position: absolute; top: -100%; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(var(--m-rgb), 0.1), transparent);
    border-bottom: 1px solid rgba(var(--m-rgb), 0.3);
    animation: scan-loop 4s linear infinite;
    pointer-events: none;
}
@keyframes scan-loop {
    0% { top: -20%; }
    100% { top: 120%; }
}

.module-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px; font-family: 'Outfit';
}
.m-code { font-size: 11px; font-weight: 900; color: rgba(255,255,255,0.3); letter-spacing: 2px; }
.m-status { 
    font-size: 9px; font-weight: 900; color: var(--m-color); 
    padding: 4px 10px; border: 1px solid var(--m-color); border-radius: 4px;
    background: rgba(var(--m-rgb), 0.05);	letter-spacing: 1px;
}

.module-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.m-icon {
    width: 80px; height: 80px; margin-bottom: 30px;
    display: flex; align-items: center; justify-content: center;
    color: var(--m-color); background: rgba(255,255,255,0.02);
    border-radius: 18px; border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}
.module-card:hover .m-icon { 
    background: var(--m-color); color: #fff; 
    box-shadow: 0 0 30px var(--m-color);
}

.module-card h3 { 
    font-family: 'Outfit'; font-size: 32px; font-weight: 900; color: #fff; 
    line-height: 1.1; margin-bottom: 20px;
}
.module-card p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 35px; }

.m-specs {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px;
    display: flex; flex-direction: column; gap: 8px;
}
.m-specs span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 1200px) {
    .tactical-grid { grid-template-columns: repeat(2, 1fr); padding: 0 10% 100px; }
    .module-card { height: auto; min-height: 450px; }
}

@media (max-width: 768px) {
    .tactical-grid { grid-template-columns: 1fr; }
}


/* 🛰️ DEFENSE RADAR DASHBOARD (V4.2) */
.defense-dashboard-v4 { padding: 120px 16%; text-align: center; }
.radar-title { color: rgba(255,255,255,0.3); letter-spacing: 5px; font-size: 11px; margin-bottom: 60px; font-weight: 900; }

.radar-layout {
    display: flex; gap: 80px; align-items: center;
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px; padding: 60px;
    backdrop-filter: blur(30px);
}

/* PAINEL RADAR */
.radar-visual { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 30px; }

.radar-circle {
    width: 380px; height: 380px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.radar-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle, transparent 30%, rgba(255,255,255,0.05) 31%, transparent 32%),
        radial-gradient(circle, transparent 60%, rgba(255,255,255,0.05) 61%, transparent 62%);
}
.radar-grid::before, .radar-grid::after {
    content: ''; position: absolute; background: rgba(255,255,255,0.05);
}
.radar-grid::before { left: 50%; top: 0; width: 1px; height: 100%; }
.radar-grid::after { top: 50%; left: 0; width: 100%; height: 1px; }

.radar-sweep {
    position: absolute; top: 50%; left: 50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, var(--blue) 0%, transparent 15%);
    transform-origin: top left;
    animation: radar-spin 4s linear infinite;
    opacity: 0.2; pointer-events: none;
}
@keyframes radar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.radar-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 10px; height: 10px; background: var(--blue); border-radius: 50%;
    box-shadow: 0 0 20px var(--blue);
}
.logo-pulse {
    position: absolute; width: 40px; height: 40px; border: 2px solid var(--blue);
    border-radius: 50%; animation: logo-pulse 2s infinite; opacity: 0;
}
@keyframes logo-pulse { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

/* BLIPS (PONTOS NO RADAR) */
.blip {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    opacity: 0.3; transition: 0.4s; transform: scale(0.8);
}
.blip.active { opacity: 1; transform: scale(1.5); box-shadow: 0 0 15px currentColor; }
.blip.blue { color: var(--blue); background: var(--blue); }
.blip.purple { color: var(--purple); background: var(--purple); }
.blip.gold { color: var(--gold); background: var(--gold); }

.b1 { top: 20%; left: 30%; }
.b2 { top: 40%; left: 75%; }
.b3 { top: 70%; left: 25%; }
.b4 { top: 15%; left: 60%; }
.b5 { top: 80%; left: 55%; }
.b6 { top: 45%; left: 20%; }

.radar-status { display: flex; gap: 20px; font-family: 'Outfit'; }
.status-line { font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.status-line .label { color: rgba(255,255,255,0.3); }
.status-line .val { color: var(--blue); }

/* PAINEL INFO */
.radar-info { flex: 1; display: flex; flex-direction: column; gap: 15px; text-align: left; }

.defense-item {
    padding: 25px; border-radius: 20px; border: 1px solid transparent;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
}
.defense-item:hover, .defense-item.active {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.i-tag { font-size: 10px; font-weight: 900; margin-bottom: 10px; letter-spacing: 1px; }
.i-tag.blue { color: var(--blue); }
.i-tag.purple { color: var(--purple); }
.i-tag.gold { color: var(--gold); }

.defense-item h5 { font-family: 'Outfit'; font-size: 18px; color: #fff; margin-bottom: 8px; }
.defense-item p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }

@media (max-width: 1200px) {
    .radar-layout { flex-direction: column; padding: 40px; }
    .defense-dashboard-v4 { padding: 80px 8%; }
}
@media (max-width: 768px) {
    .radar-circle { width: 280px; height: 280px; }
}


/* 🕯️ FOOTER */
.footer-v3 {
    background: #010103;
    padding: 100px 16% 60px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.f-col h6 { font-size: 12px; letter-spacing: 1px; color: #fff; margin-bottom: 30px; }
.f-col li { list-style: none; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 12px; cursor: pointer; transition: 0.3s; }
.f-col li:hover { color: #fff; }

@media (max-width: 1100px) {
    .nav-v3 { flex-direction: column; gap: 15px; padding: 25px 5%; border-radius: 20px; }
    .hero-v3 { grid-template-columns: 1fr; text-align: center; gap: 60px; padding-top: 180px; padding-bottom: 60px; height: auto; min-height: 100vh; }
    .text-group { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .mockup-zone { justify-content: center; height: auto; padding: 40px 0; }
    .avoker-phone { transform: rotateY(0deg) rotateX(0deg); width: 250px; height: 500px; background: #000 !important; opacity: 1 !important; }
    .avoker-phone:hover { transform: translateY(-5px); }
    .section-divider { margin-bottom: 60px; }
    .cards-v3, .grid-v3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-v3 { grid-template-columns: repeat(2, 1fr); gap: 40px; text-align: center; }
    .footer-v3 .f-col { text-align: center !important; }
}

@media (max-width: 768px) {
    .cards-v3, .grid-v3, .footer-v3 { grid-template-columns: 1fr; }
    .nav-v3 .links-v3 { flex-wrap: wrap; justify-content: center; gap: 15px; }
}

/* ✨ SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 🛰️ TELEMETRIA HUD TÁTICA (V4.5 - OUTSIDE THE BOX) */
.telemetry-hud-v4 {
    padding: 0 16% 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hud-title {
    font-size: 11px; letter-spacing: 5px; color: rgba(255,255,255,0.3);
    margin-bottom: 60px; text-transform: uppercase; font-weight: 900;
}

.hud-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 1100px;
}

/* NODOS SATÉLITES */
.hud-nodes {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.hud-node {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}
.hud-node:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: scale(1.05);
}
.n-label { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 900; letter-spacing: 2px; display: block; margin-bottom: 8px;}
.n-value { font-family: 'Outfit'; font-size: 2.2rem; display: block; color: #fff; font-weight: 900; line-height: 1;}
.n-value small { font-size: 1rem; color: rgba(255,255,255,0.4); margin-left: 4px; }

.n-bar {
    position: absolute; bottom: 0; left: 0; height: 2px; width: 0%;
    transition: 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active .n-bar { width: 100%; }
.n-bar.blue { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.n-bar.gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.n-bar.purple { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.n-bar.green { background: #00CC44; box-shadow: 0 0 10px #00CC44; }

/* CORE GAUGE CENTRAL */
.hud-core {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radial-gauge {
    width: 280px; height: 280px;
    position: relative;
    z-index: 2;
}
.radial-gauge svg { transform: rotate(-90deg); }
.radial-gauge circle { fill: none; stroke-width: 6; }
.radial-gauge .bg { stroke: rgba(255,255,255,0.03); }
.radial-gauge .progress {
    stroke: var(--blue);
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px var(--blue));
    transition: stroke-dashoffset 2s ease-out;
}

.core-info {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; width: 100%;
}
.c-pct { font-size: 3.5rem; font-weight: 900; color: #fff; font-family: 'Outfit'; display: block; line-height: 1;}
.c-label { font-size: 9px; color: var(--blue); font-weight: 900; letter-spacing: 2px; }

.core-scanner {
    position: absolute; width: 110%; height: 110%;
    border: 1px solid rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    animation: core-rotate 10s linear infinite;
}
.core-scanner::after {
    content: ''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px; background: var(--blue); border-radius: 50%;
    box-shadow: 0 0 20px var(--blue);
}

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

/* LINHAS SVG */
.hud-lines {
    position: absolute; top: 50%; left: 50%; width: 500px; height: 500px;
    transform: translate(-50%, -50%);
    z-index: 1; pointer-events: none; opacity: 0.2;
}
.line-path {
    fill: none; stroke: var(--blue); stroke-width: 1;
    stroke-dasharray: 10, 5;
    animation: line-flow 10s linear infinite;
}
@keyframes line-flow { to { stroke-dashoffset: -100; } }

/* TERMINAL DE LOGS */
.hud-terminal {
    grid-column: span 3;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-top: 60px;
    padding: 15px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    height: 180px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.t-header { 
    font-size: 9px; color: var(--blue); font-weight: 900; margin-bottom: 10px; 
    display: flex; justify-content: space-between; border-bottom: 1px solid rgba(33, 150, 243, 0.1);
    padding-bottom: 5px; margin-bottom: 15px;
}
.t-body { display: flex; flex-direction: column; gap: 8px; }
.log-line { color: rgba(255,255,255,0.5); white-space: nowrap; }
.log-line.warning { color: var(--gold); }
.log-line.error { color: #ff5555; }
.log-line.success { color: #00ff88; }

.stat-mini-info { flex: 1; }
.mini-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; margin-bottom: 8px; overflow: hidden; }
.mini-fill { height: 100%; background: #00CC44; border-radius: 3px; box-shadow: 0 0 10px #00CC44; }
.stat-mini-info span { font-size: 10px; font-weight: 700; color: #00CC44; text-transform: uppercase; }

@media (max-width: 1200px) {
    .stats-grid-v3 { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .bento-card.large, .bento-card.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .stats-grid-v3 { grid-template-columns: 1fr; padding: 0 8% 80px; }
    .bento-card.large, .bento-card.small, .bento-card.wide { grid-column: span 1; height: 180px; }
    .bento-card.wide { flex-direction: column; align-items: flex-start; justify-content: flex-end; }
}


/* 🔗 STEPS */
.steps-section {
    display: flex; justify-content: center; align-items: center; gap: 20px;
    padding: 40px 8% 60px; flex-wrap: nowrap;
}
.step-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 30px 25px; text-align: center; width: 260px;
    transition: all 0.3s ease;
}
.step-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-5px); }
.step-number {
    font-family: 'Outfit'; font-weight: 900; font-size: 2rem; width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; border: 2px solid;
}
.blue-glow { color: var(--blue); border-color: var(--blue); box-shadow: 0 0 20px rgba(33,150,243,0.2); }
.gold-glow { color: var(--gold); border-color: var(--gold); box-shadow: 0 0 20px rgba(201,162,39,0.2); }
.green-glow { color: #00CC44; border-color: #00CC44; box-shadow: 0 0 20px rgba(0,204,68,0.2); }
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.step-card h3 { font-family: 'Outfit'; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.5; }
.step-arrow { font-size: 2rem; color: rgba(255,255,255,0.15); }

/* 📲 DOWNLOAD */
.download-section {
    display: flex; justify-content: center; gap: 30px; padding: 40px 16% 60px; flex-wrap: wrap;
}
.app-download-card {
    background: rgba(255,255,255,0.02); border-radius: 24px; padding: 35px 30px;
    width: 340px; text-align: center; transition: all 0.3s ease;
}
.app-download-card:hover { transform: translateY(-5px); }
.blue-border { border: 1px solid rgba(33,150,243,0.2); }
.blue-border:hover { border-color: rgba(33,150,243,0.4); box-shadow: 0 20px 40px rgba(33,150,243,0.1); }
.gold-border { border: 1px solid rgba(201,162,39,0.2); }
.gold-border:hover { border-color: rgba(201,162,39,0.4); box-shadow: 0 20px 40px rgba(201,162,39,0.1); }
.app-icon-large {
    width: 70px; height: 70px; border-radius: 18px; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 15px;
}
.blue-bg { background: rgba(33,150,243,0.1); border: 1px solid rgba(33,150,243,0.2); }
.gold-bg { background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2); }
.app-desc { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 20px; }
.feature-list { list-style: none; text-align: left; margin-bottom: 25px; }
.feature-list li { color: rgba(255,255,255,0.6); font-size: 13px; padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04); }
.btn-download {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
    border-radius: 50px; font-weight: 700; font-size: 12px; letter-spacing: 1px;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer;
}
.blue-btn { background: rgba(33,150,243,0.15); color: var(--blue); border: 1px solid rgba(33,150,243,0.3); }
.blue-btn:hover { background: rgba(33,150,243,0.25); }
.gold-btn { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.gold-btn:hover { background: rgba(201,162,39,0.25); }

/* 🔬 FORENSE & TECH */
.forense-section { 
    padding: 80px 16% 120px; 
    max-width: 1300px; 
    margin: 0 auto; 
    display: flex; 
    gap: 60px; 
    justify-content: center;
    flex-wrap: wrap;
}
.forense-content { flex: 1; min-width: 320px; max-width: 550px; }
.forense-bars { display: flex; flex-direction: column; gap: 14px; }
.forense-bar { display: flex; align-items: center; gap: 12px; }
.bar-label { font-size: 13px; color: rgba(255,255,255,0.6); width: 160px; white-space: nowrap; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; transition: width 1.5s ease; }
.bar-pct { font-size: 12px; color: rgba(255,255,255,0.4); width: 40px; text-align: right; font-weight: 700; }

/* 🎮 EMULA TEASER */
.emula-teaser { padding: 40px 16% 50px; }
.notify-form { display: flex; justify-content: center; gap: 10px; max-width: 450px; margin: 0 auto; }
.notify-form input {
    flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(102,34,204,0.2); border-radius: 50px;
    color: #fff; font-size: 13px; outline: none;
}
.notify-form input:focus { border-color: var(--purple); }
.notify-form button {
    padding: 14px 25px; background: var(--purple); color: #fff; border: none;
    border-radius: 50px; font-weight: 700; font-size: 12px; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s; white-space: nowrap;
}
.notify-form button:hover { opacity: 0.85; }

/* 📜 LEGAL LINKS */
.legal-links { text-align: center; padding: 30px 16%; }
.legal-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: 0.3s; }
.legal-links a:hover { color: rgba(255,255,255,0.6); }
.legal-links span { color: rgba(255,255,255,0.15); margin: 0 10px; }

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero-v3 { grid-template-columns: 1fr; text-align: center; padding: 20px 8% 60px; }
    .mockup-zone { justify-content: center; margin-top: 30px; }
    .stats-section { gap: 20px; }
    .stat-divider { display: none; }
    .steps-section { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .download-section { flex-direction: column; align-items: center; }
    .nav-v3 { padding: 10px 20px; }
    .links-v3 { display: none; }
    .forense-section { padding: 40px 8%; }
    .bar-label { width: 120px; font-size: 11px; }

    /* HUD RESPONSIVE */
    .telemetry-hud-v4 { padding: 0 8% 80px; }
    .hud-container { grid-template-columns: 1fr; gap: 40px; }
    .hud-nodes { gap: 20px; }
    .hud-lines { display: none; }
    .radial-gauge { width: 200px; height: 200px; }
    .c-pct { font-size: 2.5rem; }
    .hud-terminal { margin-top: 30px; }
}

/* =========================================
   🟢 V2 PREMIUM UPDATES (B2B, BADGES, FORENSICS)
   ========================================= */

/* 1. SEGMENT SWITCHER */
.segment-switcher {
    display: inline-flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}
.segment-btn {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: none;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.segment-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* 2. DEMO MODAL B2B */
.demo-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: 0.4s;
}
.demo-modal.active { opacity: 1; visibility: visible; }
.modal-bg { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(15px); }
.modal-content {
    position: relative; width: 450px; background: #0A0A0E;
    border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 20px;
    padding: 40px; text-align: left;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9), inset 0 0 40px rgba(201, 162, 39, 0.05);
    transform: translateY(30px) scale(0.95); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-modal.active .modal-content { transform: translateY(0) scale(1); }
.close-modal { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; opacity: 0.5; }
.close-modal:hover { opacity: 1; }
.modal-header h2 { font-family: 'Outfit'; color: var(--gold); margin-bottom: 10px; font-weight: 900; }
.modal-header p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 30px; line-height: 1.5; }
.demo-form { display: flex; flex-direction: column; gap: 15px; }
.demo-form input {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 15px 20px; border-radius: 10px; font-family: 'Inter'; font-size: 14px;
    outline: none; transition: 0.3s;
}
.demo-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.05); }
.btn-demo-submit {
    background: var(--gold); color: #000; font-weight: 800; font-family: 'Outfit';
    padding: 18px; border: none; border-radius: 10px; cursor: pointer; font-size: 14px;
    margin-top: 10px; transition: 0.3s; letter-spacing: 1px;
}
.btn-demo-submit:hover { transform: scale(0.98); box-shadow: 0 0 20px rgba(201,162,39,0.4); }

/* 3. TRUST BADGES */
.trust-badges {
    padding: 30px 16%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5,5,8,0.5);
    position: relative; overflow: hidden;
}
.badge-track {
    display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto;
    flex-wrap: wrap; gap: 20px;
}
.t-badge { display: flex; align-items: center; gap: 10px; }
.badge-icon { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.t-badge span { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: 2px; }

/* 4. FORENSIC VISUALIZER (SCANNER FACIAL) */
.forense-visualizer {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px;
    display: flex; gap: 30px; align-items: center;
    position: relative;
    overflow: hidden;
}
.f-face-container {
    width: 160px; height: 160px;
    position: relative;
    border-radius: 10px; border: 1px dashed rgba(255,255,255,0.2);
    overflow: hidden;
    background: #000;
}
.f-face-img {
    position: absolute; top:0; left:0; width:100%; height:100%;
    /* Silhueta placeholder minimalista */
    background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.15) 20%, transparent 60%);
    opacity: 0.5;
}
.f-face-mesh {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: 
        linear-gradient(rgba(33, 150, 243, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 150, 243, 0.2) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
}
.f-scanner-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(33, 150, 243, 0.6), transparent);
    border-bottom: 2px solid var(--blue);
    animation: scanPulse 3s linear infinite;
}
@keyframes scanPulse { 0% { top: -20%; } 100% { top: 120%; } }

.f-point { position: absolute; width:6px; height:6px; background:#fff; border-radius:50%; box-shadow: 0 0 10px #fff; }
.f-point.anomaly { background:#FF3B30; box-shadow: 0 0 15px #FF3B30; animation: blink 0.5s infinite alternate; }
.p1 { top: 35%; left: 30%; }
.p2 { top: 40%; left: 65%; }
.p3 { top: 70%; left: 45%; }
@keyframes blink { from { opacity: 0.3; transform: scale(1); } to { opacity: 1; transform: scale(1.5); } }

.f-data-panel { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.f-stat { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dotted rgba(255,255,255,0.1); padding-bottom: 5px; }
.f-stat .lbl { font-size: 9px; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,0.4); }
.f-stat .val { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 700; color: #fff; }
.f-status-bar { width: 100%; height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 5px; overflow: hidden; }
.f-status-bar .fill { height: 100%; }

/* =========================================
   🟢 V2 MULTIMODAL IN-DEPTH SECTION
   ========================================= */

.multimodal-section {
    padding: 80px 16%;
    background: radial-gradient(circle at top, rgba(33, 150, 243, 0.05) 0%, transparent 80%);
    text-align: center;
}
.mm-title {
    font-family: 'Outfit'; font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 10px;
}
.mm-subtitle {
    color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 40px;
}

.mm-tabs {
    display: inline-flex; gap: 10px; padding: 5px; background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 40px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.mm-tab {
    background: transparent; color: rgba(255,255,255,0.4); border: none; padding: 12px 25px;
    font-size: 12px; font-weight: 700; letter-spacing: 1px; border-radius: 8px; transition: 0.3s;
}
.mm-tab:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.02); }
.mm-tab.active {
    background: rgba(33, 150, 243, 0.15); color: var(--blue); border: 1px solid rgba(33, 150, 243, 0.3);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.1);
}

.mm-content {
    background: rgba(15, 15, 20, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
    padding: 40px; text-align: left;
    backdrop-filter: blur(20px);
}
.mm-pane {
    display: flex; gap: 40px; align-items: center;
    opacity: 0; transform: translateY(20px); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mm-pane.active { opacity: 1; transform: translateY(0); }

.mm-visual {
    width: 280px; height: 280px; background: #000; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
    box-shadow: inset 0 0 30px rgba(33, 150, 243, 0.05);
}

.mm-text { flex: 1; }
.mm-text h3 { font-family: 'Outfit'; font-size: 1.8rem; color: #fff; margin-bottom: 15px; }
.mm-text p { color: rgba(255,255,255,0.6); line-height: 1.6; font-size: 14px; margin-bottom: 25px; }

.mm-metrics { list-style: none; display: flex; flex-direction: column; gap: 15px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; }
.mm-metrics li { font-size: 13px; color: rgba(255,255,255,0.5); display: flex; align-items: baseline; gap: 10px; }
.mm-metrics li::before { content: '>'; color: var(--blue); font-weight: 900; }
.mm-metrics li span { color: var(--blue); font-weight: 700; }

/* Animações Multimodais Placeholder */
.spectrogram-anim {
    width: 80%; height: 50%; background: repeating-linear-gradient(90deg, var(--blue) 0%, transparent 2%, var(--purple) 4%, transparent 5%);
    filter: blur(2px); opacity: 0.5; animation: wave 2s infinite alternate;
}
@keyframes wave { 0% { transform: scaleY(0.5); opacity: 0.3; } 100% { transform: scaleY(1.2); opacity: 0.8; } }

.face-mesh-anim {
    width: 100%; height: 100%;
    background-image: linear-gradient(rgba(201, 162, 39, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 162, 39, 0.2) 1px, transparent 1px);
    background-size: 20px 20px; animation: pan 10s infinite linear;
}
@keyframes pan { 0% { background-position: 0 0; } 100% { background-position: 20px 20px; } }

.doc-scan-anim {
    width: 60%; height: 80%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.doc-scan-anim::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:5px; background: #00CC44;
    box-shadow: 0 0 15px #00CC44; animation: docScan 2s infinite alternate;
}
@keyframes docScan { 0% { top: 0; } 100% { top: 100%; } }

@media (max-width: 1100px) {
    .mm-pane { flex-direction: column; }
    .mm-visual { width: 100%; height: 200px; }
    .multimodal-section { padding: 60px 5%; }
}

/* =========================================
   🟢 V2 BENTO GRID & APP EXPANSION (FASE 3)
   ========================================= */

/* EMPURRÃO DE DISPLAY PARA 3 APPS NA SESSÃO DE DOWNLOAD */
.download-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 10%;
    margin-bottom: 60px;
}
.purple-border { border: 1px solid rgba(156, 39, 176, 0.3); }
.purple-bg { background: rgba(156, 39, 176, 0.1); color: #b94ce5; }
.purple-txt { color: #b94ce5; }
.purple-btn {
    background: transparent; color: #b94ce5; border: 1px solid #b94ce5;
    padding: 12px 20px; border-radius: 8px; font-weight: 700;
    transition: 0.3s; margin-top: auto;
}
.purple-btn:hover { background: #b94ce5; color: #fff; box-shadow: 0 0 15px rgba(156, 39, 176, 0.5); }

/* BENTO GRID - ARSENAL TECNOLÓGICO EDGE */
.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 40px 10%;
    margin-bottom: 60px;
}
.bento-box {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.bento-large { grid-column: span 4; }
@media (min-width: 900px) {
    .bento-large { grid-column: span 2; }
    .bento-medium { grid-column: span 2; }
}

.bento-icon { font-size: 30px; margin-bottom: 15px; }
.bento-box h3 { font-family: 'Outfit'; font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.bento-box p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* Bento Específicos */
.bento-blackbox { background: linear-gradient(135deg, rgba(15,15,20,1) 0%, rgba(30,30,40,0.9) 100%); }
.bento-blackbox::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,59,48,0.02) 10px, rgba(255,59,48,0.02) 20px);
    animation: rotateBg 60s linear infinite; pointer-events: none;
}
@keyframes rotateBg { 100% { transform: rotate(360deg); } }

.bento-code {
    margin-top: 20px; padding: 15px; background: #050508; border-radius: 8px;
    font-family: 'DM Mono', monospace; font-size: 12px; color: #00CC44;
    border-left: 2px solid #00CC44; white-space: pre-wrap; position: relative; z-index: 2;
}

.bento-gemini { /* Gradient subtil remetendo a AI */
    box-shadow: inset 0 0 40px rgba(33, 150, 243, 0.05);
}
.bento-gemini .bento-icon { background: linear-gradient(45deg, #2196F3, #9C27B0); -webkit-background-clip: text; color: transparent; }

.bento-dns {
    border-top: 2px solid var(--gold);
}

.bento-sysadmin { border: 1px dotted rgba(255,255,255,0.2); }
.sysadmin-logos {
    display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap;
    font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 700;
}
.sysadmin-logos span { background: rgba(255,255,255,0.03); padding: 5px 10px; border-radius: 4px; transition: 0.3s; }
.sysadmin-logos span:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* =========================================
   🌌 FASE 5: THE HOLY GRAIL UI (PREMIUM B2B)
   ========================================= */

/* Fundo Físico Mesh */
body {
    background-color: #0A0A0A !important;
}

.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.4) 0%, transparent 70%);
    top: -10%; right: -20%;
}

.orb-2 {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    bottom: -20%; left: -10%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, 10%) scale(1.2); }
}

.aurora-blur-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    backdrop-filter: blur(120px) saturate(150%);
    -webkit-backdrop-filter: blur(120px) saturate(150%);
    background: rgba(10, 10, 10, 0.4);
}

/* =========================================
   💎 ABSOLUTE GLASSMORPHISM (Substituindo Flats)
   ========================================= */

/* Remoção de bordões puras */
.blue-border, .gold-border, .purple-border {
    border: none !important;
}

/* Base Glass para Download Cards e Bento Grid */
.bento-box, .app-download-card {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(30px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
    
    border: none !important;
    /* Edge Lighting */
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.02) !important;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Substituindo o fundo fake do Bento Tech Leader */
.bento-sysadmin {
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Metallic Shader para textos principais  */
.gold-txt, .badge {
    background: linear-gradient(180deg, #FFF7B0 0%, #FFD700 50%, #B8860B 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}

.purple-txt {
    background: linear-gradient(180deg, #E1BEE7 0%, #AB47BC 50%, #6A1B9A 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.blue-txt {
    background: linear-gradient(180deg, #B3E5FC 0%, #29B6F6 50%, #0277BD 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Títulos do bento usando metallic silver/white */
.bento-box h3 {
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 50%, #9E9E9E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Polimento Hover Botões (Sem Neon Básico) */
.blue-btn, .gold-btn, .purple-btn {
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(10px);
}
.blue-btn:hover { background: rgba(41, 182, 246, 0.2) !important; border-color: rgba(41, 182, 246, 0.5) !important; }
.gold-btn:hover { background: rgba(255, 215, 0, 0.2) !important; border-color: rgba(255, 215, 0, 0.5) !important; }
.purple-btn:hover { background: rgba(171, 71, 188, 0.2) !important; border-color: rgba(171, 71, 188, 0.5) !important; }

/* Remove a sombra do bento-gemini (era artificial e fraca) e a linha grossa do DNS */
.bento-gemini { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important; }
.bento-dns { border-top: 1px solid rgba(255, 255, 255, 0.15) !important; }

/* =========================================
   🛡️ TRUST BADGES SINGLE LINE
   ========================================= */

.badge-track {
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 40px !important;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .badge-track {
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .badge-track::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================
   🎙️ TRUE AUDIO WAVE ANIMATION
   ========================================= */

.true-audio-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    width: 100%;
}

.true-audio-wave span {
    display: block;
    width: 6px;
    height: 10px;
    background: linear-gradient(180deg, #B3E5FC 0%, #29B6F6 50%, #0277BD 100%);
    border-radius: 4px;
    animation: trueWave 1.2s infinite ease-in-out;
    animation-delay: var(--delay);
    box-shadow: 0 0 15px rgba(41, 182, 246, 0.4);
}

@keyframes trueWave {
    0%, 100% { height: 12px; opacity: 0.5; }
    50% { height: 75px; opacity: 1; filter: hue-rotate(15deg); }
}

/* Oculta a animação feia anterior */
.spectrogram-anim { display: none !important; }

/* =========================================
   📹 TRUE DEEPFAKE SCAN ANIMATION
   ========================================= */

.true-deepfake-scan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 100%;
    width: 100%;
}

/* Base do Scanner (Caixa do Rosto) */
.scan-target {
    position: relative;
    width: 90px;
    height: 110px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Mesh Dotted Background */
.mesh-grid {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    background-image: radial-gradient(rgba(171, 71, 188, 0.4) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.5;
    animation: meshPulse 2s infinite alternate;
}

@keyframes meshPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.05); opacity: 0.6; }
}

/* Cantos Rastreadores (Crosshairs) */
.corner {
    position: absolute;
    width: 10px; height: 10px;
    border-color: var(--purple);
    border-style: solid;
    border-width: 0;
}
.top-left { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.top-right { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.bottom-left { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.bottom-right { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* Laser Forense */
.laser-scanner {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold), 0 5px 15px rgba(255, 215, 0, 0.2);
    animation: scanVideo 3s infinite linear;
}

@keyframes scanVideo {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* HUD Lateral */
.scan-hud {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
}
.hud-label { color: rgba(255,255,255,0.4); }
.hud-val { color: var(--gold); font-weight: 700; }
.pulse { animation: textPulse 1s infinite alternate; }

@keyframes textPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Oculta a farsa anterior */
.face-mesh-anim { display: none !important; }

/* =========================================
   HUD TERMINAL DEEPFAKE
   ========================================= */

.scan-hud-terminal {
    width: 240px;
    height: 60px;
    overflow: hidden;
    position: relative;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 6px 10px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.terminal-track {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* Rola pra cima 108px em 10 segundos, linearmente para efeito contínuo suave */
    animation: terminalScroll 10s linear infinite;
}

.terminal-track .log {
    /* Fixed height para o scroll ser preciso */
    height: 12px;
    line-height: 12px;
    white-space: nowrap;
}

@keyframes terminalScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-108px); } /* 6 items * (12px height + 6px gap) = 108px */
}

/* =========================================
   🕵️‍♂️ DEEPFAKE: VISUALIZAÇÃO DE EXTRAÇÃO FORENSE
   ========================================= */

.forense-liveness-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    width: 100%;
}

/* Redefinido o Alvo Frontal */
.scan-target {
    position: relative;
    width: 80px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Silhueta com Tracking de Bochecha */
.face-silhouette {
    position: relative;
    width: 50px;
    height: 50px;
}
.face-silhouette svg {
    width: 100%;
    height: 100%;
    animation: facePulse 2s infinite alternate;
}
@keyframes facePulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); }
    100% { transform: scale(1.02); filter: drop-shadow(0 0 8px rgba(255,255,255,0.4)); }
}

/* Quadrado que mapeia os pixels do rosto */
.targeting-box {
    position: absolute;
    right: 5px;
    top: 25px;
    width: 12px;
    height: 12px;
    border: 1px dotted var(--gold);
    animation: scanTargeting 3s infinite alternate;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}
@keyframes scanTargeting {
    0% { transform: translateY(-5px) scale(0.9); }
    100% { transform: translateY(5px) scale(1.1); }
}

/* Painéis de Extração Lateral */
.extraction-hud {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 160px;
}
.ex-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.ex-title {
    font-size: 8px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Grid de Pixels Reais */
.pixel-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 32px;
}
.pixel-matrix .px {
    width: 6px;
    height: 6px;
    border-radius: 1px;
}
.c-1 { background: rgba(255, 255, 255, 0.3); }
.c-2 { background: rgba(255, 255, 255, 0.5); }
.c-3 { background: rgba(255, 255, 255, 0.7); }
.c-error { 
    background: var(--gold); 
    box-shadow: 0 0 8px var(--gold);
    animation: errorPulse 0.5s infinite alternate;
}
@keyframes errorPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Sinal rPPG */
.rppg-wave svg {
    width: 100%;
    height: 20px;
}
.flatline-anim {
    animation: flatlineScan 1s linear infinite;
}
@keyframes flatlineScan {
    to { stroke-dashoffset: -8px; }
}

.ex-status {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: bold;
}

/* Nova correntes CSS, mantendo as velhas desligadas (como scan-hud-terminal) */
.scan-hud-terminal { display: none !important; }

/* =========================================
   📺 EFEITOS DE VÍDEO REAL (DEEPFAKE SCAN)
   ========================================= */

.camera-noise {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8L9eJAAAAGnRSTlMAmZmaAgICAwMEBAUFBgcHCAkKCgsMDQ4OEDv99QAAAKlJREFUeNrtl8kOwyAMRBEvYMcD///XLVpU6mPR6p6mBySOnYckIsR8eB4QIn68nxAiPr6fkCA+vpwQID6/nRBCPD+fEAL8PJ8QAvx8nzmEeP4+cwjx/H3uECL6+9whRPT3hYh+vnYI8fx97RAi+vvqECL6++oQIvz76hAifPvmIPL75iDy++Ig8uuiIPLrriDy66Eg8ussIPLrrCHy6+oh8uvfCHzfXz4D7T8C7P8DAAAA');
    animation: grain 0.2s steps(2) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Scanlines de fita VHS / Monitor */
.scan-target::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.05), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.05));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 2;
}

/* Efeito Glitch no Avatar */
.face-silhouette {
    animation: faceGlitch 5s infinite alternate;
}

@keyframes faceGlitch {
    0% { transform: translate(0); filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); }
    94% { transform: translate(0); }
    95% { transform: translate(2px, -1px); filter: contrast(150%) hue-rotate(90deg); }
    96% { transform: translate(-2px, 1px); }
    97% { transform: translate(0); }
    100% { transform: translate(0); }
}

/* Moldura de Gravação (REC) */
.scan-target::before {
    content: '• REC';
    position: absolute;
    top: 5px; left: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: #FF3B30;
    z-index: 3;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   📄 DOCUMENT FRAUD: INSPEÇÃO FORENSE
   ========================================= */

.forense-doc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    width: 100%;
}

.doc-target {
    position: relative;
    width: 130px;
    height: 85px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px;
    overflow: hidden;
}

.doc-id-card {
    display: flex;
    gap: 10px;
    opacity: 0.6;
}

.doc-photo-placeholder {
    width: 35px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.doc-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 5px;
}

.doc-lines .line {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* Laser Horizontal do Documento */
.doc-laser {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue);
    animation: scanDoc 3s infinite ease-in-out;
}

@keyframes scanDoc {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Marcador de Fraude */
.fraud-marker {
    position: absolute;
    top: 30px; right: 20px;
    width: 40px; height: 15px;
    border: 1px solid #FF3B30;
    background: rgba(255, 59, 48, 0.1);
    animation: blinkGlow 1s infinite alternate;
}

.scan-label {
    position: absolute;
    top: -12px; left: 0;
    font-size: 6px;
    font-weight: 900;
    color: #FF3B30;
    white-space: nowrap;
}

@keyframes blinkGlow {
    from { opacity: 0.2; box-shadow: 0 0 0px #FF3B30; }
    to { opacity: 1; box-shadow: 0 0 8px #FF3B30; }
}

/* Painel ELA (Error Level Analysis) */
.ela-view {
    height: 40px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.ela-noise {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.3;
}

.ela-highlight {
    position: absolute;
    top: 10px; left: 50%;
    width: 20px; height: 10px;
    background: rgba(255, 215, 0, 0.4);
    filter: blur(5px);
    animation: moveHighlight 4s infinite alternate;
}

@keyframes moveHighlight {
    0% { transform: translateX(-10px); }
    100% { transform: translateX(10px); }
}

.doc-meta-log {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    line-height: 1.4;
    color: rgba(255,255,255,0.4);
}

.doc-inspection-hud {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 140px;
}

/* Oculta antiga */
.doc-scan-anim { display: none !important; }

/* =========================================
   📄 DETAILED PHYSICAL DOCUMENT (RG REAL)
   ========================================= */

.doc-target {
    width: 220px !important;  /* Aumentando para caber o texto real */
    height: 120px !important;
    background: #25332c !important; /* Cor característica de documento (verde oliva escuro) */
}

.doc-id-card-detailed {
    display: flex;
    gap: 12px;
    padding: 10px;
    filter: saturate(0.5) contrast(1.1);
}

.doc-id-photo {
    position: relative;
    width: 50px;
    height: 65px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.doc-id-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Overlay de Textura de Segurança no Documento */
.doc-target::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px);
    pointer-events: none;
    z-index: 1;
}

.doc-id-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.doc-id-field {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.doc-id-field .lbl {
    font-size: 5px;
    font-weight: 900;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.doc-id-field .val {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

/* Marcador de Fraude Precisamente no Nome */
.fraud-marker-name {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 130px;
    height: 18px;
    border: 1px solid #FF3B30;
    background: rgba(255, 59, 48, 0.05);
    z-index: 5;
    animation: blinkRed 0.8s infinite alternate;
}

.scan-label-red {
    position: absolute;
    top: -12px;
    right: 0;
    background: #FF3B30;
    color: #FFF;
    font-size: 6px;
    font-weight: 900;
    padding: 1px 4px;
    white-space: nowrap;
}

@keyframes blinkRed {
    from { opacity: 0.3; }
    to { opacity: 1; box-shadow: 0 0 10px rgba(255, 59, 48, 0.4); }
}

/* Ajuste do Laser para a nova largura */
.doc-laser {
    z-index: 10;
}

/* =========================================
   📦 B2B HARDWARE MODULES (BENTO REDESIGN)
   ========================================= */

/* Identificadores de Hardware (Serial/Status) */
.bento-hw-tag {
    position: absolute;
    top: 12px;
    left: 15px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

/* LEDs de Status Táticos */
[class^="led-"] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px currentColor;
    animation: ledPulse 1.5s infinite alternate;
}
.led-green { color: #00CC44; background: #00CC44; }
.led-purple { color: #AB47BC; background: #AB47BC; }
.led-gold { color: var(--gold); background: var(--gold); }
.led-white { color: #FFF; background: #FFF; }

@keyframes ledPulse {
    from { opacity: 0.3; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.1); }
}

/* Parafusos nos Cantos (Screws) */
.bento-box::before, .bento-box::after {
    content: '';
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
}
.bento-box::before { top: 8px; right: 8px; }
.bento-box::after { bottom: 8px; right: 8px; }

/* Animação Disk / Loop (Flight Recorder) */
.disk-anim {
    transform-origin: center;
    animation: rotateDisk 4s linear infinite;
}
@keyframes rotateDisk {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Telemetria Mini (Neural Mesh / Node Map) */
.bento-telemetry-mini {
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.neural-mesh-mini {
    display: flex;
    gap: 15px;
    position: relative;
}
.n-node {
    width: 6px; height: 6px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--purple);
    animation: nodePulse 1s infinite alternate;
}
.n-line {
    position: absolute;
    top: 3px;
    height: 1px;
    background: rgba(171, 71, 188, 0.3);
}
.n-line.l1 { left: 6px; width: 15px; }
.n-line.l2 { left: 27px; width: 15px; }

@keyframes nodePulse {
    from { transform: scale(0.8); opacity: 0.5; }
    to { transform: scale(1.2); opacity: 1; }
}

/* Node Map (DNS Sinkhole) */
.node-map-mini {
    display: flex;
    gap: 20px;
    position: relative;
}
.map-dot {
    width: 4px; height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
}
.map-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: blink 0.5s infinite;
}

/* Odometer / Stats Grid (SysAdmin) */
.odometer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.o-stat { display: flex; flex-direction: column; gap: 5px; }
.o-label { font-size: 8px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.o-val { font-family: 'DM Mono', monospace; font-size: 1.2rem; color: #FFF; font-weight: bold; }

/* Ajuste nos títulos e texto para os novos módulos */
.bento-box h3 { margin-top: 10px !important; }
.bento-box p { font-size: 13px !important; opacity: 0.7; }
.bento-code { margin-top: 15px; border-radius: 4px; }

/* =========================================
   🛰️ CENTRAL RADAR & TELEMETRY HUB (V4.5)
   ========================================= */

.telemetry-hud-v4 {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Radar Sonar Central */
.radar-sonar {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.radar-grid {
    position: absolute;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle, transparent 20%, rgba(255,255,255,0.03) 21%, transparent 22%),
        radial-gradient(circle, transparent 40%, rgba(255,255,255,0.03) 41%, transparent 42%),
        radial-gradient(circle, transparent 60%, rgba(255,255,255,0.03) 61%, transparent 62%);
    pointer-events: none;
}

.radar-blade {
    position: absolute;
    width: 50%; height: 50%;
    top: 0; left: 50%;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.4) 0%, transparent 100%);
    transform-origin: bottom left;
    animation: rotateScan 4s linear infinite;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

@keyframes rotateScan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-ring {
    position: absolute;
    width: 110%; height: 110%;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s infinite alternate;
}

@keyframes ringPulse {
    from { transform: scale(0.95); opacity: 0.2; }
    to { transform: scale(1.05); opacity: 0.5; }
}

/* Nodos Satélites (Cards) */
.n-node-id {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sparkline path {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0.6;
    animation: sparkPulse 2s infinite ease-in-out;
}
.sparkline.blue path { stroke: var(--blue); }
.sparkline.gold path { stroke: var(--gold); }
.sparkline.purple path { stroke: var(--purple); }
.sparkline.green path { stroke: var(--green); }

@keyframes sparkPulse {
    0%, 100% { opacity: 0.4; stroke-width: 1.5; }
    50% { opacity: 1; stroke-width: 2; }
}

/* Esconder as barras antigas se existirem */
.n-bar { display: none !important; }

/* Animação dos Pacotes de Dados nas Linhas SVG */
.hud-lines .line-path {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 1;
}

/* LEDs de Status */
.led-blue { color: var(--blue); background: var(--blue); box-shadow: 0 0 5px var(--blue); }
.led-gold { color: var(--gold); background: var(--gold); box-shadow: 0 0 5px var(--gold); }
.led-purple { color: var(--purple); background: var(--purple); box-shadow: 0 0 5px var(--purple); }
.led-green { color: var(--green); background: var(--green); box-shadow: 0 0 5px var(--green); }

/* Ajuste Odometer no Hub */
.hud-node .n-value {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
}
.hud-node .n-label {
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* =========================================
   📺 HARDWARE CONSOLE (MODULE CHASSIS)
   ========================================= */

/* O Container do Nodo (O Módulo) */
.module-chassis {
    width: 180px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.15); /* Brilho de Borda Superior */
    border-left: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 0 !important; /* Reset padding para o grid interno */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.02);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-chassis:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
}

/* Header do Módulo (Barra de Título Hard) */
.node-header {
    background: rgba(255,255,255,0.03);
    padding: 6px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-id {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* Conteúdo Principal do Nodo */
.node-main {
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.node-main .n-label {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.node-main .n-value {
    font-family: 'Outfit';
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFF;
    line-height: 1;
}

/* Sparklines Padronizadas */
.sparkline {
    width: 60px;
    height: 20px;
    opacity: 0.8;
}

/* Rodapé Técnico (Metadados) */
.node-footer {
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* Ajuste das Colunas para Simetria Cockpit */
.hud-nodes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hud-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px; /* Mais espaço Pro sonar central respirar */
}

/* Esconder os IDs soltos antigos */
.n-node-id { display: none !important; }

/* =========================================
   🕹️ COCKPIT LAYOUT (CONSOLE ALIGNMENT)
   ========================================= */

/* Garantir que as colunas tenham a mesma altura */
.hud-container {
    display: flex;
    align-items: stretch; /* ESTREICHE: A mágica acontece aqui */
    justify-content: center;
    gap: 50px;
    min-height: 320px; /* Altura mínima baseada nos 2 cards + gap da esquerda */
}

.hud-nodes.left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hud-console-right {
    flex: 1;
    max-width: 350px; /* Terminal um pouco mais largo que os cards */
    display: flex;
}

.hud-terminal.module-chassis {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Corpo do Terminal expansível */
.hud-terminal .t-body {
    flex: 1;
    padding: 15px;
    background: rgba(0,0,0,0.4);
    font-size: 11px;
    line-height: 1.6;
    overflow: hidden;
}

/* Métricas integradas no Header do Terminal */
.t-metrics {
    display: flex;
    gap: 12px;
}

.t-m-item {
    font-size: 8px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
    color: var(--blue);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Responsividade: No mobile voltamos pro stack vertical */
@media (max-width: 992px) {
    .hud-container {
        flex-direction: column;
        align-items: center;
    }
    .hud-console-right {
        width: 100%;
        max-width: 180px; /* Mantém a largura do card no mobile */
    }
}

/* =========================================
   🛡️ TACTICAL MODULE VISUALS (MOD-01/02/03)
   ========================================= */

.m-visual {
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* MOD-01: Bit Grid Scan */
.bit-blink {
    animation: bitPulse 1.5s infinite alternate;
}
@keyframes bitPulse {
    from { opacity: 0.1; }
    to { opacity: 1; }
}

.scan-bar {
    animation: scanMove 2s infinite linear;
}
@keyframes scanMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

/* MOD-02: Geo-Pulse */
.ping-pulse {
    transform-origin: center;
    animation: ping 2s infinite ease-out;
}
@keyframes ping {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* MOD-03: Terminal View (Código) */
.terminal-view {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--gold);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 4px;
    padding: 8px;
    width: 130px;
    height: 50px;
    overflow: hidden;
    position: relative;
}

.codes-scroll {
    animation: scrollCode 6s infinite linear;
}

@keyframes scrollCode {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Ajustes Finais nos Cards */
.module-card .m-specs {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.module-card .m-specs span {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.module-card h3 {
    font-size: 1.3rem !important;
    line-height: 1.2;
    margin-bottom: 10px;
}
