* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #2563eb;
            --primary-orange: #ea580c;
            --light-blue: #dbeafe;
            --light-orange: #fed7aa;
            --white: #ffffff;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-900: #111827;
        }

        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background-color: var(--white);
            padding-top: 180px; /* Para compensar o header fixo */
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            left: 0;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::before {
            content: "🎮";
            font-size: 1.5rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 1rem;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: var(--light-blue);
            color: var(--primary-blue);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
            padding: 0.5rem 0;
        }

        .mobile-toggle span {
            width: 100%;
            height: 3px;
            background: var(--primary-blue);
            transition: all 0.3s ease;
            transform-origin: center;
            border-radius: 2px;
        }

        /* Animação do hambúrguer para X */
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-orange) 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="20" cy="80" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            animation: heroContainerSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        /* Animação de entrada da hero-container */
        @keyframes heroContainerSlideIn {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            50% {
                opacity: 0.7;
                transform: translateY(15px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Efeito de hover na hero-container */
        .hero-container:hover {
            transform: translateY(-2px);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Animação de pulsação sutil */
        .hero-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(234, 88, 12, 0.1));
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            animation: heroPulse 4s ease-in-out infinite;
        }

        @keyframes heroPulse {
            0%, 100% {
                opacity: 0;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(1.02);
            }
        }

        /* Efeito de brilho flutuante */
        .hero-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: heroShine 6s ease-in-out infinite;
        }

        @keyframes heroShine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: heroTitleSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
            opacity: 0;
            transform: translateX(-50px);
        }

        @keyframes heroTitleSlideIn {
            0% {
                opacity: 0;
                transform: translateX(-50px) scale(0.9);
            }
            50% {
                opacity: 0.8;
                transform: translateX(-25px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .hero-text .highlight {
            color: var(--primary-blue);
            position: relative;
        }

        .hero-text .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--primary-orange);
            opacity: 0.3;
            border-radius: 4px;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
            max-width: 500px;
            animation: heroSubtitleSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
            opacity: 0;
            transform: translateX(-30px);
        }

        @keyframes heroSubtitleSlideIn {
            0% {
                opacity: 0;
                transform: translateX(-30px) scale(0.95);
            }
            50% {
                opacity: 0.7;
                transform: translateX(-15px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary-orange);
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: heroBadgeSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards, bounce 2s infinite 2.1s;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }

        @keyframes heroBadgeSlideIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.8);
            }
            50% {
                opacity: 0.8;
                transform: translateY(10px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-badge::before {
            content: "🚀";
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
            color: var(--white);
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
            animation: heroButtonSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            position: relative;
            overflow: hidden;
        }

        @keyframes heroButtonSlideIn {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            50% {
                opacity: 0.8;
                transform: translateY(15px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Efeito de brilho no botão */
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
        }

        .cta-button::after {
            content: "→";
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(5px);
        }

        .hero-image {
            position: relative;
            animation: heroImageSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
            opacity: 0;
            transform: translateX(50px) scale(0.9);
        }

        @keyframes heroImageSlideIn {
            0% {
                opacity: 0;
                transform: translateX(50px) scale(0.9);
            }
            50% {
                opacity: 0.8;
                transform: translateX(25px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        .floating-elements {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            animation: float 3s ease-in-out infinite, floatingElementSlideIn 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
            opacity: 0;
            transform: scale(0) rotate(180deg);
        }

        @keyframes floatingElementSlideIn {
            0% {
                opacity: 0;
                transform: scale(0) rotate(180deg);
            }
            50% {
                opacity: 0.7;
                transform: scale(0.7) rotate(90deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .floating-elements:nth-child(1) {
            top: 20px;
            right: 20px;
            animation-delay: 0s, 1.5s;
        }

        .floating-elements:nth-child(2) {
            bottom: 20px;
            left: 20px;
            animation-delay: 1s, 1.8s;
        }

        .floating-elements:nth-child(3) {
            top: 50%;
            right: -20px;
            animation-delay: 2s, 2.1s;
        }

        /* Games Section */
        .games-section {
            padding: 30px 0;
            background: var(--white);
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .features-section .container {
            position: relative;
            z-index: 1;
        }

        .features-section h2 {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .icon-box {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            margin-bottom: 0.75rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-blue);
        }

        .icon-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
        }

        .icon-box i {
            font-size: 1.5rem;
            color: var(--primary-blue);
            min-width: 1.5rem;
        }

        .icon-box span {
            font-weight: 600;
            color: #374151;
            font-size: 0.95rem;
        }

        /* Responsividade para Features Section */
        @media (max-width: 768px) {
            .features-section {
                padding: 2rem 0;
            }

            .icon-box {
                padding: 0.75rem;
                margin-bottom: 0.5rem;
            }

            .icon-box i {
                font-size: 1.25rem;
            }

            .icon-box span {
                font-size: 0.9rem;
            }
        }

        .games-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .game-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .game-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--light-blue), var(--light-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .game-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        }

        .game-content {
            padding: 1.5rem;
        }

        .game-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .game-description {
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .game-category {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .game-category.music {
            background: var(--light-orange);
            color: var(--primary-orange);
        }

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Partículas flutuantes adicionais */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
            animation: heroParticles 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes heroParticles {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1) rotate(0deg);
            }
            25% {
                opacity: 0.5;
                transform: scale(1.1) rotate(90deg);
            }
            50% {
                opacity: 0.7;
                transform: scale(0.9) rotate(180deg);
            }
            75% {
                opacity: 0.4;
                transform: scale(1.05) rotate(270deg);
            }
        }

        /* Features Section */
        .features-header {
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
        }
        
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: white;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-title {
            background-color: #3498db;
            color: white;
            padding: 15px;
            font-weight: bold;
            text-align: center;
        }
        
        .feature-list {
            padding: 20px;
        }
        
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            list-style-type: none;
            position: relative;
            padding-left: 25px;
        }
        
        .feature-list li:before {
            content: "✓";
            color: #2ecc71;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }

        .icon-box {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .icon-box i {
            font-size: 1.5rem;
            color: #0d0c53;
            margin-right: 0.75rem;
        }
        
        h2 {
            font-weight: bold;
            margin-bottom: 2rem;
        }

        /* Estilos para a seção de Temas */
        .theme-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .theme-icon:hover {
            transform: scale(1.1);
        }

        .theme-icon i {
            font-size: 2rem;
            color: white;
        }

        /* Estilos para a seção de Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .rating {
            display: flex;
            justify-content: center;
            gap: 2px;
        }

        .rating i {
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            line-height: 1.6;
            font-size: 1rem;
        }

        .testimonial-author {
            color: var(--primary-blue);
            margin-bottom: 0;
        }

        /* Responsividade para as novas seções */
        @media (max-width: 768px) {
            .theme-icon {
                width: 60px;
                height: 60px;
            }

            .theme-icon i {
                font-size: 1.5rem;
            }

            .testimonial-card {
                margin-bottom: 1rem;
            }
        }

        /* Estilos para a seção FAQ */
        .faq-section {
            position: relative;
            margin-top: 4rem;
        }

        .faq-header {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 4rem 0 6rem;
            text-align: center;
            position: relative;
        }

        .faq-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }

        .faq-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 3rem;
            margin-top: -3rem;
            position: relative;
            z-index: 10;
        }

        /* Personalização do Bootstrap Accordion */
        .accordion-item {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .accordion-button {
            background: #f9fafb;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            color: #374151;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-blue);
            color: var(--primary-blue);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 1.5rem;
            color: #6b7280;
            line-height: 1.6;
        }

        .accordion-body p {
            margin-bottom: 1rem;
        }

        .accordion-body p:last-child {
            margin-bottom: 0;
        }

        .accordion-body strong {
            color: var(--primary-blue);
        }

        /* Responsividade para FAQ */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.5rem;
            }

            .faq-subtitle {
                font-size: 1.1rem;
            }

            .faq-content {
                padding: 2rem;
                margin-top: -2rem;
            }

            .accordion-button {
                padding: 1rem;
                font-size: 1rem;
            }

            .accordion-body {
                padding: 1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Animação de scroll reveal */
        .hero-container.reveal {
            animation: heroContainerReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        @keyframes heroContainerReveal {
            0% {
                opacity: 0.7;
                transform: translateY(20px) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Efeito de parallax sutil */
        .hero {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .hero-container {
            transform: translateZ(0);
            transition: transform 0.3s ease;
        }

        .hero-container.parallax {
            transform: translateZ(10px);
        }

        /* Loading animation for images */
        .loading {
            background: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            /* Ajustes de animação para mobile */
            .hero-container {
                animation-duration: 1s;
            }

            .hero-text h1 {
                animation-duration: 1.2s;
                animation-delay: 0.2s;
            }

            .hero-text p {
                animation-duration: 1.2s;
                animation-delay: 0.4s;
            }

            .hero-badge {
                animation-duration: 1s;
                animation-delay: 0.6s;
            }

            .cta-button {
                animation-duration: 1s;
                animation-delay: 0.8s;
            }

            .hero-image {
                animation-duration: 1.2s;
                animation-delay: 0.4s;
            }

            .floating-elements {
                animation-duration: 1.5s;
            }

            .nav-menu {
                position: fixed;
                top: -500px; /* Posição bem acima da tela para garantir que fique oculto */
                left: 0;
                width: 100%;
                height: auto;
                background-color: var(--white);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 2rem 0;
                transition: top 0.3s ease;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                list-style: none;
                opacity: 0; /* Adiciona opacity para garantir invisibilidade */
                visibility: hidden; /* Adiciona visibility para melhor controle */
            }

            .nav-menu.active {
                top: 80px;
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .nav-link {
                font-size: 1.2rem;
                padding: 1rem;
                display: block;
                width: 100%;
                text-align: center;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
                margin: 0 auto 2rem;
            }

            .hero-image img {
                height: 300px;
            }

            .floating-elements {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .hero-container {
                padding: 0 1rem;
            }

            .games-container {
                padding: 0 1rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }
        }

        /* CSS adicional para a Navbar Bootstrap - Adicionar ao final do styles.css */

/* Ajustes para navbar Bootstrap */
body {
    padding-top: 1px; /* Altura da navbar fixa */
}

/* Personalização da navbar */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Logo personalizado */
.navbar-brand {
    color: var(--primary-blue) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-blue) !important;
}

/* Links da navbar */
.navbar-nav .nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    background-color: var(--light-blue);
}

/* Personalização do toggler */
.navbar-toggler {
    padding: 0.5rem;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837, 99, 235, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Animação suave para o collapse */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Ajustes mobile */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 1rem;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--light-blue);
    }
}

/* Remover estilos antigos do header customizado */
.header,
.nav-container,
.nav-menu,
.mobile-toggle {
    display: none !important;
}

/* Animações interativas para hero-container */
.hero-container {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-container:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* Efeito de partículas interativas */
.hero-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-container:hover::before {
    opacity: 1;
    animation: heroContainerGlow 2s ease-in-out infinite;
}

@keyframes heroContainerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}