.elementor-3650 .elementor-element.elementor-element-a59bc77{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3650 .elementor-element.elementor-element-712422b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-98769c9 *//* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --bg-dark: #0a0a0f;
            --bg-card: #111118;
            --bg-card-hover: #1a1a24;
            --orange-primary: #ff6b00;
            --orange-light: #ff8533;
            --orange-glow: rgba(255, 107, 0, 0.3);
            --orange-dark: #cc5500;
            --green-accent: #22c55e;
            --green-light: #4ade80;
            --blue-accent: #3b82f6;
            --blue-light: #60a5fa;
            --text-white: #ffffff;
            --text-gray: #9ca3af;
            --text-light-gray: #d1d5db;
            --border-dark: #27272a;
            --glass-bg: rgba(17, 17, 24, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ============================================
           GRADIENT TEXT - LARANJA APENAS
           ============================================ */
        .gradient-text {
            background: linear-gradient(135deg, #ff6b00 100%, #ff8533 100%, #ffab66 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-text-green {
            background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ============================================
           BUTTONS
           ============================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
            color: white;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
            
        }
        
        .btn-primary-large {
            padding: 20px 48px;
            font-size: 20px;
            border-radius: 16px;
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: transparent;
            color: var(--orange-primary);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            border-radius: 12px;
            border: 2px solid var(--orange-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 107, 0, 0.1);
            color: #fff;
        }
        
        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 10px 0 0;
            overflow: visible;
            margin-bottom: 90px;
            z-index: 10;
        }
        
        .hero-bg-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            pointer-events: none;
        }
        
        .hero-glow-1 {
            top: -200px;
            left: -100px;
            background: var(--orange-primary);
        }
        
        .hero-glow-2 {
            bottom: -200px;
            right: -100px;
            background: var(--orange-dark);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: #f4f4f4;
            margin-bottom: 24px;
            animation: pulse-badge 2s ease-in-out infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.3); }
            50% { box-shadow: 0 0 20px 5px rgba(255, 107, 0, 0.2); }
        }
        
        .hero-title {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-white);
        }
        
        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 2px);
            color: var(--text-light-gray);
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.5;
        }
        
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 48px;
        }
        
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            margin-top: 60px;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--orange-primary);
        }
        
        .hero-stat-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 4px;
        }
        
        /* ============================================
           PAIN SECTION - SEM VERMELHO
           ============================================ */
        .pain-section {
           
            position: relative;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
        }
        
        .pain-header {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 60px;
        }
        
        .pain-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .pain-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pain-card {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 100px;
        }
        
        /* Borda laranja no topo ao invés de vermelho */
        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange-primary), transparent);
        }
        
        .pain-card:hover {
            border-color: var(--orange-primary);
            transform: translateY(-4px);
        }
        
        /* Ícone laranja ao invés de vermelho */
        .pain-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--orange-primary);
        }
        
        .pain-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-white);
        }
        
        .pain-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* ============================================
           SOLUTION SECTION
           ============================================ */
        .solution-section {
            padding: 100px 0;
            position: relative;
        }
        
        .solution-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.08;
            background: var(--green-accent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        
        .solution-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }
        
        .solution-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .solution-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .solution-demo {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .demo-card {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .demo-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 24px;
            background: #1a1a24;
            border-bottom: 1px solid var(--border-dark);
        }
        
        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        /* Dots com cores do macOS mas sem usar vermelho como destaque */
        .demo-dot.close { background: #ff5f56; }
        .demo-dot.minimize { background: #ffbd2e; }
        .demo-dot.expand { background: #27c93f; }
        
        .demo-title {
            margin-left: 12px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .demo-content {
            padding: 40px;
        }
        
        .demo-steps {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .demo-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }
        
        .step-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: white;
        }
        
        .step-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .step-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        .step-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding: 8px 16px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--green-accent);
        }
        
        /* Video Placeholder */
        .demo-video-placeholder {
            margin-top: 40px;
            background: linear-gradient(135deg, #1a1a24 0%, #111118 100%);
            border: 2px dashed var(--border-dark);
            border-radius: 16px;
            padding: 60px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .demo-video-placeholder:hover {
            border-color: var(--orange-primary);
            background: linear-gradient(135deg, #1f1f2a 0%, #151520 100%);
        }
        
        .demo-video-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
        }
        
        .demo-video-placeholder h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .demo-video-placeholder p {
            color: var(--text-gray);
            font-size: 15px;
        }
        
        /* ============================================
           WHAT GETS IMPORTED SECTION
           ============================================ */
        .import-section {
            padding: 10px 0;
            background: linear-gradient(180deg, #0d0d14 0%, var(--bg-dark) 100%);
        }
        
        .import-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .import-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .import-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .import-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .import-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .import-column {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            padding: 20px;
        }
        
        .import-column-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-dark);
        }
        
        .import-column-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .import-column-icon.green {
            background: rgba(34, 197, 94, 0.15);
            color: var(--green-accent);
        }
        
        .import-column-icon.blue {
            background: rgba(59, 130, 246, 0.15);
            color: var(--blue-accent);
        }
        
        .import-column-header h3 {
            font-size: 20px;
            color: var(--text-white);
        }
        
        .import-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 0;
            margin-left: 0;
        }
        
        .import-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 15px;
            color: var(--text-light-gray);
           
        }
        
        .import-list .check-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--green-accent);
            margin-top: 2px;
        }
        
        .import-list .shield-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--blue-accent);
            margin-top: 2px;
        }
        
        /* ============================================
           CALCULATOR SECTION
           ============================================ */
        .calc-section {
            padding: 100px 0;
            position: relative;
        }
        
        .calc-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .calc-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .calc-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .calc-card {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 24px;
            padding: 48px;
        }
        
        .calc-row {
            margin-bottom: 40px;
        }
        
        .calc-row label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-light-gray);
        }
        
        .calc-select {
            width: 100%;
            padding: 16px 20px;
            background: #1a1a24;
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            color: var(--text-white);
            font-size: 16px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calc-select:focus {
            outline: none;
            border-color: var(--orange-primary);
        }
        
        .calc-results {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 600px) {
            .calc-results {
                grid-template-columns: 1fr;
            }
        }
        
        .calc-result-box {
            padding: 28px;
            border-radius: 16px;
            text-align: center;
        }
        
        /* Box secundário com laranja escuro ao invés de vermelho */
        .calc-result-box.secondary {
            background: rgba(255, 107, 0, 0.05);
            border: 1px solid rgba(255, 107, 0, 0.2);
        }
        
        .calc-result-box.primary {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
            border: 1px solid rgba(34, 197, 94, 0.4);
        }
        
        .calc-result-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .calc-result-value {
            font-size: 42px;
            font-weight: 700;
        }
        
        /* Laranja ao invés de vermelho */
        .calc-result-box.secondary .calc-result-value {
            color: var(--orange-primary);
        }
        
        .calc-result-box.primary .calc-result-value {
            color: var(--green-accent);
        }
        
        .calc-result-note {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 8px;
        }
        
        .calc-cta {
            display: block;
            width: 100%;
            text-align: center;
            font-size: 18px;
            padding: 15px 10px 15px 10px;
        }
        
        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            padding: 10px 0;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
        }
        
        .faq-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }
        
        .faq-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .faq-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--orange-primary);
        }
        
        .faq-question {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 17px;
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            text-align: left;
            cursor: pointer;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--orange-primary);
            transition: transform 0.3s ease;
        }
        
        .faq-icon.rotate {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.open {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 28px 24px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        /* ============================================
           FINAL CTA SECTION
           ============================================ */
        .final-cta-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Glows laranja ao invés de vermelho */
        .final-cta-glow-1 {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            background: var(--orange-primary);
            top: -200px;
            right: -200px;
            pointer-events: none;
        }
        
        .final-cta-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.08;
            background: var(--orange-dark);
            bottom: -100px;
            left: -100px;
            pointer-events: none;
        }
        
        .final-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .final-cta-content h2 {
            font-size: clamp(36px, 5vw, 56px);
            margin-bottom: 24px;
            line-height: 1.2;
            color: var(--text-white);
        }
        
        .final-cta-content p {
            font-size: 20px;
            color: var(--text-light-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .final-cta-price {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 32px;
            padding: 32px 48px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }
        
        .final-cta-old-price {
            font-size: 18px;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-bottom: 8px;
        }
        
        .final-cta-current-price {
            font-size: 64px;
            font-weight: 700;
            color: var(--orange-primary);
            line-height: 1;
        }
        
        .final-cta-price-note {
            font-size: 16px;
            color: var(--text-gray);
            margin-top: 8px;
        }
        
        .final-cta-guarantee {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin-top: 32px;
        }
        
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .guarantee-item svg {
            width: 18px;
            height: 18px;
            color: var(--green-accent);
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        .mini-footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-dark);
            text-align: center;
        }
        
        .mini-footer p {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .mini-footer a {
            color: var(--orange-primary);
            text-decoration: none;
        }
        
        .mini-footer a:hover {
            text-decoration: underline;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 4s ease-in-out infinite;
        }
        
        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .demo-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto;
            }
            
            .calc-card {
                padding: 32px 24px;
            }
            
            .calc-result-value {
                font-size: 32px;
            }
            
            .final-cta-current-price {
                font-size: 48px;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9916b68 *//* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --bg-dark: #0a0a0f;
            --bg-card: #111118;
            --bg-card-hover: #1a1a24;
            --orange-primary: #ff6b00;
            --orange-light: #ff8533;
            --orange-glow: rgba(255, 107, 0, 0.3);
            --orange-dark: #cc5500;
            --green-accent: #22c55e;
            --green-light: #4ade80;
            --blue-accent: #3b82f6;
            --blue-light: #60a5fa;
            --text-white: #ffffff;
            --text-gray: #9ca3af;
            --text-light-gray: #d1d5db;
            --border-dark: #27272a;
            --glass-bg: rgba(17, 17, 24, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ============================================
           GRADIENT TEXT - LARANJA APENAS
           ============================================ */
        .gradient-text {
            background: linear-gradient(135deg, #ff6b00 100%, #ff8533 100%, #ffab66 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-text-green {
            background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ============================================
           BUTTONS
           ============================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
            color: white;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
            
        }
        
        .btn-primary-large {
            padding: 20px 48px;
            font-size: 20px;
            border-radius: 16px;
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: transparent;
            color: var(--orange-primary);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            border-radius: 12px;
            border: 2px solid var(--orange-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 107, 0, 0.1);
            color: #fff;
        }
        
        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 10px 0 0;
            overflow: visible;
            margin-bottom: 90px;
            z-index: 10;
        }
        
        .hero-bg-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            pointer-events: none;
        }
        
        .hero-glow-1 {
            top: -200px;
            left: -100px;
            background: var(--orange-primary);
        }
        
        .hero-glow-2 {
            bottom: -200px;
            right: -100px;
            background: var(--orange-dark);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.3);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: #f4f4f4;
            margin-bottom: 24px;
            animation: pulse-badge 2s ease-in-out infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.3); }
            50% { box-shadow: 0 0 20px 5px rgba(255, 107, 0, 0.2); }
        }
        
        .hero-title {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-white);
        }
        
        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-light-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.5;
        }
        
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 48px;
        }
        
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            margin-top: 60px;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--orange-primary);
        }
        
        .hero-stat-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 4px;
        }
        
        /* ============================================
           PAIN SECTION - SEM VERMELHO
           ============================================ */
        .pain-section {
           
            position: relative;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
        }
        
        .pain-header {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 60px;
        }
        
        .pain-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .pain-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pain-card {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 100px;
        }
        
        /* Borda laranja no topo ao invés de vermelho */
        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange-primary), transparent);
        }
        
        .pain-card:hover {
            border-color: var(--orange-primary);
            transform: translateY(-4px);
        }
        
        /* Ícone laranja ao invés de vermelho */
        .pain-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--orange-primary);
        }
        
        .pain-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-white);
        }
        
        .pain-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* ============================================
           SOLUTION SECTION
           ============================================ */
        .solution-section {
            padding: 100px 0;
            position: relative;
        }
        
        .solution-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.08;
            background: var(--green-accent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        
        .solution-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }
        
        .solution-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .solution-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .solution-demo {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .demo-card {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .demo-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 24px;
            background: #1a1a24;
            border-bottom: 1px solid var(--border-dark);
        }
        
        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        /* Dots com cores do macOS mas sem usar vermelho como destaque */
        .demo-dot.close { background: #ff5f56; }
        .demo-dot.minimize { background: #ffbd2e; }
        .demo-dot.expand { background: #27c93f; }
        
        .demo-title {
            margin-left: 12px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .demo-content {
            padding: 40px;
        }
        
        .demo-steps {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .demo-step {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }
        
        .step-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: white;
        }
        
        .step-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .step-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        .step-highlight {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            padding: 8px 16px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--green-accent);
        }
        
        /* Video Placeholder */
        .demo-video-placeholder {
            margin-top: 40px;
            background: linear-gradient(135deg, #1a1a24 0%, #111118 100%);
            border: 2px dashed var(--border-dark);
            border-radius: 16px;
            padding: 60px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .demo-video-placeholder:hover {
            border-color: var(--orange-primary);
            background: linear-gradient(135deg, #1f1f2a 0%, #151520 100%);
        }
        
        .demo-video-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
        }
        
        .demo-video-placeholder h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-white);
        }
        
        .demo-video-placeholder p {
            color: var(--text-gray);
            font-size: 15px;
        }
        
        /* ============================================
           WHAT GETS IMPORTED SECTION
           ============================================ */
        .import-section {
            padding: 10px 0;
            background: linear-gradient(180deg, #0d0d14 0%, var(--bg-dark) 100%);
        }
        
        .import-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .import-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .import-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .import-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .import-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .import-column {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            padding: 20px;
        }
        
        .import-column-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-dark);
        }
        
        .import-column-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .import-column-icon.green {
            background: rgba(34, 197, 94, 0.15);
            color: var(--green-accent);
        }
        
        .import-column-icon.blue {
            background: rgba(59, 130, 246, 0.15);
            color: var(--blue-accent);
        }
        
        .import-column-header h3 {
            font-size: 20px;
            color: var(--text-white);
        }
        
        .import-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 0;
            margin-left: 0;
        }
        
        .import-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 15px;
            color: var(--text-light-gray);
           
        }
        
        .import-list .check-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--green-accent);
            margin-top: 2px;
        }
        
        .import-list .shield-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--blue-accent);
            margin-top: 2px;
        }
        
        /* ============================================
           CALCULATOR SECTION
           ============================================ */
        .calc-section {
            padding: 100px 0;
            position: relative;
        }
        
        .calc-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .calc-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .calc-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .calc-card {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 24px;
            padding: 48px;
        }
        
        .calc-row {
            margin-bottom: 40px;
        }
        
        .calc-row label {
            display: block;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-light-gray);
        }
        
        .calc-select {
            width: 100%;
            padding: 16px 20px;
            background: #1a1a24;
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            color: var(--text-white);
            font-size: 16px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calc-select:focus {
            outline: none;
            border-color: var(--orange-primary);
        }
        
        .calc-results {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 600px) {
            .calc-results {
                grid-template-columns: 1fr;
            }
        }
        
        .calc-result-box {
            padding: 28px;
            border-radius: 16px;
            text-align: center;
        }
        
        /* Box secundário com laranja escuro ao invés de vermelho */
        .calc-result-box.secondary {
            background: rgba(255, 107, 0, 0.05);
            border: 1px solid rgba(255, 107, 0, 0.2);
        }
        
        .calc-result-box.primary {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
            border: 1px solid rgba(34, 197, 94, 0.4);
        }
        
        .calc-result-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .calc-result-value {
            font-size: 42px;
            font-weight: 700;
        }
        
        /* Laranja ao invés de vermelho */
        .calc-result-box.secondary .calc-result-value {
            color: var(--orange-primary);
        }
        
        .calc-result-box.primary .calc-result-value {
            color: var(--green-accent);
        }
        
        .calc-result-note {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 8px;
        }
        
        .calc-cta {
            display: block;
            width: 100%;
            text-align: center;
            font-size: 18px;
            padding: 15px 10px 15px 10px;
        }
        
        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            padding: 10px 0;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
        }
        
        .faq-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }
        
        .faq-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .faq-header p {
            font-size: 18px;
            color: var(--text-gray);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--orange-primary);
        }
        
        .faq-question {
            width: 100%;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 17px;
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            text-align: left;
            cursor: pointer;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--orange-primary);
            transition: transform 0.3s ease;
        }
        
        .faq-icon.rotate {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer.open {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 28px 24px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        /* ============================================
           FINAL CTA SECTION
           ============================================ */
        .final-cta-section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Glows laranja ao invés de vermelho */
        .final-cta-glow-1 {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            background: var(--orange-primary);
            top: -200px;
            right: -200px;
            pointer-events: none;
        }
        
        .final-cta-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.08;
            background: var(--orange-dark);
            bottom: -100px;
            left: -100px;
            pointer-events: none;
        }
        
        .final-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .final-cta-content h2 {
            font-size: clamp(36px, 5vw, 56px);
            margin-bottom: 24px;
            line-height: 1.2;
            color: var(--text-white);
        }
        
        .final-cta-content p {
            font-size: 20px;
            color: var(--text-light-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .final-cta-price {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 32px;
            padding: 32px 48px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }
        
        .final-cta-old-price {
            font-size: 18px;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-bottom: 8px;
        }
        
        .final-cta-current-price {
            font-size: 64px;
            font-weight: 700;
            color: var(--orange-primary);
            line-height: 1;
        }
        
        .final-cta-price-note {
            font-size: 16px;
            color: var(--text-gray);
            margin-top: 8px;
        }
        
        .final-cta-guarantee {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin-top: 32px;
        }
        
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .guarantee-item svg {
            width: 18px;
            height: 18px;
            color: var(--green-accent);
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        .mini-footer {
            padding: 40px 0;
            border-top: 1px solid var(--border-dark);
            text-align: center;
        }
        
        .mini-footer p {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .mini-footer a {
            color: var(--orange-primary);
            text-decoration: none;
        }
        
        .mini-footer a:hover {
            text-decoration: underline;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 4s ease-in-out infinite;
        }
        
        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .demo-step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto;
            }
            
            .calc-card {
                padding: 32px 24px;
            }
            
            .calc-result-value {
                font-size: 32px;
            }
            
            .final-cta-current-price {
                font-size: 48px;
            }
        }/* End custom CSS */