* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Barlow', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .hero {
            background: linear-gradient(135deg, #071330 0%, #0a1a3d 100%);
            color: white;
            padding: 80px 0;
            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="20" cy="20" r="1" fill="%23FFA600" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23FFA600" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23FFA600" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero .description {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 900px;
            margin: 0 auto 40px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #071330;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .career-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .path-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
        }
        
        .path-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            border-color: #FFA600;
        }
        
        .recommended-path {
            border: 2px solid #FFA600;
            background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
            position: relative;
        }
        
        .recommended-path::before {
            content: "🏆 MAIS COMPLETO";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFA600;
            color: #071330;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .path-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .path-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #071330;
            font-weight: 600;
        }
        
        .path-card p {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .pricing-section {
            background: white;
            padding: 80px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: 1.5fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: stretch;
        }
        
        .pricing-card {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .recommended {
            background: #071330;
            color: white;
            border: 2px solid #071330;
            position: relative;
        }
        
        .recommended::before {
            content: "🎯 MELHOR ESCOLHA";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFA600;
            color: #071330;
            padding: 8px 24px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .pricing-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: inherit;
            font-weight: 600;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .price-detail {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 30px;
        }
        
        .features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .features strong {
            display: contents;
        }
        
        .features li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .features li::before {
            content: "✓";
            margin-right: 15px;
            color: #FFA600;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .recommended .features li::before {
            color: #FFA600;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: #071330;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #071330;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #FFA600;
            border-color: #FFA600;
            color: #071330;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 166, 0, 0.3);
        }
        
        .btn-primary {
            background: #FFA600;
            color: #071330;
            border-color: #FFA600;
        }
        
        .btn-primary:hover {
            background: #071330;
            color: white;
            border-color: #071330;
        }
        
        .btn-secondary {
            background: transparent;
            color: #071330;
            border: 2px solid #071330;
        }
        
        .btn-secondary:hover {
            background: #071330;
            color: white;
        }
        
        .btn-thirdiary {
            background: #FFA600;
            color: #071330;
            border-color: #FFA600;
        }
        
        .btn-thirdiary:hover {
            background: #FFA600;
            color: white;
            border-color: #071330;
        }
        
        .comparison-table {
            background: white;
            margin: 40px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: #071330;
            color: white;
            padding: 20px;
            font-size: 1.2rem;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
            font-size: 1rem;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .highlight-cell {
            background: #fff9e6 !important;
            font-weight: 600;
            color: #d4890a;
        }
        
        .comparison-mobile {
            display: none;
        }
        
        .economy-highlight {
            background: linear-gradient(135deg, #FFA600, #ffb833);
            color: #071330;
            padding: 60px 0;
            text-align: center;
        }
        
        .economy-highlight h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .economy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .economy-item {
            background: rgba(7, 19, 48, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .economy-item h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .economy-item p {
            opacity: 0.9;
        }
        
        .modules-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .modules-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            transition: background 0.3s ease;
        }
        
        .accordion-header:hover {
            background: #e9ecef;
        }
        
        .accordion-title {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .accordion-title .module-number {
            background: #FFA600;
            color: #071330;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .accordion-title h4 {
            font-size: 1.3rem;
            color: #071330;
            margin: 0;
            line-height: 1.3;
            font-weight: 600;
        }
        
        .accordion-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn-buy {
            background: #071330;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-buy:hover {
            background: #FFA600;
            color: #071330;
            transform: translateY(-1px);
        }
        
        .accordion-icon {
            font-size: 1.2rem;
            color: #7f8c8d;
            transition: transform 0.3s ease;
            width: 20px;
            text-align: center;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.active {
            max-height: 1000px;
        }
        
        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }
        
        .module-description {
            padding: 30px;
            background: white;
        }
        
        .module-description .intro {
            background: #fff9e6;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            color: #071330;
            border-left: 4px solid #FFA600;
        }
        
        .module-description h5 {
            font-size: 1.2rem;
            color: #071330;
            margin-bottom: 20px;
            border-bottom: 2px solid #FFA600;
            padding-bottom: 8px;
            font-weight: 600;
        }
        
        .module-description ul {
            list-style: none;
            padding: 0;
        }
        
        .module-description li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            line-height: 1.5;
            color: #555;
        }
        
        .module-description li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #FFA600;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .module-description li strong {
            color: #071330;
        }
        
        .final-cta {
            background: linear-gradient(135deg, #071330 0%, #0a1a3d 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .final-cta .btn {
            font-size: 1.4rem;
            padding: 20px 50px;
            background: #FFA600;
            color: #071330;
            border-color: #FFA600;
        }
        
        .final-cta .btn:hover {
            background: white;
            color: #071330;
            border-color: white;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .recommended {
                order: -1;
            }
            
            .economy-grid {
                grid-template-columns: 1fr;
            }
            
            .career-paths {
                grid-template-columns: 1fr;
            }
            
            .accordion-header {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
                padding: 20px;
            }
            
            .accordion-actions {
                justify-content: space-between;
                width: 100%;
            }
            
            .accordion-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .accordion-title .module-number {
                margin-right: 0;
            }
            
            .module-description {
                padding: 20px;
            }
            
            .comparison-table table {
                display: none;
            }
            
            .comparison-mobile {
                display: block;
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .comparison-mobile-header {
                background: #071330;
                color: white;
                padding: 20px;
                text-align: center;
                font-size: 1.2rem;
                font-weight: 600;
            }
            
            .comparison-cards {
                padding: 20px;
            }
            
            .comparison-item {
                background: #f8f9fa;
                border-radius: 10px;
                padding: 20px;
                margin-bottom: 15px;
                border-left: 4px solid #FFA600;
            }
            
            .comparison-item.highlight {
                background: #fff9e6;
                border-left-color: #FFA600;
            }
            
            .comparison-item h4 {
                color: #071330;
                margin: 0 0 15px 0;
                font-size: 1.1rem;
                font-weight: 600;
            }
            
            .comparison-row {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 10px;
                padding: 8px 0;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .comparison-row:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
            
            .comparison-label {
                font-weight: 600;
                color: #071330;
                flex: 1;
            }
            
            .comparison-value {
                color: #7f8c8d;
                text-align: right;
                flex: 1;
            }
            
            .comparison-item.highlight .comparison-value {
                color: #d4890a;
                font-weight: 600;
            }
        }