/* Estilos Base - Comuns a todas as páginas */
:root {
    --primary-color: #ff3d00;
    --secondary-color: #ff6e40;
    --dark-color: #0a0a0a;
    --light-color: #ffffff;
    --neon-glow: 0 0 10px rgba(255, 61, 0, 0.5),
                 0 0 20px rgba(255, 61, 0, 0.3),
                 0 0 30px rgba(255, 61, 0, 0.1);
}

body {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color);
    color: var(--light-color);
    /* Background da página usando a imagem banner-bg.png */
    background-image: url('../img/banner-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: var(--neon-glow);
}

.btn-connect {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    color: var(--dark-color) !important;
    font-weight: 600;
}

/* Elementos comuns */
.section-title {
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.neon-text {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.btn-glow {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

.btn-outline-glow {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: var(--neon-glow);
}

/* Footer */
footer {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.social-link {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

/* Animations */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                     -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                     0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                     -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                     0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                     0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                     -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                     0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                     -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                     0.05em 0 0 rgba(0, 255, 0, 0.75),
                     0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                     0.05em 0 0 rgba(0, 255, 0, 0.75),
                     0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                     -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                     -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsividade básica */
@media (max-width: 768px) {
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
} 