body {
    font-family: 'Inter', sans-serif;
    background-color: #05070a;
    color: #e2e8f0;
}


.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.hero-parallax {
    background-image: linear-gradient(rgba(5, 7, 10, 0.8), rgba(5, 7, 10, 0.8)), url('assets/geenie-security-awareness-consultoria-agencia-sp-conscientizacao-seguranca_banner.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.text-gradient {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-glow {
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
}

.btn-glow:hover {
    box-shadow: 0 0 15px 1px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

#navbar {
      background: rgba(11, 18, 32, 0.4);
}

#navbar.glass-active {
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


@media (max-width: 1024px) {
    .hero-parallax {
        background-attachment: scroll;
    }
}