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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #FFFFFF;
    line-height: 1.5;
    overflow-x: hidden;
}

:root {
    --primary: #1A86FA;
    --secondary: #6C1BE8;
    --dark-bg: #0a0a0f;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #1A86FA 0%, #6C1BE8 100%);
    --gradient-hover: linear-gradient(135deg, #0f71db 0%, #5a12c9 100%);
    --glass-border: rgba(255, 255, 255, 0.08);
    --matrix-green: #00ff41;
}

/* ====== MATRIX RAIN CANVAS ====== */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
    background: #050508;
}

/* ====== SEÇÃO COM VÍDEO BG ====== */
.video-section {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    padding: 120px 0;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(10,10,15,0.85) 0%, rgba(26,134,250,0.2) 100%);
    z-index: 1;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

/* Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes borderGlow {
    0% {
        border-color: rgba(26,134,250,0.3);
        box-shadow: 0 0 0 0 rgba(26,134,250,0.1);
    }
    50% {
        border-color: rgba(108,27,232,0.8);
        box-shadow: 0 0 20px 5px rgba(108,27,232,0.3);
    }
    100% {
        border-color: rgba(26,134,250,0.3);
        box-shadow: 0 0 0 0 rgba(26,134,250,0.1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== NAVBAR ====== */
.navbar {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    padding: 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    font-family: 'Share Tech Mono', monospace;
}

.navbar-brand span {
    background: none;
    color: var(--white);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-outline-glow {
    border: 1.5px solid var(--primary);
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.btn-outline-glow:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(26,134,250,0.3);
}


