 :root {
            --primary: #1a365d;
            --primary-light: #2c5282;
            --accent: #e53e3e;
            --accent-soft: #fc8181;
            --gold: #d69e2e;
            --gold-light: #f6e05e;
            --green: #38a169;
            --green-light: #c6f6d5;
            --bg-light: #f7fafc;
            --bg-warm: #fffaf0;
            --text-dark: #1a202c;
            --text-muted: #4a5568;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #2b6cb0 100%);
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
            font-weight: 300;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* CONTAINER */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* SECTIONS */
        section {
            padding: 80px 20px;
        }

        .section-title {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 15px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 50px;
        }

        /* PAIN POINTS */
        .pain-section {
            background: var(--bg-warm);
        }

        .pain-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pain-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pain-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .pain-card .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .pain-card h3 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .pain-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .pain-card .loss {
            margin-top: 15px;
            padding: 10px 15px;
            background: #fff5f5;
            border-radius: 8px;
            font-weight: 600;
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* COMPARISON TABLE */
        .comparison-section {
            background: white;
        }

        .comparison-table {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .comparison-table thead {
            background: var(--primary);
            color: white;
        }

        .comparison-table th {
            padding: 18px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.95rem;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:nth-child(even) {
            background: var(--bg-light);
        }

        .comparison-table .col-planilha {
            color: var(--accent);
            font-weight: 500;
        }

        .comparison-table .col-sistema {
            color: var(--green);
            font-weight: 500;
        }

        /* MODULES */
        .modules-section {
            background: var(--bg-light);
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .module-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .module-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .module-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .module-card .module-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .module-card h3 {
            font-size: 1.05rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .module-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* SCENARIOS */
        .scenarios-section {
            background: white;
        }

        .scenario {
            max-width: 900px;
            margin: 0 auto 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .scenario-before {
            background: #fff5f5;
            padding: 30px;
            border-right: 3px solid #fed7d7;
        }

        .scenario-after {
            background: #f0fff4;
            padding: 30px;
        }

        .scenario-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .scenario-before .scenario-label {
            color: var(--accent);
        }

        .scenario-after .scenario-label {
            color: var(--green);
        }

        .scenario h4 {
            font-size: 1rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .scenario p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .scenario-title {
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        /* ROI */
        .roi-section {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            color: white;
            text-align: center;
        }

        .roi-section .section-title {
            color: white;
        }

        .roi-section .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .roi-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .roi-card {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }

        .roi-card .value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold-light);
            margin-bottom: 8px;
        }

        .roi-card .label {
            font-size: 0.9rem;
            opacity: 0.85;
            font-weight: 400;
        }

        .roi-card .detail {
            font-size: 0.8rem;
            opacity: 0.65;
            margin-top: 8px;
            font-style: italic;
        }

        .roi-total {
            background: rgba(255,255,255,0.15);
            border: 2px solid var(--gold);
            border-radius: 16px;
            padding: 30px;
            max-width: 500px;
            margin: 0 auto;
        }

        .roi-total .value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold-light);
        }

        .roi-total .label {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        /* DIFFERENTIALS */
        .differentials-section {
            background: var(--bg-warm);
        }

        .diff-list {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            gap: 20px;
        }

        .diff-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: white;
            padding: 25px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .diff-item .check {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--green-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .diff-item h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .diff-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* SECURITY */
        .security-section {
            background: white;
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .profile-card {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .profile-card:hover {
            border-color: var(--primary);
        }

        .profile-card .profile-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
        }

        .profile-card h3 {
            color: var(--primary);
            font-size: 1.05rem;
            margin-bottom: 12px;
        }

        .profile-card ul {
            list-style: none;
            text-align: left;
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .profile-card ul li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }

        .profile-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #2b6cb0 100%);
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 15px;
        }

        .cta-steps {
            max-width: 500px;
            margin: 30px auto 40px;
            text-align: left;
        }

        .cta-step {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }

        .cta-step:last-child {
            border-bottom: none;
        }

        .cta-step .step-number {
            width: 32px;
            height: 32px;
            background: var(--gold);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .cta-step span {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .cta-highlight {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background: var(--gold);
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-highlight:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(214, 158, 46, 0.5);
        }

        /* TIMELINE */
        .timeline-section {
            background: white;
        }

        .timeline-box {
            max-width: 750px;
            margin: 0 auto;
            background: var(--bg-light);
            border-radius: 20px;
            padding: 45px 40px;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 2px solid #e2e8f0;
        }

        .timeline-months {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .timeline-label {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .timeline-features {
            display: grid;
            gap: 18px;
        }

        .timeline-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 18px 20px;
            background: white;
            border-radius: 12px;
            border-left: 3px solid var(--primary);
        }

        .timeline-feature .tl-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .timeline-feature strong {
            font-size: 0.95rem;
            color: var(--text-dark);
            display: block;
            margin-bottom: 4px;
        }

        .timeline-feature p {
            font-size: 0.87rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* INVESTMENT */
        .investment-section {
            background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
        }

        .investment-box {
            max-width: 850px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: var(--shadow-xl);
            border: 2px solid #e2e8f0;
        }

        .investment-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #edf2f7;
        }

        .investment-percent {
            font-size: 5rem;
            font-weight: 800;
            color: var(--green);
            line-height: 1;
        }

        .investment-label {
            font-size: 1.4rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-top: 8px;
        }

        .investment-formula {
            font-size: 1rem;
            color: var(--text-muted);
            margin-top: 5px;
            font-style: italic;
        }

        .investment-minimum {
            margin-top: 12px;
            display: inline-block;
            padding: 8px 20px;
            background: #fff5f5;
            border-radius: 8px;
            font-size: 0.88rem;
            color: var(--text-dark);
            font-weight: 500;
            border: 1px solid #fed7d7;
        }

        .investment-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-bottom: 35px;
        }

        .inv-benefit {
            text-align: center;
            padding: 20px 15px;
            border-radius: 12px;
            background: var(--bg-light);
        }

        .inv-benefit .inv-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .inv-benefit h4 {
            font-size: 0.95rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .inv-benefit p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .investment-comparison {
            margin: 30px 0;
            padding: 25px;
            background: var(--bg-light);
            border-radius: 12px;
        }

        .investment-comparison h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .inv-compare-grid {
            display: grid;
            gap: 12px;
        }

        .inv-compare-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
            padding: 15px 20px;
            border-radius: 10px;
            align-items: center;
        }

        .inv-compare-item.negative {
            background: #fff5f5;
            border-left: 3px solid var(--accent-soft);
        }

        .inv-compare-item.positive {
            background: var(--green-light);
            border-left: 3px solid var(--green);
        }

        .inv-compare-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .inv-compare-value {
            font-weight: 600;
            font-size: 0.9rem;
            text-align: right;
        }

        .inv-compare-note {
            grid-column: 1 / -1;
            font-size: 0.8rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .investment-alternative {
            margin-top: 30px;
            padding: 25px 30px;
            background: linear-gradient(135deg, #ebf8ff 0%, #f0fff4 100%);
            border-radius: 12px;
            border: 1px solid #bee3f8;
            text-align: center;
        }

        .investment-alternative .inv-alt-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .investment-alternative h4 {
            font-size: 1.05rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .investment-alternative p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .investment-guarantee {
            margin-top: 25px;
            padding: 30px;
            background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
            border-radius: 12px;
            border: 1px solid #9ae6b4;
            text-align: center;
        }

        .investment-guarantee .inv-guarantee-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .investment-guarantee h4 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .guarantee-items {
            display: grid;
            gap: 15px;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 15px;
            background: white;
            border-radius: 10px;
        }

        .guarantee-item .guarantee-check {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 2px;
        }

        .guarantee-item strong {
            font-size: 0.92rem;
            color: var(--text-dark);
            display: block;
            margin-bottom: 4px;
        }

        .guarantee-item p {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .investment-example {
            margin-top: 30px;
            padding: 25px;
            background: #fffff0;
            border-radius: 12px;
            border: 1px solid #fefcbf;
        }

        .investment-example h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .investment-example p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .inv-calc {
            display: grid;
            gap: 8px;
        }

        .inv-calc-line {
            font-size: 0.95rem;
            color: var(--text-dark);
            padding: 8px 15px;
            background: white;
            border-radius: 8px;
        }

        .inv-calc-highlight {
            margin-top: 10px;
            padding: 15px 20px;
            background: var(--green-light);
            border-radius: 10px;
            font-size: 0.95rem;
            color: var(--primary);
            text-align: center;
            line-height: 1.6;
        }

        /* FOOTER */
        footer {
            background: #0f2240;
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 30px 20px;
            font-size: 0.85rem;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .scenario {
                grid-template-columns: 1fr;
            }

            .scenario-before {
                border-right: none;
                border-bottom: 3px solid #fed7d7;
            }

            section {
                padding: 60px 15px;
            }

            /* Tabela comparativa: formato card empilhado no mobile */
            .comparison-table {
                display: block !important;
                border: none !important;
                box-shadow: none !important;
                overflow: visible !important;
                border-radius: 0 !important;
                max-width: 100% !important;
                margin: 0 auto !important;
            }

            .comparison-table thead {
                display: none !important;
            }

            .comparison-table tbody {
                display: block !important;
                width: 100% !important;
                max-width: 400px !important;
                margin: 0 auto !important;
            }

            .comparison-table tr {
                display: block !important;
                margin-bottom: 20px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                border: 1px solid #e2e8f0;
                width: 100% !important;
            }

            .comparison-table td {
                display: block !important;
                width: 100% !important;
                padding: 14px 18px !important;
                text-align: left !important;
                border-bottom: 1px solid #edf2f7;
                font-size: 0.9rem !important;
            }

            .comparison-table td:first-child {
                background: #1a365d !important;
                color: white !important;
                font-weight: 600;
            }

            .comparison-table td:first-child strong {
                color: white !important;
            }

            .comparison-table td:nth-child(2) {
                background: #fff5f5;
            }

            .comparison-table td:nth-child(2)::before {
                content: '❌ Com planilha:';
                display: block;
                font-weight: 700;
                color: #e53e3e;
                font-size: 0.72rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 5px;
            }

            .comparison-table td:nth-child(3) {
                background: #f0fff4;
                border-bottom: none;
            }

            .comparison-table td:nth-child(3)::before {
                content: '✅ Com o sistema:';
                display: block;
                font-weight: 700;
                color: #38a169;
                font-size: 0.72rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 5px;
            }

            .comparison-table .col-planilha,
            .comparison-table .col-sistema {
                color: inherit !important;
                font-weight: 400 !important;
            }
        }

        /* ANIMATIONS */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }