        :root {
            --primary-color: #1e3a5f;
            --accent-color: #e07b39;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }
                /* Vídeo de fundo */
        .hero-section video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Overlay (gradiente escuro por cima do vídeo) */
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgb(0 0 0 / 29%), rgb(0 0 0 / 33%));
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 8px 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2rem;
        }
        
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .btn-primary-custom {
            background: var(--accent-color);
            border: none;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(224, 123, 57, 0.25);
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background: #c96a2e;
            box-shadow: 0 6px 16px rgba(224, 123, 57, 0.35);
        }
        
        .btn-outline-custom {
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 8px;
        }
        
        .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
        }
        
        /* Navbar */
        .navbar-custom {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .navbar-transparent {
            background: transparent;
            box-shadow: none;
        }
        
        .navbar-transparent .navbar-brand,
        .navbar-transparent .nav-link {
            color: rgb(0, 0, 0) !important;
        }
        
        /* Section Titles */
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto 3rem;
        }
        
        /* Stats Cards */
        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
            transition: all 0.3s;
            height: 100%;
        }
        
        .stat-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }
        
        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* Phase Cards */
        .phase-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
            transition: all 0.3s;
            height: 100%;
        }
        
        .phase-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }
        
        .phase-header {
            padding: 2rem;
            position: relative;
            color: white;
        }
        
        .phase-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 3rem;
            font-weight: 700;
            opacity: 0.3;
        }
        
        .phase-content {
            padding: 1.5rem;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-banner {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Language Selector */
        .language-selector {
            display: flex;
            gap: 0.5rem;
        }
        
        .lang-btn {
            padding: 4px 12px;
            border-radius: 4px;
            border: 1px solid #ddd;
            background: white;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .lang-btn:hover,
        .lang-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }