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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

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

        /* Urgency Bar com animação aprimorada */
        .urgency-bar {
            background: linear-gradient(-45deg, #ff3d00, #ff6f00, #ff9100, #ffb300);
            background-size: 400% 400%;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            font-weight: bold;
            animation: gradientShift 3s ease infinite, bounce 2s infinite;
            box-shadow: 0 4px 20px rgba(255, 61, 0, 0.3);
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-3px); }
            60% { transform: translateY(-1px); }
        }

        /* Hero Section com efeitos avançados */
        .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e  60%, #0f3460 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at bottom right, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .hero::after {
            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="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: float 20s linear infinite;
            z-index: 1;
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
        }

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

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        .hero-text h1 {
            font-size: 4.2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShine 3s ease-in-out infinite;
        }

        @keyframes textShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-text p {
            font-size: 1.4rem;
            color: #e2e8f0;
            margin-bottom: 35px;
            font-weight: 300;
            opacity: 0.9;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-features {
            list-style: none;
            margin-bottom: 45px;
        }

        .hero-features li {
            color: #f1f5f9;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-features li:nth-child(1) { animation-delay: 0.5s; }
        .hero-features li:nth-child(2) { animation-delay: 0.7s; }
        .hero-features li:nth-child(3) { animation-delay: 0.9s; }

        .hero-features li i {
            color: #ff6b35;
            margin-right: 15px;
            font-size: 1.3rem;
            animation: pulse 2s infinite;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .ebook-cover {
            width: 380px;
            height: 480px;
            background: linear-gradient(145deg, #1e293b, #334155);
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.6), 
                        0 15px 30px rgba(255, 107, 53, 0.2);
            position: relative;
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .ebook-cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .ebook-cover:hover {
            transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) scale(1.05);
            box-shadow: 0 40px 80px rgba(0,0,0,0.7), 
                        0 20px 40px rgba(255, 107, 53, 0.3);
        }

        .ebook-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            z-index: 2;
            position: relative;
        }

        .floating-elements {
            position: absolute;
            top: 50%;
            right: -70px;
            transform: translateY(-50%);
            z-index: 3;
        }

        .floating-pill {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            padding: 18px 30px;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            margin-bottom: 25px;
            box-shadow: 0 15px 40px rgba(255,107,53,0.4);
            animation: floatComplex 4s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        @keyframes floatComplex {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(2deg); }
            50% { transform: translateY(-25px) rotate(0deg); }
            75% { transform: translateY(-10px) rotate(-2deg); }
        }

        .cta-primary {
            background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
            background-size: 200% 200%;
            color: white;
            padding: 20px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(255,107,53,0.4);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: ctaPulse 3s infinite;
            margin-bottom: 50px;
        }

        @keyframes ctaPulse {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .cta-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(255,107,53,0.6);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        /* Benefits Section aprimorada */
        .benefits {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
        }

        .section-title {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #0f172a;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .section-title2 {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

         .section-title2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #64748b;
            margin-bottom: 80px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .benefit-card {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            padding: 45px 35px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1), 
                        0 10px 20px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .benefit-card:hover::after {
            transform: scale(1);
        }

        .benefit-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15), 
                        0 15px 30px rgba(255, 107, 53, 0.2);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            animation: iconPulse 3s infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .benefit-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #0f172a;
            position: relative;
            z-index: 2;
        }

        .benefit-card p {
            color: #64748b;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Before/After Section aprimorada */
        .before-after {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .before-after::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        }

        .before-after .section-title {
            color: white;
        }

        .before-after .section-subtitle {
            color: #cbd5e1;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .comparison-card {
            background: rgba(255,255,255,0.08);
            border-radius: 25px;
            padding: 35px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .comparison-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .comparison-card:hover::before {
            transform: scale(1);
        }

        .comparison-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .comparison-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .before-img, .after-img {
            width: 100%;
            height: 220px;
            border-radius: 18px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .before-img:hover, .after-img:hover {
            transform: scale(1.05);
        }

        .before-img {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
        }

        .after-img {
            background: linear-gradient(135deg, #10b981, #059669);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .comparison-stats {
            text-align: center;
            margin-top: 25px;
        }

        .stat {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            padding: 18px 30px;
            border-radius: 30px;
            display: inline-block;
            margin: 8px;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            transition: transform 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-3px) scale(1.05);
        }

        /* Testimonials aprimorada */
        .testimonials {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .testimonial {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 25px;
            font-size: 5rem;
            color: #ff6b35;
            font-weight: 900;
            opacity: 0.3;
        }

        .testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .testimonial-content {
            margin-bottom: 25px;
            font-style: italic;
            color: #64748b;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .author-info h4 {
            color: #0f172a;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info .rating {
            color: #fbbf24;
            font-size: 1.1rem;
        }

        /* Pricing Section aprimorada */
        .pricing {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        }

        .pricing-card {
            max-width: 550px;
            margin: 0 auto;
            background: rgba(255,255,255,0.08);
            border-radius: 35px;
            padding: 60px 50px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            animation: priceFloat 6s ease-in-out infinite;
        }

        @keyframes priceFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .price-tag {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            animation: priceShine 3s ease-in-out infinite;
        }

        @keyframes priceShine {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .price-original {
            text-decoration: line-through;
            color: #64748b;
            font-size: 1.4rem;
            margin-bottom: 25px;
        }

        .price-features {
            list-style: none;
            margin: 40px 0;
            text-align: left;
        }

        .price-features li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            color: #e2e8f0;
            font-size: 1.1rem;
        }

        .price-features li i {
            color: #10b981;
            margin-right: 15px;
            font-size: 1.2rem;
            animation: checkPulse 2s infinite;
        }

        @keyframes checkPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .guarantee {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            padding: 25px;
            margin: 40px 0;
            backdrop-filter: blur(10px);
        }

        .guarantee h4 {
            color: #10b981;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 60px 0;
            text-align: center;
            color: #64748b;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Animações de entrada */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design aprimorado */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .ebook-cover {
                width: 280px;
                height: 360px;
                transform: none;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .benefits-grid,
            .comparison-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .floating-elements {
                display: none;
            }
        }

        /* Efeitos de partículas */
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        .sparkle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ff6b35;
            border-radius: 50%;
            animation: sparkle 2s linear infinite;
        }


        /* CSS para a seção Before/After com imagens reais */

.before-after {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.before-after::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"><polygon fill="%23ffffff03" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.before-img, .after-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.before-img:hover, .after-img:hover {
    transform: scale(1.05);
}

.before-img img, .after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.before-img img:hover, .after-img img:hover {
    filter: brightness(1) contrast(1.2);
}

.img-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.before-img .img-label {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.after-img .img-label {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.stat {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-images {
        gap: 10px;
    }
    
    .before-img, .after-img {
        height: 250px;
    }
    
    .img-label {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 20px;
    }
    
    .before-img, .after-img {
        height: 200px;
    }
    
    .stat {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* ================================
   RESPONSIVIDADE COMPLETA
   ================================ */



/* ================================
   TABLET LANDSCAPE (992px - 1199px)
   ================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 3.8rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.3rem;
    }
    
    .ebook-cover {
        width: 320px;
        height: 420px;
        transform: perspective(800px) rotateY(-12deg) rotateX(3deg);
    }
    
    .section-title, .section-title2 {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 60px;
    }
    
    .benefits-grid,
    .comparison-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 25px;
    }
    
    .before-img, .after-img {
        height: 250px;
    }
    
    .pricing-card {
        padding: 50px 40px;
    }
    
    .price-tag {
        font-size: 3rem;
    }
    
    .floating-elements {
        right: -50px;
    }
    
    .floating-pill {
        padding: 16px 25px;
        font-size: 0.95rem;
    }
}

/* ================================
   TABLET PORTRAIT (768px - 991px)
   ================================ */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    /* Urgency Bar */
    .urgency-bar {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    
    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        justify-content: center;
        margin-bottom: 35px;
    }
    
    .hero-features li {
        justify-content: center;
        font-size: 1rem;
    }
    
    .ebook-cover {
        width: 300px;
        height: 380px;
        transform: none;
        margin: 0 auto;
    }
    
    .floating-elements {
        display: none;
    }
    
    .cta-primary {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    /* Sections */
    .benefits, .before-after, .testimonials, .pricing {
        padding: 80px 0;
    }
    
    .section-title, .section-title2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
    }
    
    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-images {
        gap: 12px;
    }
    
    .before-img, .after-img {
        height: 220px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 40px 35px;
        max-width: 480px;
    }
    
    .price-tag {
        font-size: 2.8rem;
    }
    
    .price-features li {
        font-size: 1rem;
    }
}

/* ================================
   MOBILE LARGE (576px - 767px)
   ================================ */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    /* Urgency Bar */
    .urgency-bar {
        padding: 10px 0;
        font-size: 0.85rem;
    }
    
    /* Hero */
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-content {
        gap: 35px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .ebook-cover {
        width: 280px;
        height: 360px;
    }
    
    .cta-primary {
        padding: 16px 35px;
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    /* Sections */
    .benefits, .before-after, .testimonials, .pricing {
        padding: 70px 0;
    }
    
    .section-title, .section-title2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Comparison */
    .comparison-card {
        padding: 20px;
    }
    
    .before-img, .after-img {
        height: 200px;
    }
    
    .img-label {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .stat {
        padding: 10px 16px;
        font-size: 13px;
        margin: 6px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 35px 25px;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
    
    .guarantee {
        padding: 20px;
        margin: 30px 0;
    }
}

/* ================================
   MOBILE MEDIUM (480px - 575px)
   ================================ */
@media (min-width: 480px) and (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    /* Urgency Bar */
    .urgency-bar {
        padding: 8px 0;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-features li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-features li i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .ebook-cover {
        width: 250px;
        height: 320px;
    }
    
    .cta-primary {
        padding: 14px 30px;
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    /* Sections */
    .benefits, .before-after, .testimonials, .pricing {
        padding: 60px 0;
    }
    
    .section-title, .section-title2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    /* Benefits */
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Comparison */
    .comparison-images {
        gap: 10px;
    }
    
    .before-img, .after-img {
        height: 180px;
    }
    
    .img-label {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .stat {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-tag {
        font-size: 2.2rem;
    }
    
    .price-original {
        font-size: 1.2rem;
    }
    
    .price-features li {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

/* ================================
   MOBILE SMALL (320px - 479px)
   ================================ */
@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    /* Urgency Bar */
    .urgency-bar {
        padding: 6px 0;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Hero */
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-features {
        margin-bottom: 25px;
    }
    
    .hero-features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .hero-features li i {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .ebook-cover {
        width: 220px;
        height: 280px;
    }
    
    .cta-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    /* Sections */
    .benefits, .before-after, .testimonials, .pricing {
        padding: 50px 0;
    }
    
    .section-title, .section-title2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    /* Benefits */
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-card {
        padding: 18px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Comparison */
    .comparison-grid {
        gap: 20px;
    }
    
    .comparison-card {
        padding: 15px;
    }
    
    .comparison-images {
        gap: 8px;
    }
    
    .before-img, .after-img {
        height: 160px;
    }
    
    .img-label {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .comparison-stats {
        gap: 8px;
    }
    
    .stat {
        padding: 6px 12px;
        font-size: 11px;
        margin: 4px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial {
        padding: 18px;
    }
    
    .testimonial::before {
        font-size: 4rem;
        top: -10px;
        left: 15px;
    }
    
    .testimonial-content {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .testimonial-author {
        gap: 12px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .author-info h4 {
        font-size: 0.85rem;
    }
    
    .author-info .rating {
        font-size: 1rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 25px 15px;
        border-radius: 25px;
    }
    
    .price-tag {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .price-original {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .price-features {
        margin: 30px 0;
    }
    
    .price-features li {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .price-features li i {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .guarantee {
        padding: 15px;
        margin: 25px 0;
        border-radius: 15px;
    }
    
    .guarantee h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .guarantee p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0;
        font-size: 0.85rem;
    }
}

/* ================================
   MOBILE EXTRA SMALL (até 320px)
   ================================ */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .ebook-cover {
        width: 200px;
        height: 260px;
    }
    
    .section-title, .section-title2 {
        font-size: 1.6rem;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .before-img, .after-img {
        height: 140px;
    }
    
    .price-tag {
        font-size: 1.8rem;
    }
}

/* ================================
   LANDSCAPE PHONE
   ================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 40px 0 30px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        margin-bottom: 15px;
    }
    
    .hero-features {
        margin-bottom: 20px;
    }
    
    .ebook-cover {
        width: 200px;
        height: 250px;
    }
    
    .benefits, .before-after, .testimonials, .pricing {
        padding: 40px 0;
    }
}

/* ================================
   UTILITIES RESPONSIVAS
   ================================ */

/* Hide/Show em diferentes breakpoints */
.hide-mobile {
    display: block;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

.hide-desktop {
    display: none;
}

@media (max-width: 767px) {
    .hide-desktop {
        display: block !important;
    }
}

/* Texto responsivo */
.text-responsive {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .text-responsive {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .text-responsive {
        font-size: 1.2rem;
    }
}

/* Spacing responsivo */
.spacing-responsive {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .spacing-responsive {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .spacing-responsive {
        margin-bottom: 40px;
    }
}

/* ================================
   ANIMAÇÕES OTIMIZADAS PARA MOBILE
   ================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particles,
    .particle,
    .sparkle {
        display: none;
    }
}

/* Desabilitar hover em touch devices */
@media (hover: none) {
    .benefit-card:hover,
    .comparison-card:hover,
    .testimonial:hover,
    .ebook-cover:hover {
        transform: none;
    }
    
    .cta-primary:hover {
        transform: none;
    }
    
    .stat:hover {
        transform: none;
    }
}

/* ================================
   PERFORMANCE OTIMIZATIONS
   ================================ */
@media (max-width: 767px) {
    /* Simplificar animações em mobile */
    .hero::after {
        animation: none;
    }
    
    .particles {
        display: none;
    }
    
    /* Reduzir blur effects */
    .benefit-card,
    .comparison-card,
    .testimonial,
    .pricing-card {
        backdrop-filter: none;
    }
    
    /* Simplificar gradients */
    .urgency-bar {
        background: #ff6b35;
        animation: none;
    }
    
    .hero {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    }
}



/* ================================
   VIDEO PLAYER PERSONALIZADO
   ================================ */
.video-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.video-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video-subtitle {
    text-align: center;
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 
                0 15px 30px rgba(255, 107, 53, 0.2);
    background: #000;
    transition: all 0.3s ease;
}

.custom-video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 
                0 20px 40px rgba(255, 107, 53, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.custom-video-player:hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 3px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.custom-video-player:hover .video-controls,
.video-controls.show {
    transform: translateY(0);
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.1);
}

.time-display {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 80px;
}

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: height 0.3s ease;
}

.progress-container:hover {
    height: 8px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 3px;
    transition: width 0.1s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.1rem;
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

/* Responsividade do Player */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.4rem;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .volume-container {
        display: none;
    }
}