/* Efeitos Neon */
.neon-title {
    color: var(--primary);
    text-shadow: 
        0 0 5px var(--primary),
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--accent);
    animation: neon-flicker 1.5s infinite alternate;
}

.neon-subtitle {
    color: var(--secondary);
    text-shadow: 
        0 0 5px var(--secondary),
        0 0 10px rgba(0, 191, 255, 0.5);
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 5px var(--primary),
            0 0 10px var(--primary),
            0 0 20px var(--primary),
            0 0 40px var(--accent);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Bordas Neon */
.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--secondary), 
        var(--accent), 
        var(--primary));
    background-size: 400%;
    z-index: -1;
    animation: border-glow 3s linear infinite;
    opacity: 0.7;
}

@keyframes border-glow {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* Efeito de Glow em Elementos */
.glow-effect {
    transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
    box-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px var(--accent);
}

/* Texto com Gradiente Neon */
.gradient-text {
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--secondary), 
        var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* Efeito de Linha Neon */
.neon-line {
    position: relative;
    padding-bottom: 10px;
}

.neon-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--secondary), 
        transparent);
    background-size: 200% auto;
    animation: line-glow 2s linear infinite;
}

@keyframes line-glow {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: 200% center;
    }
}