 :root {
            --primary-red: #FF3B3B;
            --dark-red: #CC2E2E;
            --light-gray: #F8F9FA;
            --dark-gray: #212529;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section com Vídeo */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            filter: brightness(0.5);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,59,59,0.8) 0%, rgba(33,37,41,0.9) 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
            animation: fadeInUp 1.2s ease;
        }

        .video-control {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 2;
        }

        .video-control button {
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .video-control button:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        /* Navbar */
        .navbar {
            background: rgba(255,255,255,0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-red) !important;
        }

        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 600;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--primary-red);
        }

        /* Cards */
        .info-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255,59,59,0.2);
            border-color: var(--primary-red);
        }

        .info-card i {
            font-size: 4rem;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
        }

        .info-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }

        /* App Download Section */
        .app-download {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: white;
        }

        .app-btn {
            background: white;
            color: var(--dark-gray);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .app-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            color: var(--primary-red);
        }

        .app-btn i {
            font-size: 2rem;
        }

        /* Bus Fleet */
        .bus-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .bus-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(255,59,59,0.3);
        }

        .bus-card-body {
            padding: 2rem;
        }

        .bus-icon {
            font-size: 5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats-section {
            background: var(--dark-gray);
            color: white;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-red);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-red);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary {
            background: var(--primary-red);
            border: none;
            padding: 1rem 3rem;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,59,59,0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }