/* ========================================
   GWEB SOLUÇÕES - MODERN EFFECTS & VIBRANT COLORS
   Efeitos Modernos e Cores Vibrantes
   ======================================== */

/* ========== CORES VIBRANTES OVERRIDE ========== */
:root {
    /* Primary Colors - Azul Ciano Elétrico */
    --primary-color: #00D9FF !important;
    --primary-dark: #00B8D4 !important;
    --primary-light: #33E0FF !important;
    --primary-gradient: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%) !important;

    /* Secondary Colors - Roxo Neon */
    --secondary-color: #9D00FF !important;
    --secondary-dark: #7B00CC !important;
    --secondary-light: #B833FF !important;

    /* Accent Colors - Rosa Vibrante */
    --accent-color: #FF0080 !important;
    --accent-dark: #CC0066 !important;
    --accent-light: #FF33A1 !important;

    /* Gradientes Vibrantes */
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0099FF 50%, #9D00FF 100%) !important;
    --gradient-secondary: linear-gradient(135deg, #FF0080 0%, #9D00FF 100%) !important;
    --gradient-accent: linear-gradient(135deg, #00D9FF 0%, #00FFB3 100%) !important;
    --gradient-neon: linear-gradient(135deg, #00D9FF 0%, #9D00FF 50%, #FF0080 100%) !important;

    /* Sombras com Brilho Neon */
    --shadow-glow: 0 0 30px rgba(0, 217, 255, 0.6) !important;
    --shadow-glow-purple: 0 0 40px rgba(157, 0, 255, 0.5);
    --shadow-glow-pink: 0 0 35px rgba(255, 0, 128, 0.5);
}

/* ========== NAVBAR COM GLASSMORPHISM ========== */
.navbar {
    background: rgba(10, 14, 39, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 217, 255, 0.15) !important;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.9) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 217, 255, 0.25) !important;
}

/* ========== BOTÕES COM EFEITO NEON ========== */
.btn-primary {
    background: var(--gradient-neon) !important;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(157, 0, 255, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(157, 0, 255, 0.5) !important;
}

.btn-secondary {
    background: transparent !important;
    border: 2px solid #00D9FF !important;
    color: #00D9FF !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3) !important;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1) !important;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6) !important;
    transform: translateY(-3px) !important;
}

/* ========== HERO SECTION COM EFEITOS ========== */
.hero {
    background: linear-gradient(135deg, #0A0E27 0%, #1E2749 50%, #0A0E27 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 128, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-title {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 40px rgba(157, 0, 255, 0.4);
    }
}

/* ========== CARDS COM GLASSMORPHISM ========== */
.service-card,
.value-item,
.benefit-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 217, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.service-card:hover,
.value-item:hover,
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(0, 217, 255, 0.5) !important;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-10px) scale(1.02) !important;
}

.service-card::before {
    background: linear-gradient(135deg, #00D9FF 0%, #9D00FF 100%) !important;
}

/* ========== ÍCONES COM EFEITO NEON ========== */
.service-icon,
.value-icon,
.benefit-icon,
.card-icon {
    background: var(--gradient-neon) !important;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 40px rgba(157, 0, 255, 0.4) !important;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 40px rgba(157, 0, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(157, 0, 255, 0.6);
    }
}

/* ========== PARTÍCULAS ANIMADAS ========== */
.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.particles::before {
    background: rgba(0, 217, 255, 0.2);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    background: rgba(157, 0, 255, 0.2);
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* ========== TEXTO GRADIENTE ANIMADO ========== */
.gradient-text {
    background: var(--gradient-neon) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ========== SEÇÃO ABOUT COM EFEITO ========== */
.about {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00D9FF, transparent);
}

/* ========== PORTFOLIO COM HOVER EFFECT ========== */
.portfolio-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.portfolio-overlay {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.9) 0%, rgba(157, 0, 255, 0.9) 100%) !important;
}

/* ========== FOOTER MODERNO ========== */
.footer {
    background: linear-gradient(135deg, #0A0E27 0%, #1E2749 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00D9FF, #9D00FF, #FF0080, transparent);
}

/* ========== LINKS COM EFEITO NEON ========== */
.nav-link::after {
    background: var(--gradient-neon) !important;
    height: 3px !important;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    border-color: #00D9FF;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.wheel {
    background: #00D9FF;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* ========== ANIMAÇÃO DE ENTRADA ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.value-item,
.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}