<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a0a0a;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* SEÇÃO HERO */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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.05) 0%, transparent 50%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #25fd89);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(45deg, #25fd89, #20d477);
            color: #0a0a0a;
            padding: 20px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(37, 253, 137, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 253, 137, 0.5);
        }

        /* SEÇÃO PÚBLICO */
        .target-audience {
            padding: 100px 0;
            background: #111111;
        }

        .target-audience h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #25fd89;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .audience-card {
            text-align: center;
            padding: 2rem;
            border: 2px solid rgba(37, 253, 137, 0.2);
            border-radius: 20px;
            background: rgba(37, 253, 137, 0.05);
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            border-color: #25fd89;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37, 253, 137, 0.2);
        }

        .audience-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: #25fd89;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #0a0a0a;
        }

        .audience-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #25fd89;
        }

        /* SEÇÃO O QUE VOCÊ RECEBE */
        .features {
            padding: 100px 0;
            background: #0a0a0a;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #25fd89;
        }

        .templates-slider {
            position: relative;
            width: 100%;
            height: 500px;
            margin-bottom: 3rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(37, 253, 137, 0.2);
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #111;
        }

        .slide img {
            width: auto;
            height: 100%;
            max-width: 100%;
            object-fit: contain;
            border-radius: 15px;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: #25fd89;
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(37, 253, 137, 0.8);
            color: #0a0a0a;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: #25fd89;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        .slide-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(37, 253, 137, 0.9);
            color: #0a0a0a;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #25fd89;
        }

        .feature-check {
            color: #25fd89;
            font-size: 1.5rem;
            font-weight: bold;
            min-width: 30px;
        }

        /* SEÇÃO FACILIDADE DE USO */
        .how-to-use {
            padding: 100px 0;
            background: #111111;
        }

        .how-to-use h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #25fd89;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .step {
            text-align: center;
            padding: 2rem;
            background: rgba(37, 253, 137, 0.05);
            border-radius: 20px;
            border: 2px solid rgba(37, 253, 137, 0.2);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #25fd89;
            color: #0a0a0a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step-image {
            width: 100%;
            height: 200px;
            background: rgba(37, 253, 137, 0.1);
            border: 2px dashed #25fd89;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #25fd89;
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #25fd89;
        }

        /* SEÇÃO OFERTA */
        .offer {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            text-align: center;
        }

        .offer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .offer h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #25fd89;
        }

        .offer p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .price {
            font-size: 4rem;
            font-weight: bold;
            color: #25fd89;
            margin: 2rem 0;
        }

        .price-label {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

        .offer-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .offer-info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .offer-info-item span {
            color: #25fd89;
            font-size: 1.3rem;
        }

        /* SEÇÃO FAQ */
        .faq {
            padding: 100px 0;
            background: #111111;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #25fd89;
        }

        .faq-item {
            background: rgba(37, 253, 137, 0.05);
            border: 2px solid rgba(37, 253, 137, 0.2);
            border-radius: 15px;
            margin-bottom: 2rem;
            padding: 2rem;
        }

        .faq-item h3 {
            color: #25fd89;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .faq-item p {
            opacity: 0.9;
        }

        /* ANIMAÇÕES */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .audience-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .price {
                font-size: 3rem;
            }

            .templates-slider {
                height: 400px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .slider-arrow.prev {
                left: 10px;
            }

            .slider-arrow.next {
                right: 10px;
            }
        }
    </style>