html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    background-color: #020202;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

/* Estilo Enterprise Black Glass */
.glass-panel {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.glass-header {
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blobs de Fundo (Verde Sóbrio) */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.06;
    /* Muito sutil */
    z-index: -1;
    pointer-events: none;
}

/* Tilt Container */
.tilt-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-inner {
    transition: transform 0.1s ease;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #020202;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hover-lift {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Scrollbar Verde */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020202;
}

::-webkit-scrollbar-thumb {
    background: #1F2937;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}