body {
            background-color: #05070A;
            color: #E0E1DD;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            /* Custom scrollbar — Firefox */
            scrollbar-width: thin;
            scrollbar-color: #2d3846 #05070A;
        }

        /* Custom scrollbar — WebKit */
        body::-webkit-scrollbar {
            width: 8px;
        }

        body::-webkit-scrollbar-track {
            background: #0B0F14;
        }

        body::-webkit-scrollbar-thumb {
            background: #2d3846;
            border-radius: 4px;
        }

        body::-webkit-scrollbar-thumb:hover {
            background: #3d4f63;
        }

        /* Generic glassmorphism */
        .glass-panel {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .bg-grid-pattern {
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* The hero section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        #hero-canvas {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
            opacity: 0.6;
            background: #05070A;
        }

        .marq-wrap {
            display: flex;
            width: max-content;
        }

        .will-change-transform {
            will-change: transform;
        }

        /* ── O Início — Journey Line & Orb ── */

        /* The vertical journey line */
        .journey-line {
            width: 1px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Pulsing orb – O Início */
        .journey-orb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #FFFFFF;
            /* Sombras simplificadas para evitar sobrecarga de processamento de GPU */
            box-shadow: 
                0 0 15px rgba(255, 255, 255, 0.5), 
                0 0 35px rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            flex-shrink: 0;
            will-change: transform;
        }

        .journey-orb::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            animation: orbPulse 3s ease-in-out infinite;
            will-change: transform, opacity;
        }

        .journey-orb::after {
            content: '';
            position: absolute;
            inset: -14px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.07);
            animation: orbPulse 3s ease-in-out infinite 0.5s;
            will-change: transform, opacity;
        }

        @keyframes orbPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        /* The line that grows from the orb downward */
        .journey-line-grow {
            width: 2px;
            height: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Noise overlay for the site */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 999;
            opacity: 0.04;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Hide scroll indicator on short screens to avoid overlap */
        @media (max-height: 700px) {
            .hero-scroll-indicator {
                display: none;
            }
        }

        /* ── A Pedra no Caminho — Obstacle Cards ── */
        .obstacle-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 1rem;
            padding: 2rem 2rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .obstacle-card:hover {
            border-color: rgba(201, 42, 42, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(201, 42, 42, 0.06);
        }

        .obstacle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(201, 42, 42, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .obstacle-card:hover::before {
            opacity: 1;
        }

        .obstacle-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 42, 42, 0.05);
            margin-bottom: 1.5rem;
            transition: all 0.5s;
        }

        .obstacle-card:hover .obstacle-icon-wrap {
            background: rgba(201, 42, 42, 0.12);
            border-color: rgba(201, 42, 42, 0.2);
        }

        /* Journey connector line between sections */
        .journey-connector {
            width: 2px;
            height: 160px;
            background: rgba(255, 255, 255, 0.35);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
            pointer-events: none;
        }

        .journey-connector-bottom {
            width: 2px;
            height: 160px;
            background: rgba(255, 255, 255, 0.35);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
            mask-image: linear-gradient(to top, black 0%, transparent 100%);
            pointer-events: none;
        }

        /* Continuous line spanning behind content */
        .journey-line-continuous {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.1));
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
            z-index: 4;
            pointer-events: none;
        }