
        :root {
            --primary: #8A2BE2;
            --secondary: #FF4500;
            --accent: #00FF7F;
            --dark: #0A0A0A;
            --darker: #050505;
            --light: #F5F5F5;
            --text: #E0E0E0;
            --gold: #FFD700;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--darker) 0%, #1a1a2e 50%, var(--darker) 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--darker) 0%, var(--primary) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,0,0,0.3)"/></svg>');
            background-size: cover;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .tagline {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            background: linear-gradient(45deg, var(--accent), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--light);
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 69, 0, 0.6);
        }

        .primary-cta {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 69, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
            }
        }

        .cta-info {
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text);
        }

        .ratings {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .rating-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        .gold {
            color: var(--gold);
        }

        /* Hero Image Box */
        .hero-image-box {
            position: relative;
            text-align: center;
        }

        .mockup-info {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mockup-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .card-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .card-subtitle {
            font-size: 1rem;
            margin-bottom: 20px;
            color: var(--text);
        }

        .ebook-mockup {
            width: 200px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin: 0 auto 20px;
            display: block;
        }

        .pulse-glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
            }
            to {
                box-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary), 0 0 45px var(--accent);
            }
        }

        .ampoule-mockup {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 80px;
            height: auto;
            filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.5));
        }

        .card-access {
            background: linear-gradient(45deg, var(--accent), var(--primary));
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
            display: inline-block;
            margin-top: 10px;
        }

        /* Impact Section */
        .impact-section {
            padding: 80px 0;
            background: var(--darker);
            text-align: center;
        }

        .top-tag {
            margin-bottom: 20px;
        }

        .impact-headline {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .impact-subtext {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: var(--text);
        }

        /* Learning Section */
        .learning-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--darker) 100%);
        }

        .learning-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--light);
        }

        .learning-grid {
            display: grid;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .learning-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .learning-item:hover {
            transform: translateY(-5px);
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .item-text h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--light);
        }

        .learning-closing-box {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .closing-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--light);
        }

        .small-text-dark {
            font-size: 0.9rem;
            color: var(--text);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: var(--darker);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .section-subtext {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: var(--text);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 15px;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author {
            font-weight: bold;
            color: var(--light);
        }

        .stats-grid-v2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .stat-card h4 {
            font-size: 2rem;
            margin-bottom: 5px;
            color: var(--light);
        }

        /* Bonus Section */
        .bonus-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .bonus-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .bonus-item:hover {
            transform: translateY(-10px);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
        }

        .bonus-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .access-highlight {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        .gold-icon {
            font-size: 3rem;
            color: var(--gold);
        }

        .access-text h4 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--light);
        }

        .small-text-light {
            font-size: 0.9rem;
            color: var(--text);
            margin-top: 5px;
        }

        /* Final CTA Section */
        .cta-final-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--darker) 100%);
            text-align: center;
        }

        .tagline-cta {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .final-cta-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .final-cta-subtext {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .security-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .security-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .neon-glow-button {
            animation: neon-glow 1.5s ease-in-out infinite alternate;
            font-size: 1.3rem;
            padding: 20px 50px;
        }

        @keyframes neon-glow {
            from {
                box-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary), 0 0 30px var(--primary);
            }
            to {
                box-shadow: 0 0 15px var(--secondary), 0 0 25px var(--secondary), 0 0 35px var(--primary), 0 0 45px var(--primary);
            }
        }

        .price-box {
            margin-top: 30px;
        }

        .old-price {
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 5px;
        }

        .new-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .installment {
            font-size: 1.1rem;
            color: var(--text);
        }

        /* Footer */
        .footer {
            padding: 50px 0;
            background: var(--darker);
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-warning {
            color: var(--secondary);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .disclaimer {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 0.9rem;
            color: var(--text);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--text);
        }

        /* Responsividade */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .final-cta-title {
                font-size: 2.5rem;
            }
            
            .learning-item {
                flex-direction: column;
                text-align: center;
            }
            
            .access-highlight {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .impact-headline, .learning-title, .section-title, .final-cta-title {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .security-info {
                flex-direction: column;
                gap: 15px;
            }
        }

    
    
/* Centraliza tudo na tela */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* Contêiner do vídeo (para o botão ficar relativo a ele) */
.video-container {
  position: relative;
  display: inline-block;
}

/* Ajustes visuais do vídeo */
.ebook-mockup {
  width: 100%;
  max-width: 200px; /* ajuste conforme o tamanho original da imagem */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Botão centralizado no meio do vídeo */
.sound-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sound-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.sound-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

