/* === CSS EXCLUSIVO DO HEADER === */

/* Header Principal */
.header-container {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #312e81 50%, #7c3aed 75%, #ec4899 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Efeitos de fundo do header */
.header-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.header-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 40%);
}

.header-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: header-float 25s ease-in-out infinite;
}

.header-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.header-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ec4899, #f59e0b);
    bottom: 10%;
    right: 15%;
    animation-delay: 8s;
}

.header-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    top: 60%;
    left: 60%;
    animation-delay: 16s;
}

@keyframes header-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.1) rotate(90deg); }
    50% { transform: translate(-20px, 30px) scale(0.9) rotate(180deg); }
    75% { transform: translate(40px, 15px) scale(1.05) rotate(270deg); }
}

/* Conteúdo do header */
.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: header-badge-pulse 3s ease-in-out infinite;
}

@keyframes header-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.header-badge-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.header-main-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Orbitron', 'Inter', sans-serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-title-highlight {
    background: linear-gradient(45deg, #06b6d4, #3b82f6, #8b5cf6, #ec4899);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: header-gradient-shift 4s ease-in-out infinite;
}

@keyframes header-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons do header */
.header-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.header-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Scroll indicator */
.header-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #cbd5e1;
    font-size: 0.875rem;
    text-align: center;
    animation: header-bounce 2s ease-in-out infinite;
}

@keyframes header-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.header-scroll-arrow {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .header-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .header-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .header-cta-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .header-cta-primary,
    .header-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* Particles effect */
.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.header-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: header-particle-float 15s linear infinite;
}

@keyframes header-particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}
