:root {
    --primary: #FFD700;
    --accent: #E30613;
    --dark: #000000;
    --glass: rgba(10, 10, 10, 0.98); /* Quase opaco para esconder o fundo */
    --text: #ffffff;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Moldura de Câmera */
.camera-frame {
    position: fixed;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    z-index: 100;
    pointer-events: none;
}
.corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--primary); }
.tl { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.tr { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
.bl { bottom: -2px; left: -2px; border-right: 0; border-top: 0; }
.br { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

/* Background & Profundidade */
.video-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    background: #000;
}

#video-canvas {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(0.85);
    filter: brightness(0.5) contrast(1.2);
}

.overlay-vignette {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,1) 100%);
    z-index: -1;
}

/* Layout Compacto */
#content { position: relative; height: 1000vh; } /* Aumentado de 500vh para 1000vh */

.step {
    height: 100vh;
    display: flex;
    align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 0;
    position: sticky;
    top: 0;
}

/* Removido o !important para permitir a animação */

/* CARDS MODERNOS */
.modern-card, .hero-card, .stats-row, .final-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 2.5rem; 
    width: 100%;
    max-width: 750px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

/* Ajustes específicos de largura apenas */
.hero-card { max-width: 550px; }
.stats-row { max-width: 850px; }

.glitch-text {
    font-size: 3.5rem; /* Reduzido */
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

h2 { font-size: 2.2rem; margin-bottom: 0.8rem; font-weight: 800; }
p { font-size: 1rem; opacity: 0.8; line-height: 1.5; }

/* Split Layout Ajustado */
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.card-image img {
    width: 100%; height: 280px; /* Reduzido */
    object-fit: cover; border-radius: 15px;
}

/* Diferenciais Lado a Lado Compacto */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 850px;
}
.stat-box h3 { font-size: 1.1rem; color: var(--primary); margin-top: 0.5rem; }
.icon-circle { font-size: 1.5rem; }

/* Botões Clean Modernos */
.actions-grid { display: flex; gap: 1rem; margin-top: 2rem; }
.btn {
    flex: 1; padding: 1rem; border-radius: 10px;
    text-decoration: none; font-weight: 800;
    font-size: 0.9rem; text-align: center;
    transition: 0.2s;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-outline { border: 1.5px solid var(--primary); color: var(--primary); }

/* Loader & Mouse */
.loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mouse { width: 18px; height: 30px; border: 2px solid var(--primary); border-radius: 9px; margin: 15px auto; position: relative; }
.mouse::after { content: ''; width: 3px; height: 6px; background: var(--primary); position: absolute; left: 50%; transform: translateX(-50%); top: 5px; animation: m-s 2s infinite; }
@keyframes m-s { 0% { top: 5px; opacity: 1; } 100% { top: 15px; opacity: 0; } }

.modern-map { border-radius: 20px; overflow: hidden; margin: 1.5rem 0; border: 1px solid rgba(255,215,0,0.2); }