/* Estilos Globais */
body {
    background-color: #020617;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Efeito Glassmorphism Potencializado */
.glass-panel {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Backgrounds de Seção com Overlay */
.section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #020617 0%, rgba(2, 6, 23, 0.7) 50%, #020617 100%);
    z-index: 0;
}

/* Gradiente de Texto */
.text-gradient {
    background: linear-gradient(to right, #60a5fa, #c084fc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botão CTA Principal */
.btn-glow {
    position: relative;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
    transform: scale(1.02);
}

/* Botões Secundários (Services) */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.btn-service-blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.btn-service-blue:hover {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-service-purple {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #a78bfa;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.btn-service-purple:hover {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.btn-service-cyan {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.5);
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.btn-service-cyan:hover {
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

/* Gráficos CSS */
.bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    height: 8px;
    margin-top: 8px;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    /* Animado via JS/CSS */
    transition: width 1.5s ease-out;
}

/* Marquee / Carrossel Infinito */
.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
