 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            min-height: 100vh;
            background: radial-gradient(ellipse at center, rgba(37, 253, 137, 0.15) 0%, transparent 70%), 
                        linear-gradient(135deg, #000 0%, #0a0a0a 50%, #111 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(37, 253, 137, 0.1), transparent);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(37, 253, 137, 0.1);
            border: 1px solid #25fd89;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #25fd89;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .hero-icon {
            font-size: 5rem;
            background: linear-gradient(135deg, #25fd89 0%, #20e86b 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, #25fd89 50%, #fff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            font-weight: 300;
        }

        .price-highlight {
            font-size: 1.8rem;
            color: #25fd89;
            font-weight: 700;
            margin-bottom: 40px;
            text-shadow: 0 0 20px rgba(37, 253, 137, 0.3);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #25fd89 0%, #20e86b 50%, #1bd96a 100%);
            color: #000;
            padding: 22px 50px;
            font-size: 1.2rem;
            font-weight: 800;
            text-decoration: none;
            border-radius: 60px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(37, 253, 137, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(37, 253, 137, 0.6);
        }

        .cta-button-secondary {
            background: transparent;
            border: 2px solid #25fd89;
            color: #25fd89;
            padding: 18px 40px;
            font-size: 1.1rem;
            margin-top: 20px;
        }

        .cta-button-secondary:hover {
            background: rgba(37, 253, 137, 0.1);
            transform: translateY(-3px);
        }

        .section {
            padding: 120px 0;
            position: relative;
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #25fd89, transparent);
            opacity: 0.3;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 800;
            background: linear-gradient(135deg, #25fd89 0%, #fff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #25fd89, #20e86b);
            border-radius: 2px;
        }

        .section-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 300;
        }

        .target-audience {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .audience-card {
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
            padding: 40px;
            border-radius: 25px;
            border: 1px solid rgba(37, 253, 137, 0.2);
            transition: all 0.4s ease;
            text-align: center;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .audience-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #25fd89, transparent, #25fd89);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .audience-card:hover::before {
            opacity: 1;
        }

        .audience-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(37, 253, 137, 0.2);
        }

        .audience-icon {
            font-size: 4rem;
            color: #25fd89;
            margin-bottom: 25px;
            filter: drop-shadow(0 0 20px rgba(37, 253, 137, 0.3));
        }

        .audience-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            margin: 60px 0;
        }

        .module {
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.08) 0%, rgba(0, 0, 0, 0.9) 100%);
            padding: 40px;
            border-radius: 25px;
            border: 1px solid rgba(37, 253, 137, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #25fd89, #20e86b);
        }

        .module-title {
            font-size: 1.8rem;
            color: #25fd89;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
        }

        .lesson {
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(37, 253, 137, 0.05);
            border-radius: 15px;
            border-left: 4px solid #25fd89;
            transition: all 0.3s ease;
        }

        .lesson:hover {
            background: rgba(37, 253, 137, 0.1);
            transform: translateX(10px);
        }

        .lesson-number {
            color: #25fd89;
            font-weight: 800;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            padding: 25px;
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.08) 0%, transparent 100%);
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(37, 253, 137, 0.2);
        }

        .benefit-item:hover {
            transform: translateX(15px) scale(1.02);
            border-color: #25fd89;
            box-shadow: 0 10px 30px rgba(37, 253, 137, 0.2);
        }

        .check-icon {
            color: #25fd89;
            font-size: 1.8rem;
            margin-right: 20px;
            filter: drop-shadow(0 0 10px rgba(37, 253, 137, 0.5));
        }

        .investment-box {
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
            padding: 60px;
            border-radius: 30px;
            text-align: center;
            border: 2px solid #25fd89;
            box-shadow: 0 20px 60px rgba(37, 253, 137, 0.3);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
        }

        .investment-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(37, 253, 137, 0.05), transparent);
            animation: rotate 15s linear infinite;
        }

        .price-big {
            font-size: 4.5rem;
            color: #25fd89;
            font-weight: 900;
            margin: 30px 0;
            text-shadow: 0 0 30px rgba(37, 253, 137, 0.5);
            position: relative;
            z-index: 2;
        }

        .price-installments {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .final-cta {
            text-align: center;
            padding: 150px 0;
            background: radial-gradient(ellipse at center, rgba(37, 253, 137, 0.1) 0%, transparent 70%), 
                        linear-gradient(135deg, #000 0%, #111 100%);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(37, 253, 137, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 253, 137, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(37, 253, 137, 0.06) 0%, transparent 50%);
        }

        .final-cta-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 30px;
            font-weight: 900;
            background: linear-gradient(135deg, #25fd89 0%, #fff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
        }

        .final-cta-subtitle {
            font-size: 1.5rem;
            margin-bottom: 50px;
            opacity: 0.9;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .hero-image, .section-image {
            width: 100%;
            max-width: 500px;
            height: 300px;
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px auto;
            border: 2px solid rgba(37, 253, 137, 0.3);
            color: #25fd89;
            font-size: 1.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .hero-image:hover, .section-image:hover {
            transform: scale(1.02);
            border-color: #25fd89;
            box-shadow: 0 20px 50px rgba(37, 253, 137, 0.2);
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #25fd89;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            opacity: 0.4;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 10%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 60px 0;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .modules-grid {
                grid-template-columns: 1fr;
            }
            
            .audience-card, .module {
                padding: 30px;
            }
            
            .investment-box {
                padding: 40px 20px;
            }
            
            .price-big {
                font-size: 3rem;
            }
        }
    </style>