/* ==================== HERO CINEMATOGRÁFICO ==================== */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 200px 0 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(10, 21, 46, 0.5);
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.8s ease both;
}

.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--glow-secondary);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--glow-secondary);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--glow-secondary); }
    50% { opacity: 0.3; box-shadow: 0 0 2px var(--glow-secondary); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--glow-primary), var(--glow-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 44px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-trust {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    padding: 0 20px;
}

.trust-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    letter-spacing: -1px;
}

.trust-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: block;
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--border-ghost);
}

/* Visual da Hero */
.hero-visual-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glow-orb-primary {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 108, 240, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 4s ease-in-out infinite;
}

.glow-orb-secondary {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08) 0%, transparent 70%);
    top: 60%;
    left: 55%;
    transform: translate(-50%, -50%);
    animation: orbPulse 4s ease-in-out 1s infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.logo-3d-container {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(30, 108, 240, 0.3));
}

.logo-3d {
    max-width: 320px;
    transition: var(--transition-smooth);
    animation: logoShine 6s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { filter: brightness(1) contrast(1.05); }
    50% { filter: brightness(1.1) contrast(1.1); }
}

.logo-reflection {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(30, 108, 240, 0.15), transparent 70%);
    filter: blur(10px);
}

.floating-particles .fp {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--glow-secondary);
    pointer-events: none;
    animation: floatParticle 3s ease-in-out infinite;
}

.fp-1 { top: 20%; left: 10%; animation-delay: 0s; }
.fp-2 { top: 30%; right: 15%; animation-delay: 0.5s; width: 3px; height: 3px; }
.fp-3 { bottom: 25%; left: 20%; animation-delay: 1s; width: 2px; height: 2px; }
.fp-4 { top: 15%; right: 25%; animation-delay: 1.5s; }
.fp-5 { bottom: 35%; right: 10%; animation-delay: 2s; width: 3px; height: 3px; }
.fp-6 { top: 45%; left: 5%; animation-delay: 2.5s; width: 2px; height: 2px; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-abyss), transparent);
    pointer-events: none;
    z-index: 2;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}