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

        :root {
            --color-dark-navy: #0A1127;
            --color-navy: #14214D;
            --color-navy-light: #4D577A;
            --color-blue: #7D86A6;
            --color-blue-light: #ACB4D3;
            --color-light: #E9E9E9;
            --color-brown: #716753;
            --color-gold: #B8860B;
            --color-gold-light: #ffc738;
            
            --font-display: 'Cinzel', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-navy);
            line-height: 1.6;
            background-color: var(--color-light);
        }

        /* HEADER & NAVIGATION */
        header { 
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
            color: var(--color-light); 
            padding: 1.5rem 0; 
            position: sticky; /* Alterado para fixed */ 
            top: 0; width: 100%; /* Adicionado para garantir que o cabeçalho ocupe toda a largura */ 
            z-index: 1000; 
            box-shadow: 0 2px 8px rgba(10, 17, 39, 0.15); 
        } 

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

        .logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-gold);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        nav.nav-menu {
            display: flex;
        }

        nav.nav-menu a {
            color: var(--color-light);
            text-decoration: none;
            margin-left: 2.5rem;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--color-gold);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-gold);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-blue-light) 100%);
            color: var(--color-light);
            padding: 5rem 2rem;
            text-align: center;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            color: rgba(233, 233, 233, 0.95);
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero .tagline {
            font-size: 1rem;
            color: var(--color-navy);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2.5rem;
        }

        .cta-primary {
            background-color: var(--color-gold-light);
            color: var(--color-dark-navy);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1px;
        }

        .cta-primary:hover {
            background-color: #ffc738;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
        }

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

        /* SECTION STYLING */
        section {
            padding: 4rem 2rem;
        }

        section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--color-navy);
            text-align: center;
            letter-spacing: 2px;
        }

        section .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            color: var(--color-navy-light);
            line-height: 1.8;
        }

        .divider {
            height: 3px;
            width: 60px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
            margin: 1rem auto 2rem;
        }

        /* DIFERENCIAL SECTION */
        #diferencial {
            background-color: #ffffff;
        }

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

        .card {
            background: linear-gradient(135deg, rgba(20, 33, 77, 0.05) 0%, rgba(125, 134, 166, 0.05) 100%);
            border: 1px solid var(--color-blue-light);
            border-radius: 8px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-navy), var(--color-gold), var(--color-blue));
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(20, 33, 77, 0.15);
        }

        .card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-navy);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .card p {
            color: var(--color-navy-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* EVIDÊNCIA SECTION */
        #evidencia {
            background: linear-gradient(135deg, rgba(10, 17, 39, 0.03) 0%, rgba(184, 134, 11, 0.03) 100%);
        }

        .evidence-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .evidence-text h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--color-navy);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .evidence-text ul {
            list-style: none;
        }

        .evidence-text li {
            padding: 0.8rem 0;
            color: var(--color-navy-light);
            border-bottom: 1px solid var(--color-blue-light);
            display: flex;
            align-items: center;
        }

        .evidence-text li:last-child {
            border-bottom: none;
        }

        .evidence-text li::before {
            content: '✓';
            color: var(--color-gold);
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .evidence-box {
            background: white;
            border-left: 4px solid var(--color-gold);
            padding: 2rem;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(10, 17, 39, 0.08);
        }

        .evidence-box h4 {
            color: var(--color-navy);
            margin-bottom: 1rem;
            font-family: var(--font-display);
            font-size: 1.2rem;
        }

        .evidence-box p {
            color: var(--color-navy-light);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* TRANSPARÊNCIA SECTION */
        #transparencia {
            background-color: #ffffff;
        }

        .transparency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .transparency-box {
            background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(125, 134, 166, 0.08) 100%);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--color-gold);
        }

        .transparency-box h3 {
            color: var(--color-navy);
            font-family: var(--font-display);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .wrong-text {
            color: #c94646;
            font-weight: 600;
            padding: 0.8rem;
            background: rgba(201, 70, 70, 0.1);
            border-radius: 4px;
            margin-bottom: 1rem;
            border-left: 3px solid #c94646;
        }

        .right-text {
            color: #2d8659;
            font-weight: 600;
            padding: 0.8rem;
            background: rgba(45, 134, 89, 0.1);
            border-radius: 4px;
            margin-bottom: 1rem;
            border-left: 3px solid #2d8659;
        }

        .transparency-box p {
            color: var(--color-navy-light);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* MODULOS SECTION */
        #modulos {
            background: linear-gradient(135deg, rgba(10, 17, 39, 0.03) 0%, rgba(184, 134, 11, 0.03) 100%);
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .module-item {
            background: white;
            padding: 1.8rem;
            border-radius: 6px;
            border-left: 4px solid var(--color-gold);
            box-shadow: 0 2px 8px rgba(10, 17, 39, 0.08);
            transition: all 0.3s ease;
        }

        .module-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
        }

        .module-number {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-gold);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .module-item h4 {
            font-family: var(--font-display);
            color: var(--color-navy);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .module-item p {
            color: var(--color-navy-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* PRICING SECTION */
        #pricing {
            background-color: #ffffff;
        }

        .pricing-info {
            text-align: center;
            background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-blue-light) 100%);
            color: white;
            padding: 3rem;
            border-radius: 8px;
            max-width: 600px;
            margin: 3rem auto 0;
        }

        .pricing-highlight {
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-gold-light);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .price-value {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            margin: 1rem 0;
            letter-spacing: 2px;
        }

        .price-period {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .price-options {
            margin-top: 2rem;
            text-align: center;
        }

        .price-option {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 4px;
            font-size: 0.9rem;
            border: 1px solid rgba(184, 134, 11, 0.3);
        }

        .price-option strong {
            color: var(--color-gold-light);
        }

        /* CTA SECTION */
        .cta-section {
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        /* FOOTER */
        footer {
            background-color: var(--color-dark-navy);
            color: var(--color-light);
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 2rem;
        }

        .footer-text {
            font-size: 0.9rem;
            color: rgba(233, 233, 233, 0.8);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-disclaimer {
            font-size: 0.8rem;
            color: rgba(233, 233, 233, 0.6);
            margin-top: 2rem;
            border-top: 1px solid rgba(184, 134, 11, 0.2);
            padding-top: 2rem;
        }

        .footer-disclaimer strong {
            color: var(--color-gold);
        }

        /* VIDEO RESPONSIVE */
        .video-wrapper {
            position: relative;
            width: 100%;
            margin: 2rem auto 0;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            nav.nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            nav.nav-menu.active {
                display: flex;
            }

            nav.nav-menu a {
                margin: 0.5rem 2rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .evidence-content {
                grid-template-columns: 1fr;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .price-value {
                font-size: 2.5rem;
            }

            .cards-grid, .modules-grid, .transparency-grid {
                grid-template-columns: 1fr !important;
            }

            section {
                padding: 2rem 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            #como-funciona h2 {
                font-size: 1.8rem;
            }

            #como-funciona .section-intro {
                font-size: 1rem;
            }
        }

                        .royalty-table {
                            width: 100%;
                            border-collapse: collapse;
                            margin: 1.2rem 0;
                            font-family: 'Segoe UI', Arial, sans-serif;
                            background: #faf9f6;
                            border-radius: 12px;
                            overflow: hidden;
                            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
                        }
                        .royalty-table th, .royalty-table td {
                            padding: 0.85rem 1rem;
                            text-align: center;
                        }
                        .royalty-table th {
                            background: #f5e9d7;
                            color: #b8860b;
                            font-size: 1.08rem;
                            border-bottom: 2px solid #e2c98f;
                        }
                        .royalty-table tr {
                            border-bottom: 1px solid #e2c98f;
                        }
                        .royalty-table td {
                            color: #4d577a;
                            font-size: 1.05rem;
                        }
                        .royalty-table tr:last-child {
                            border-bottom: none;
                        }
                        .royalty-table .icon {
                            font-size: 1.2rem;
                            margin-right: 0.5rem;
                        } 
                        
        
                    
    