* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial Black', Arial, sans-serif;
        background: #0a0a0a;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Header Fixo */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 2px solid #ff0000;
    }

    .header-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px;
        font-weight: 900;
        color: #00ff00;
        text-shadow: 0 0 10px #00ff00;
    }

    .header-cta {
        background: linear-gradient(45deg, #ff0000);
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 25px;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }

    .header-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        background: radial-gradient(circle at center, #1a0000 0%, #0a0a0a 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 20px 50px;
        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 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23ff0000" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23g)"/></svg>');
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.7; }
    }

    .hero-content {
        max-width: 800px;
        z-index: 2;
        position: relative;
    }

    .eyebrow {
        background: #ff0000;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: inline-block;
        animation: shake 2s infinite;
    }

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
    }

    .hero-headline {
        font-size: clamp(32px, 6vw, 64px);
        font-weight: 900;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-headline .highlight {
        color: #00ff00;
        text-shadow: 0 0 20px #00ff00;
    }

    .hero-subheadline {
        font-size: clamp(18px, 3vw, 24px);
        margin-bottom: 30px;
        color: #cccccc;
        font-weight: 600;
        padding-top: 50px;
    }

    .price-container {
        background: rgba(255, 0, 0, 0.1);
        border: 2px solid #ff0000;
        border-radius: 30px;
        padding: 20px;
        margin: 30px 0;
        display: inline-block;
    }

    .old-price {
        font-size: 24px;
        text-decoration: line-through;
        color: #888;
        margin-right: 10px;
        display: inline-block;

    }

    .current-price {
        font-size: 48px;
        color: #00ff00;
        font-weight: 900;
        text-shadow: 0 0 20px #00ff00;
        display: inline-block;
    }

    .countdown {
        background: #ff0000;
        color: white;
        padding: 15px;
        border-radius: 10px;
        margin: 20px 0;
        font-size: 18px;
        font-weight: 900;
    }

    .countdown-timer {
        font-size: 32px;
        font-weight: 900;
        color: #ffff00;
        text-shadow: 0 0 10px #ffff00;
    }

    .hero-cta {
        background: linear-gradient(45deg, #00ff00);
        color: #000;
        padding: 20px 40px;
        border: none;
        border-radius: 30px;
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        margin: 20px 10px;
        box-shadow: 0 8px 30px rgba(0, 255, 0, 0.3);
    }

    .hero-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 255, 0, 0.5);
    }

    .benefits-bullets {
        list-style: none;
        margin: 30px 0;
        text-align: left;
        display: inline-block;
    }

    .benefits-bullets li {
        padding: 10px 0;
        font-size: 18px;
        font-weight: 600;
        position: relative;
        padding-left: 30px;
    }

    .benefits-bullets li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #00ff00;
        font-size: 20px;
        font-weight: 900;
    }

    /* VSL Section */
    .vsl-section {
        padding: 10px 20px;
        background: #111;
        text-align: center;
    }

    .vsl-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .vsl-title {
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 30px;
        color: #ff0000;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 177.25%; /* 16:9 aspect ratio */
        background: #ffffff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 50px rgba(255, 0, 0, 0.3);
    }

    .video-wrapper iframe,
    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Benefits Section */
    .benefits {
        padding: 80px 20px;
        background: radial-gradient(circle at center, #001100 0%, #0a0a0a 100%);
    }

    .benefits-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .section-title {
        font-size: 42px;
        font-weight: 900;
        margin-bottom: 50px;
        color: #00ff00;
        text-shadow: 0 0 20px #00ff00;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .benefit-card {
        background: rgba(255, 0, 0, 0.05);
        border: 2px solid #ff0000;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 0, 0, 0.1);
        box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
    }

    .benefit-icon {
        font-size: 48px;
        margin-bottom: 20px;
        display: block;
    }

    .benefit-title {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 15px;
        color: #00ff00;
    }

    .benefit-description {
        font-size: 16px;
        color: #ccc;
        line-height: 1.6;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 20px;
        background: #111;
    }

    .testimonials-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .testimonial {
        background: rgba(0, 255, 0, 0.05);
        border: 2px solid #00ff00;
        border-radius: 15px;
        padding: 30px;
        text-align: left;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        font-style: italic;
    }

    .testimonial-author {
        font-weight: 900;
        color: #00ff00;
    }

    .testimonial-rating {
        color: #ffff00;
        font-size: 20px;
        margin-top: 10px;
    }

    /* Kit Section */
    .kit-section {
        padding: 80px 20px;
        background: radial-gradient(circle at center, #110000 0%, #0a0a0a 100%);
    }

    .kit-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .kit-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        margin-top: 50px;
    }

    .kit-image {
        background: #222;
        border-radius: 15px;
        padding: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 120px;
        color: #00ff00;
        min-height: 400px;
    }

    .kit-details {
        text-align: left;
    }

    .kit-list {
        list-style: none;
        margin: 30px 0;
    }

    .kit-list li {
        padding: 15px 0;
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid #333;
        position: relative;
        padding-left: 40px;
    }

    .kit-list li::before {
        content: '🎁';
        position: absolute;
        left: 0;
        font-size: 24px;
    }

    .guarantee {
        background: #ff0000;
        color: white;
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
        text-align: center;
    }

    .guarantee-title {
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .guarantee-text {
        font-size: 18px;
        line-height: 1.6;
    }

    /* FAQ */
    .faq {
        padding: 80px 20px;
        background: #111;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        border-bottom: 1px solid #333;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 20px;
        font-weight: 900;
        padding: 20px 0;
        cursor: pointer;
        position: relative;
        color: #00ff00;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        color: #44ff44;
    }

    .faq-question::after {
        content: '+';
        position: absolute;
        right: 0;
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .faq-question.active::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 0 20px 0;
        display: none;
        color: #ccc;
        line-height: 1.6;
    }

    .faq-answer.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Sticky CTA */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(45deg, #ff0000);
        padding: 15px 20px;
        z-index: 999;
        text-align: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sticky-cta.show {
        transform: translateY(0);
    }

    .sticky-cta-button {
        background: linear-gradient(45deg, #00ff00);
        color: #ffffff;
        padding: 15px 30px;
        border: none;
        border-radius: 25px;
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    /* Footer */
    .footer {
        background: #000;
        padding: 40px 20px;
        text-align: center;
        border-top: 1px solid #333;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .disclaimer {
        font-size: 12px;
        color: #666;
        line-height: 1.6;
        margin-top: 20px;
    }

    /* Lead Capture */
    .lead-capture {
        background: rgba(0, 255, 0, 0.1);
        border: 2px solid #00ff00;
        border-radius: 15px;
        padding: 30px;
        margin: 40px 0;
        text-align: center;
    }

    .lead-form {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .lead-input {
        padding: 15px;
        border: 2px solid #00ff00;
        background: #000;
        color: #fff;
        border-radius: 10px;
        font-size: 16px;
        min-width: 200px;
    }

    .lead-submit {
        background: linear-gradient(45deg, #00ff00, #44ff44);
        color: #000;
        padding: 15px 30px;
        border: none;
        border-radius: 10px;
        font-weight: 900;
        cursor: pointer;
        text-transform: uppercase;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            gap: 10px;
        }
        
        .hero {
            padding: 120px 20px 50px;
        }
        
        .hero-cta {
            font-size: 18px;
            padding: 15px 30px;
        }
        
        .kit-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .kit-details {
            text-align: center;
        }
        
        .lead-form {
            flex-direction: column;
            align-items: center;
        }
        
        .lead-input {
            width: 100%;
            max-width: 300px;
        }
    }