        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1e293b;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid #e2e8f0;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e40af;
            margin-left: 24px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3b82f6;
        }

        .cta-button {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #64748b;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%233b82f6" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: #1e40af;
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .hero-badge::before {
            content: '✓';
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #3b82f6;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid #3b82f6;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-3px);
        }

        /* Why Now Section */
        .why-now {
            padding: 80px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: #fef3c7;
            color: #d97706;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1e40af);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Solution Section */
        .solution {
            padding: 80px 0;
            background: #f8fafc;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .solution-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .solution-text p {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .features-list li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .solution-visual {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .dashboard-mockup {
            background: #1e293b;
            border-radius: 12px;
            padding: 1rem;
            color: white;
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #334155;
        }

        .dashboard-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .dashboard-subtitle {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .risk-levels {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .risk-item {
            background: #334155;
            padding: 1rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .risk-text {
            font-size: 0.9rem;
        }

        .risk-badge {
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .risk-low { background: #065f46; color: #10b981; }
        .risk-medium { background: #92400e; color: #f59e0b; }
        .risk-high { background: #991b1b; color: #ef4444; }
        .risk-critical { background: #7c2d12; color: #dc2626; }



        /* System in Action Section */
.system-action {
    padding: 80px 0;
    background: #f1f5f9;
    position: relative;
    z-index: 1;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.screenshot-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.screenshot-card:nth-child(even) {
    flex-direction: row-reverse;
}

.screenshot-card:nth-child(even) .screenshot-content {
    order: 1;
}

.screenshot-card:nth-child(even) .screenshot-image {
    order: 2;
}

.screenshot-image {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screenshot-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screenshot-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.screenshot-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.screenshot-highlight {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.screenshot-highlight strong {
    color: #1e40af;
    font-weight: 600;
}

.system-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.system-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.system-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.system-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.system-cta .btn-primary {
    background: white;
    color: #1e40af;
    font-size: 1.1rem;
    padding: 16px 32px;
    position: relative;
    z-index: 2;
}

.system-cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.cta-subtitle {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Desktop Layout for Screenshots */
@media (min-width: 1024px) {
    .screenshot-card {
        display: flex;
        align-items: center;
        min-height: 400px;
    }

    .screenshot-image {
        max-width: 55%;
    }

    .screenshot-content {
        max-width: 45%;
    }

    .screenshot-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* Tablet and Mobile */
@media (max-width: 1023px) {
    .screenshot-card {
        display: block;
    }

    .screenshot-image {
        max-width: 100%;
        padding: 1.5rem;
    }

    .screenshot-content {
        padding: 1.5rem 2rem 2rem;
    }

    .system-cta {
        padding: 2rem 1.5rem;
    }

    .system-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        gap: 2rem;
    }

    .screenshot-content {
        padding: 1rem 1.5rem 1.5rem;
    }

    .screenshot-content h3 {
        font-size: 1.25rem;
    }

    .system-cta {
        padding: 1.5rem 1rem;
    }
}


        /* Compliance Section */
        .compliance {
            padding: 80px 0;
            background: white;
        }

        .compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .compliance-card {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border: 2px solid #0ea5e9;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .compliance-card.nr1 {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-color: #d97706;
        }

        .compliance-card.lgpd {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-color: #10b981;
        }

        .compliance-card.iso {
            background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
            border-color: #8b5cf6;
        }

        .compliance-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .compliance-card.nr1 .compliance-icon {
            background: #d97706;
            color: white;
        }

        .compliance-card.lgpd .compliance-icon {
            background: #10b981;
            color: white;
        }

        .compliance-card.iso .compliance-icon {
            background: #8b5cf6;
            color: white;
        }

        /* ROI Section */
        .roi {
            padding: 80px 0;
            background: #1e293b;
            color: white;
        }

        .roi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .roi-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .roi-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .roi-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .roi-list {
            list-style: none;
            text-align: left;
        }

        .roi-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: #cbd5e1;
        }

        .roi-list li::before {
            content: '▸';
            color: #3b82f6;
            margin-right: 8px;
        }

        /* Implementation Section */
        .implementation {
            padding: 80px 0;
            background: #f8fafc;
        }

        .timeline {
            margin-top: 3rem;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #3b82f6, #1e40af);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin: 0 2rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: -10px;
            border-left-color: white;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -10px;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            border-right-color: white;
            transform: translateY(-50%);
        }

        .timeline-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .timeline-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: #64748b;
        }

        /* CTA Section */
        .final-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .final-cta .btn-primary {
            background: white;
            color: #1e40af;
            font-size: 1.2rem;
            padding: 20px 40px;
        }

        .final-cta .btn-primary:hover {
            background: #f1f5f9;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            background: #f8fafc;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 1.5rem;
        }

        .faq-toggle {
            transition: transform 0.3s;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: #3b82f6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .solution-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: row !important;
            }

            .timeline-content {
                margin-left: 4rem;
                margin-right: 0;
            }

            .timeline-content::before {
                left: -10px !important;
                border-right-color: white !important;
                border-left-color: transparent !important;
            }

            .final-cta h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .roi-grid {
                grid-template-columns: 1fr;
            }

            .compliance-grid {
                grid-template-columns: 1fr;
            }
        }


        .social-links {
    margin-top: 1.5rem;
}

.social-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-icons a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icons a[href*="linkedin"]:hover {
    background: #0077b5;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .social-links {
        margin-top: 1rem;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}


/* Métricas de Impacto */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.metric-source {
    font-size: 0.75rem;
    color: #94a3b8;
    font-style: italic;
    font-weight: 400;
}

/* Proof Points */
.hero-proof {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-proof p {
    margin: 0;
    font-size: 1rem;
    color: #059669;
}

.hero-proof strong {
    color: #047857;
}

/* Ajustes no badge existente para nova mensagem */
.hero-badge {
    background: #059669 !important;
    color: white !important;
}

.hero-badge::before {
    content: '💰' !important;
    background: none !important;
    color: white !important;
    animation: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin-right: 8px !important;
}

/* Responsividade para métricas */
@media (max-width: 768px) {
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .metric-item {
        padding: 1rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .hero-proof p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .impact-metrics {
        gap: 0.75rem;
    }
    
    .metric-number {
        font-size: 1.75rem;
    }

    .metric-text {
        font-size: 0.8rem;
    }

    .metric-source {
        font-size: 0.7rem;
    }

    .hero-proof p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}


.custo-inacao {
            padding: 80px 0;
            background: #f8fafc;
        }

        .section-badge {
            background: #fef2f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }

        /* Calculadora Visual */
        .impacto-calculadora {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }

        .calc-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .calc-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .calc-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .calc-item {
            background: #f8fafc;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .calc-item.perdas {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-color: #fecaca;
        }

        .calc-item.ganhos {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-color: #bbf7d0;
        }

        .calc-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .calc-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1e293b;
        }

        .calc-numbers {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .calc-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .calc-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1e40af;
            margin-bottom: 0.25rem;
        }

        .calc-item.perdas .calc-value {
            color: #dc2626;
        }

        .calc-item.ganhos .calc-value {
            color: #059669;
        }

        .calc-label {
            font-size: 0.85rem;
            color: #64748b;
            text-align: center;
            line-height: 1.3;
        }

        .calc-arrow {
            font-size: 2rem;
            color: #3b82f6;
            font-weight: bold;
            text-align: center;
        }

        .calc-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }

        .calc-footer p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .highlight-green {
            color: #059669;
            font-weight: 700;
            font-size: 1.2em;
        }

        .calc-footer small {
            color: #94a3b8;
            font-style: italic;
        }

        /* Cards de Custos */
        .custos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .custo-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .custo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #ef4444);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .custo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .custo-card:hover::before {
            transform: scaleX(1);
        }

        .custo-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .custo-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .custo-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: #dc2626;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .custo-card p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .custo-card strong {
            color: #1e293b;
            font-weight: 600;
        }

        .custo-source {
            font-size: 0.75rem;
            color: #94a3b8;
            font-style: italic;
            margin-top: 1rem;
        }

        /* CTA Final */
        .inacao-cta {
            text-align: center;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .inacao-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .inacao-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .inacao-cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .inacao-cta .btn-primary {
            background: white;
            color: #1e40af;
            font-size: 1.1rem;
            padding: 16px 32px;
            position: relative;
            z-index: 2;
        }

        .inacao-cta .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .calc-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .calc-arrow {
                transform: rotate(90deg);
                font-size: 1.5rem;
            }

            .calc-item {
                padding: 1.5rem;
            }

            .calc-value {
                font-size: 1.5rem;
            }

            .impacto-calculadora {
                padding: 2rem 1.5rem;
            }

            .custos-grid {
                grid-template-columns: 1fr;
            }

            .inacao-cta {
                padding: 2rem 1.5rem;
            }

            .inacao-cta h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .calc-numbers {
                gap: 0.75rem;
            }

            .calc-value {
                font-size: 1.25rem;
            }

            .calc-label {
                font-size: 0.8rem;
            }

            .custo-stat {
                font-size: 2rem;
            }
        }


        /* Solution Comercial Section */
        .solution-comercial {
            padding: 80px 0;
            background: white;
        }

        .solution-comercial .section-badge {
            background: #f0f9ff;
            color: #0369a1;
            border: 1px solid #7dd3fc;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 3rem;
        }

        /* Benefícios Comerciais */
        .solution-benefits h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: #1e293b;
            line-height: 1.2;
        }

        .benefit-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding: 2rem;
            background: #f8fafc;
            border-radius: 16px;
            border-left: 4px solid #3b82f6;
        }

        .benefit-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .benefit-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .benefit-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .benefit-list li::before {
            content: '→';
            color: #3b82f6;
            font-weight: bold;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .benefit-list strong {
            color: #1e40af;
            font-weight: 600;
        }

        .solution-cta-button {
            text-align: center;
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, #f0f9ff, #dbeafe);
            border-radius: 16px;
            border: 1px solid #bfdbfe;
        }

        .solution-cta-button p {
            margin-top: 1rem;
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Dashboard Visual Melhorado */
        .solution-visual {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0;
        }

        .dashboard-mockup {
            background: #1e293b;
            border-radius: 12px;
            padding: 1.5rem;
            color: white;
        }

        .dashboard-header {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #334155;
        }

        .dashboard-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .dashboard-subtitle {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: #10b981;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

        /* Alertas de Alto Valor */
        .high-value-alerts {
            margin-bottom: 2rem;
        }

        .high-value-alerts h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: #fbbf24;
        }

        .alert-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-radius: 8px;
            font-size: 0.85rem;
        }

        .alert-item.urgente {
            background: rgba(239, 68, 68, 0.15);
            border-left: 3px solid #ef4444;
        }

        .alert-item.alto {
            background: rgba(245, 158, 11, 0.15);
            border-left: 3px solid #f59e0b;
        }

        .alert-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .alert-name {
            font-weight: 600;
        }

        .alert-risk {
            color: #94a3b8;
            font-size: 0.75rem;
        }

        .alert-cost,
        .alert-action {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.25rem;
        }

        .cost-label,
        .action-label {
            font-size: 0.7rem;
            color: #94a3b8;
        }

        .cost-value,
        .action-value {
            font-weight: 700;
            font-size: 0.9rem;
        }

        .action-value {
            color: #3b82f6;
        }

        /* ROI Dashboard */
        .roi-dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .roi-card {
            background: #334155;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
        }

        .roi-card h5 {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .roi-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: #10b981;
            margin-bottom: 0.25rem;
        }

        .roi-detail {
            font-size: 0.7rem;
            color: #64748b;
        }

        /* Sistema de Classificação */
        .classification-system h4 {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: #cbd5e1;
        }

        .risk-levels {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .risk-item {
            display: flex;
            flex-direction: column;
            padding: 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            text-align: center;
        }

        .risk-indicator {
            width: 100%;
            height: 4px;
            border-radius: 2px;
            margin-bottom: 0.5rem;
        }

        .risk-item.baixo {
            background: rgba(16, 185, 129, 0.15);
        }
        .risk-item.baixo .risk-indicator { background: #10b981; }

        .risk-item.moderado {
            background: rgba(245, 158, 11, 0.15);
        }
        .risk-item.moderado .risk-indicator { background: #f59e0b; }

        .risk-item.alto {
            background: rgba(239, 68, 68, 0.15);
        }
        .risk-item.alto .risk-indicator { background: #ef4444; }

        .risk-item.critico {
            background: rgba(185, 28, 28, 0.15);
        }
        .risk-item.critico .risk-indicator { background: #b91c1c; }

        .risk-text {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .risk-label {
            color: #94a3b8;
            margin-bottom: 0.25rem;
        }

        .risk-count {
            color: #cbd5e1;
            font-weight: 500;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .solution-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .solution-visual {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .benefit-group {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .benefit-icon {
                align-self: center;
                margin-bottom: 1rem;
            }

            .roi-dashboard {
                grid-template-columns: 1fr;
            }

            .risk-levels {
                grid-template-columns: 1fr;
            }

            .alert-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .alert-cost,
            .alert-action {
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .solution-visual {
                padding: 1rem;
            }

            .dashboard-mockup {
                padding: 1rem;
            }

            .benefit-group {
                padding: 1rem;
            }
        }



        /* Cases de Sucesso Section */
        .cases-sucesso {
            padding: 80px 0;
            background: #1e293b;
            color: white;
        }

        .cases-sucesso .section-badge {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .cases-sucesso .section-title {
            color: white;
        }

        .cases-sucesso .section-subtitle {
            color: #cbd5e1;
        }

        /* Calculadora por Setores */
        .calculadora-setores {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 3rem 0;
        }

        .calculadora-setores h3 {
            text-align: center;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .calculadora-setores > p {
            text-align: center;
            color: #cbd5e1;
            margin-bottom: 2rem;
        }

        .calc-controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .calc-input label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #e2e8f0;
        }

        .calc-input select,
        .calc-input input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .calc-input select option {
            background: #1e293b;
            color: white;
        }

        .calc-resultado {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .resultado-item {
            text-align: center;
        }

        .resultado-label {
            font-size: 0.9rem;
            color: #cbd5e1;
            margin-bottom: 0.5rem;
        }

        .resultado-valor {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .resultado-valor.perdas {
            color: #ef4444;
        }

        .resultado-valor.economia {
            color: #10b981;
        }

        .resultado-seta {
            font-size: 2rem;
            color: #3b82f6;
        }

        .resultado-destaque {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 1.1rem;
        }

        .resultado-destaque span {
            color: #10b981;
            font-size: 1.3em;
            font-weight: 800;
        }

        /* Cases Grid */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .case-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .case-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .case-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .case-setor {
            font-size: 1.1rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 0.25rem;
        }

        .case-porte {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .case-problema,
        .case-solucao {
            margin-bottom: 1.5rem;
        }

        .case-problema h4,
        .case-solucao h4 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            color: #e2e8f0;
        }

        .case-problema p {
            color: #cbd5e1;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .case-metricas {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .metrica {
            text-align: center;
            padding: .3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .metrica-numero {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #10b981;
            margin-bottom: 0.25rem;
        }

        .metrica-texto {
            font-size: 0.8rem;
            color: #cbd5e1;
            line-height: 1.2;
        }

        .case-quote {
            background: rgba(59, 130, 246, 0.1);
            border-left: 3px solid #3b82f6;
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }

        .case-quote p {
            font-style: italic;
            margin-bottom: 0.5rem;
            color: #e2e8f0;
        }

        .case-quote cite {
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Benefícios Quantificados */
        .beneficios-quantificados {
            margin: 4rem 0;
        }

        .beneficios-quantificados h3 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: white;
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .beneficio-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
        }

        .beneficio-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .beneficio-item h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: white;
        }

        .beneficio-list {
            list-style: none;
            text-align: left;
        }

        .beneficio-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: #cbd5e1;
        }

        .beneficio-list li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.8rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* CTA Final */
        .cases-cta {
            text-align: center;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .cases-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .cases-cta h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .cases-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .cta-garantia {
            font-size: 0.9rem;
            opacity: 0.8;
            position: relative;
            z-index: 2;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .calc-controls {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .calc-resultado {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .resultado-seta {
                transform: rotate(90deg);
            }

            .cases-grid {
                grid-template-columns: 1fr;
            }

            .case-metricas {
                grid-template-columns: 1fr;
            }

            .beneficios-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }


        /* Sistema Real Section */
        .sistema-real {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .sistema-real .section-badge {
            background: #e0f2fe;
            color: #0369a1;
            border: 1px solid #7dd3fc;
        }

        /* Funcionalidades do Sistema */
        .funcionalidades-sistema {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin: 3rem 0;
        }

        .funcionalidade-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .funcionalidade-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .funcionalidade-card.reverse {
            direction: rtl;
        }

        .funcionalidade-card.reverse > * {
            direction: ltr;
        }

        .funcionalidade-content {
            padding: 1rem 0;
        }

        .func-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .func-badge.ceo {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            color: #92400e;
            border: 1px solid #f59e0b;
        }

        .func-badge.rh {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            color: #991b1b;
            border: 1px solid #ef4444;
        }

        .func-badge.medicina {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            color: #166534;
            border: 1px solid #22c55e;
        }

        .func-badge.gestores {
            background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
            color: #6b21a8;
            border: 1px solid #a855f7;
        }

        .func-badge.compliance {
            background: linear-gradient(135deg, #fefce8, #fef3c7);
            color: #a16207;
            border: 1px solid #eab308;
        }

        .func-badge.analista {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #1e40af;
            border: 1px solid #3b82f6;
        }

        .funcionalidade-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .func-beneficios {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .beneficio {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .beneficio::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .beneficio strong {
            color: #1e40af;
            font-weight: 600;
        }

        .funcionalidade-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .funcionalidade-image:hover {
            transform: scale(1.02);
        }

        .funcionalidade-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Benefícios Reais */
        .beneficios-sistema {
            margin: 4rem 0;
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .beneficios-sistema h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 2rem;
        }

        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .beneficio-real {
            text-align: center;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .beneficio-real:hover {
            transform: translateY(-3px);
            border-color: #3b82f6;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
        }

        .beneficio-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .beneficio-real h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .beneficio-real p {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* CTA Final */
        .sistema-cta {
            text-align: center;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .sistema-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .sistema-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .sistema-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .sistema-cta .btn-primary {
            background: white;
            color: #1e40af;
            font-size: 1.1rem;
            padding: 16px 32px;
            position: relative;
            z-index: 2;
        }

        .sistema-cta .btn-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
        }

        .cta-subtitle {
            font-size: 0.9rem;
            margin-top: 1rem;
            opacity: 0.8;
            position: relative;
            z-index: 2;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .funcionalidade-card {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .funcionalidade-card.reverse {
                direction: ltr;
            }

            .beneficios-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .funcionalidades-sistema {
                gap: 2rem;
            }

            .funcionalidade-card {
                padding: 2rem 1.5rem;
            }

            .beneficios-grid {
                grid-template-columns: 1fr;
            }

            .beneficios-sistema {
                padding: 2rem 1.5rem;
            }

            .sistema-cta {
                padding: 2rem 1.5rem;
            }

            .sistema-cta h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .funcionalidade-content h3 {
                font-size: 1.25rem;
            }

            .beneficio {
                font-size: 0.9rem;
            }

            .beneficio-real {
                padding: 1rem;
            }
        }




         /* Implementação Comercial Section */
        .implementacao-comercial {
            padding: 80px 0;
            background: #f8fafc;
        }

        .implementacao-comercial .section-badge {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #22c55e;
        }

        /* Timeline Comercial */
        .timeline-comercial {
            margin: 3rem 0;
            position: relative;
        }

        .timeline-comercial::before {
            content: '';
            position: absolute;
            left: 60px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #3b82f6, #1e40af);
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item.final .timeline-content {
            border: 2px solid #10b981;
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
        }

        .timeline-icon {
            width: 120px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            margin-left: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
        }

        .timeline-dias {
            display: inline-block;
            background: #3b82f6;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
        }

        .timeline-beneficios {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .beneficio-timeline {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .beneficio-timeline::before {
            content: '▶';
            color: #3b82f6;
            font-size: 0.8rem;
            margin-top: 0.15rem;
            flex-shrink: 0;
        }

        .beneficio-timeline strong {
            color: #1e40af;
            font-weight: 600;
        }

        .timeline-resultado {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: #f0f9ff;
            border: 1px solid #bfdbfe;
            border-radius: 8px;
        }

        .timeline-resultado.destaque {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-color: #22c55e;
        }

        .resultado-icon {
            width: 24px;
            height: 24px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .timeline-resultado strong {
            color: #1e40af;
        }

        /* Vantagens da Implementação */
        .vantagens-implementacao {
            margin: 4rem 0;
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .vantagens-implementacao h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 2rem;
        }

        .vantagens-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .vantagem-item {
            text-align: center;
            padding: 1.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .vantagem-item:hover {
            transform: translateY(-3px);
            border-color: #3b82f6;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
        }

        .vantagem-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .vantagem-item h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .vantagem-item p {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Suporte Incluso */
        .suporte-incluso {
            margin: 4rem 0;
        }

        .suporte-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
        }

        .suporte-text h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .suporte-itens {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .suporte-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .suporte-item i {
            width: 40px;
            height: 40px;
            background: #3b82f6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .suporte-item strong {
            display: block;
            color: #e2e8f0;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .suporte-item span {
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        .suporte-visual {
            display: flex;
            justify-content: center;
        }

        .suporte-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .badge-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .badge-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .badge-subtitle {
            color: #cbd5e1;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .badge-features {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Garantias */
        .garantias {
            margin: 4rem 0;
            text-align: center;
        }

        .garantias h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 2rem;
        }

        .garantias-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .garantia-item {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .garantia-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #10b981;
        }

        .garantia-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .garantia-item h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .garantia-item p {
            color: #64748b;
            line-height: 1.6;
        }

        /* CTA Final */
        .implementacao-cta {
            text-align: center;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .implementacao-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .implementacao-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .implementacao-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .cta-buttons .btn-primary {
            background: white;
            color: #dc2626;
        }

        .cta-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .urgencia-text {
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
            position: relative;
            z-index: 2;
        }

        .urgencia-text strong {
            color: #fbbf24;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .timeline-comercial::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
            }

            .timeline-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1rem;
            }

            .timeline-content {
                margin-left: 0;
                margin-top: 1rem;
            }

            .suporte-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .vantagens-grid {
                grid-template-columns: 1fr;
            }

            .garantias-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .timeline-content {
                padding: 1.5rem;
            }

            .vantagens-implementacao {
                padding: 2rem 1.5rem;
            }

            .suporte-content {
                padding: 2rem 1.5rem;
            }

            .implementacao-cta {
                padding: 2rem 1.5rem;
            }

            .implementacao-cta h3 {
                font-size: 1.5rem;
            }
        }



        /* Proteção Legal Section */
        .protecao-legal {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
        }

        .protecao-legal .section-badge {
            background: rgba(239, 68, 68, 0.2);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .protecao-legal .section-title,
        .protecao-legal .section-subtitle {
            color: white;
        }

        .protecao-legal .section-subtitle {
            color: #cbd5e1;
        }

        /* Custos de Não Compliance */
        .custos-nao-compliance {
            margin: 3rem 0;
        }

        .custos-nao-compliance h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #fbbf24;
        }

        .custos-alertas {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .alerta-custo {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid;
        }

        .alerta-custo.critico {
            background: rgba(239, 68, 68, 0.15);
            border-color: #ef4444;
        }

        .alerta-custo.medio {
            background: rgba(245, 158, 11, 0.15);
            border-color: #f59e0b;
        }

        .alerta-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .alerta-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fbbf24;
        }

        .alerta-content p {
            color: #cbd5e1;
            line-height: 1.5;
        }

        /* Nossa Proteção */
        .nossa-protecao {
            margin: 4rem 0;
        }

        .nossa-protecao h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .protecao-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .protecao-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .protecao-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .protecao-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .protecao-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .protecao-card.nr1 .protecao-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .protecao-card.lgpd .protecao-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .protecao-card.iso .protecao-icon {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .protecao-selo {
            background: #10b981;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .protecao-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .protecao-beneficios {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .beneficio-protecao {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #cbd5e1;
        }

        .beneficio-protecao::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        .beneficio-protecao strong {
            color: #e2e8f0;
            font-weight: 600;
        }

        .protecao-economia {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 8px;
            padding: 1rem;
            font-size: 0.9rem;
            color: #10b981;
        }

        .protecao-economia strong {
            color: #059669;
        }

        /* Vantagens Legais */
        .vantagens-legais {
            margin: 4rem 0;
        }

        .vantagens-legais h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: white;
        }

        .vantagens-lista {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .vantagem-legal {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vantagem-numero {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .vantagem-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .vantagem-content p {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .vantagem-exemplo {
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            padding: 1rem;
            font-size: 0.9rem;
        }

        .vantagem-exemplo strong {
            color: #60a5fa;
            font-weight: 600;
        }

        /* Testimonial Jurídico */
        .testimonial-juridico {
            margin: 4rem 0;
        }

        .testimonial-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .testimonial-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #3b82f6;
        }

        .testimonial-text blockquote {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e2e8f0;
            font-style: italic;
            margin-bottom: 1rem;
            border-left: 3px solid #3b82f6;
            padding-left: 1.5rem;
        }

        .testimonial-text cite {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .juridico-badge {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .badge-balanca {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .badge-stats {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-numero {
            font-size: 2rem;
            font-weight: 800;
            color: #10b981;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* Urgência Legal */
        .urgencia-legal {
            margin: 4rem 0;
        }

        .urgencia-content {
            display: flex;
            gap: 2rem;
            align-items: center;
            background: rgba(239, 68, 68, 0.15);
            border: 2px solid #ef4444;
            border-radius: 16px;
            padding: 2rem;
        }

        .urgencia-icon {
            font-size: 4rem;
            color: #ef4444;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }

        .urgencia-text h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .urgencia-text p {
            color: #e2e8f0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .urgencia-dados {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .dado-urgencia {
            background: rgba(239, 68, 68, 0.2);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #fca5a5;
        }

        .dado-urgencia strong {
            color: #ef4444;
            font-weight: 700;
        }

        /* CTA Proteção */
        .protecao-cta {
            text-align: center;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .protecao-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .protecao-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .protecao-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-protecao-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .cta-protecao-buttons .btn-primary {
            background: white;
            color: #dc2626;
        }

        .cta-protecao-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .protecao-garantia {
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .protecao-garantia strong {
            color: #fbbf24;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .testimonial-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .urgencia-dados {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .protecao-grid {
                grid-template-columns: 1fr;
            }

            .vantagem-legal {
                flex-direction: column;
                text-align: center;
            }

            .urgencia-content {
                flex-direction: column;
                text-align: center;
            }

            .urgencia-dados {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-protecao-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .alerta-custo {
                flex-direction: column;
                text-align: center;
            }

            .protecao-card {
                padding: 1.5rem;
            }

            .vantagem-numero {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .protecao-cta {
                padding: 2rem 1.5rem;
            }

            .protecao-cta h3 {
                font-size: 1.5rem;
            }
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }



        /* Proteção Legal Section */
        .protecao-legal {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
        }

        .protecao-legal .section-badge {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .protecao-legal .section-title,
        .protecao-legal .section-subtitle {
            color: white;
        }

        .protecao-legal .section-subtitle {
            color: #cbd5e1;
        }

        /* Riscos de Não Compliance */
        .riscos-nao-compliance {
            margin: 3rem 0;
        }

        .riscos-nao-compliance h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #fbbf24;
        }

        .riscos-alertas {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .alerta-risco {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid;
        }

        .alerta-risco.critico {
            background: rgba(239, 68, 68, 0.15);
            border-color: #ef4444;
        }

        .alerta-risco.medio {
            background: rgba(245, 158, 11, 0.15);
            border-color: #f59e0b;
        }

        .alerta-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .alerta-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fbbf24;
        }

        .alerta-content p {
            color: #cbd5e1;
            line-height: 1.5;
        }

        /* Nossa Proteção */
        .nossa-protecao {
            margin: 4rem 0;
        }

        .nossa-protecao h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .protecao-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .protecao-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .protecao-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .protecao-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .protecao-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .protecao-card.nr1 .protecao-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .protecao-card.lgpd .protecao-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .protecao-card.iso .protecao-icon {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .protecao-selo {
            background: #10b981;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .protecao-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .protecao-beneficios {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .beneficio-protecao {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #cbd5e1;
        }

        .beneficio-protecao::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        .beneficio-protecao strong {
            color: #e2e8f0;
            font-weight: 600;
        }

        .protecao-resultado {
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 8px;
            padding: 1rem;
            font-size: 0.9rem;
            color: #10b981;
        }

        .protecao-resultado strong {
            color: #059669;
        }

        /* Vantagens Legais */
        .vantagens-legais {
            margin: 4rem 0;
        }

        .vantagens-legais h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: white;
        }

        .vantagens-lista {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .vantagem-legal {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vantagem-numero {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .vantagem-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .vantagem-content p {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .vantagem-exemplo {
            background: rgba(59, 130, 246, 0.15);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            padding: 1rem;
            font-size: 0.9rem;
        }

        .vantagem-exemplo strong {
            color: #60a5fa;
            font-weight: 600;
        }

        /* Benefícios Documentais */
        .beneficios-documentais {
            margin: 4rem 0;
        }

        .doc-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .doc-text h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .doc-beneficios {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .doc-item h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #3b82f6;
            margin-bottom: 0.5rem;
        }

        .doc-item p {
            color: #cbd5e1;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .doc-visual {
            display: flex;
            justify-content: center;
        }

        .doc-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .badge-documento {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .badge-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .badge-subtitle {
            color: #cbd5e1;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .badge-features {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        /* Urgência Regulatória */
        .urgencia-regulatoria {
            margin: 4rem 0;
        }

        .urgencia-content {
            display: flex;
            gap: 2rem;
            align-items: center;
            background: rgba(34, 197, 94, 0.15);
            border: 2px solid #22c55e;
            border-radius: 16px;
            padding: 2rem;
        }

        .urgencia-icon {
            font-size: 4rem;
            color: #22c55e;
            flex-shrink: 0;
        }

        .urgencia-text h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 1rem;
        }

        .urgencia-text p {
            color: #e2e8f0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .urgencia-acoes {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .acao-urgencia {
            background: rgba(34, 197, 94, 0.2);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: #cbd5e1;
        }

        .acao-urgencia strong {
            color: #4ade80;
            font-weight: 600;
        }

        /* CTA Proteção */
        .protecao-cta {
            text-align: center;
            background: linear-gradient(135deg, #059669, #047857);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .protecao-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .protecao-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .protecao-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-protecao-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .cta-protecao-buttons .btn-primary {
            background: white;
            color: #059669;
        }

        .cta-protecao-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .protecao-garantia {
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .protecao-garantia strong {
            color: #a7f3d0;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .doc-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .urgencia-acoes {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .protecao-grid {
                grid-template-columns: 1fr;
            }

            .vantagem-legal {
                flex-direction: column;
                text-align: center;
            }

            .urgencia-content {
                flex-direction: column;
                text-align: center;
            }

            .cta-protecao-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .alerta-risco {
                flex-direction: column;
                text-align: center;
            }

            .protecao-card {
                padding: 1.5rem;
            }

            .vantagem-numero {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .protecao-cta {
                padding: 2rem 1.5rem;
            }

            .protecao-cta h3 {
                font-size: 1.5rem;
            }
        }



        /* FAQ Comercial Section */
        .faq-comercial {
            padding: 80px 0;
            background: white;
        }

        .faq-comercial .section-badge {
            background: #fef3c7;
            color: #d97706;
            border: 1px solid #fbbf24;
        }

        /* Categorias FAQ */
        .faq-categoria {
            margin-bottom: 3rem;
        }

        .faq-categoria.urgente {
            background: linear-gradient(135deg, #fee2e2, #fecaca);
            border: 2px solid #fca5a5;
            border-radius: 16px;
            padding: 2rem;
            margin-top: 4rem;
        }

        .categoria-titulo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border-radius: 12px;
            border-left: 4px solid #3b82f6;
        }

        .faq-categoria.urgente .categoria-titulo {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-left-color: #ef4444;
            color: #991b1b;
        }

        /* FAQ Container */
        .faq-container {
            max-width: 1000px;
            margin: 3rem auto 0;
        }

        /* FAQ Items */
        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .faq-item:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
        }

        .faq-categoria.urgente .faq-item {
            border-color: #fca5a5;
            background: rgba(255, 255, 255, 0.8);
        }

        .faq-question {
            background: #f8fafc;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.05rem;
        }

        .faq-question:hover {
            background: #f1f5f9;
            color: #3b82f6;
        }

        .faq-categoria.urgente .faq-question {
            background: #fef2f2;
            color: #991b1b;
        }

        .faq-categoria.urgente .faq-question:hover {
            background: #fee2e2;
            color: #7f1d1d;
        }

        .faq-toggle {
            transition: transform 0.3s;
            color: #64748b;
            font-size: 1rem;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
            color: #3b82f6;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }

        .faq-answer.active {
            max-height: 300px;
            padding: 1.5rem;
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.7;
            margin: 0;
            font-size: 1rem;
        }

        .faq-categoria.urgente .faq-answer p {
            color: #7f1d1d;
        }

        /* CTA Final FAQ */
        .faq-cta {
            text-align: center;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .faq-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .faq-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .faq-cta > p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .faq-cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .faq-cta-buttons .btn-primary {
            background: white;
            color: #1e40af;
        }

        .faq-cta-buttons .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .faq-cta-buttons .btn-secondary:hover {
            background: white;
            color: #1e40af;
        }

        .faq-garantia {
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .categoria-titulo {
                font-size: 1.25rem;
                padding: 0.75rem;
            }

            .faq-question {
                padding: 1.25rem;
                font-size: 1rem;
            }

            .faq-answer.active {
                padding: 1.25rem;
            }

            .faq-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .faq-categoria.urgente {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .faq-question {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                text-align: left;
            }

            .faq-toggle {
                align-self: flex-end;
                margin-top: -2rem;
            }

            .faq-cta {
                padding: 2rem 1.5rem;
            }

            .faq-cta h3 {
                font-size: 1.5rem;
            }
        }

        /* Animações */
        .faq-item {
            animation: fadeInUp 0.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Final CTA Section */
        .final-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .final-cta-section .container {
            position: relative;
            z-index: 2;
        }

        /* Momento de Decisão */
        .momento-decisao {
            text-align: center;
            margin-bottom: 4rem;
        }

        .momento-decisao h2 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #fbbf24;
        }

        .decisao-texto {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .custo-espera {
            background: rgba(239, 68, 68, 0.15);
            border: 2px solid #ef4444;
            border-radius: 16px;
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .custo-texto {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }

        .custo-label {
            color: #fca5a5;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .custo-multiplicador small {
            color: #94a3b8;
            font-size: 0.85rem;
            font-style: italic;
        }

        /* Escolha Clara */
        .escolha-clara {
            margin: 4rem 0;
        }

        .escolha-clara h3 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: white;
        }

        .opcoes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcao {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid;
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .opcao.status-quo {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
        }

        .opcao.solucao {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            transform: scale(1.05);
        }

        .opcao-destaque {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #10b981;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .opcao-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .opcao-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .opcao-header h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .opcao-consequencias,
        .opcao-beneficios {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .consequencia,
        .beneficio {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .consequencia {
            color: #fca5a5;
        }

        .consequencia::before {
            content: '×';
            color: #ef4444;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .beneficio {
            color: #a7f3d0;
        }

        .beneficio::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .opcao-resultado {
            text-align: center;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
        }

        .opcao-resultado.negativo {
            background: rgba(239, 68, 68, 0.2);
            color: #fca5a5;
        }

        .opcao-resultado.positivo {
            background: rgba(16, 185, 129, 0.2);
            color: #a7f3d0;
        }

        /* Urgência Real */
        .urgencia-real {
            margin: 4rem 0;
        }

        .urgencia-content {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            background: rgba(245, 158, 11, 0.15);
            border: 2px solid #f59e0b;
            border-radius: 16px;
            padding: 2rem;
        }

        .urgencia-icone {
            font-size: 4rem;
            color: #f59e0b;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }

        .urgencia-texto h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 1.5rem;
        }

        .razoes-urgencia {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .razao-urgencia {
            background: rgba(245, 158, 11, 0.1);
            padding: 1rem;
            border-radius: 8px;
            color: #fed7aa;
        }

        .razao-urgencia strong {
            color: #fbbf24;
        }

        /* Oferta Especial */
        .oferta-especial {
            background: rgba(59, 130, 246, 0.1);
            border: 2px solid #3b82f6;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 4rem 0;
            text-align: center;
            position: relative;
        }

        .oferta-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #3b82f6;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .oferta-especial h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .oferta-detalhes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .oferta-item {
            background: rgba(59, 130, 246, 0.1);
            padding: 1rem;
            border-radius: 8px;
            color: #dbeafe;
            text-align: left;
        }

        .oferta-item strong {
            color: #93c5fd;
        }

        .valor-oferta {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .valor-destaque {
            font-size: 1.3rem;
            font-weight: 700;
            color: #10b981;
            text-align: center;
        }

        /* Botões de Ação */
        .botoes-acao {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: center;
            margin: 4rem 0;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .acao-primaria,
        .acao-secundaria {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .acao-primaria {
            background: rgba(239, 68, 68, 0.1);
            border-color: #ef4444;
        }

        .acao-primaria h4,
        .acao-secundaria h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .acao-primaria p,
        .acao-secundaria p {
            color: #cbd5e1;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .btn-urgente {
            display: inline-block;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .btn-urgente:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
        }

        .btn-email {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .btn-email:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .ou-divisor {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            font-weight: 600;
            color: #cbd5e1;
        }

        /* Garantias Finais */
        .garantias-finais {
            margin: 4rem 0;
        }

        .garantias-finais h3 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .garantias-lista {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .garantia-final {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            background: rgba(16, 185, 129, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .garantia-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .garantia-texto {
            color: #a7f3d0;
            line-height: 1.5;
        }

        .garantia-texto strong {
            color: #10b981;
        }

        /* Últimas Palavras */
        .ultimas-palavras {
            text-align: center;
            margin: 4rem 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .ultimas-palavras blockquote {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #e2e8f0;
            font-style: italic;
            border-left: 4px solid #3b82f6;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }

        .ultimas-palavras cite {
            color: #94a3b8;
            font-size: 1rem;
        }

        /* CTA Final Urgente */
        .cta-final-urgente {
            background: linear-gradient(135deg, #dc2626, #991b1b);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .cta-final-urgente::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
        }

        .cta-final-urgente h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .cta-final-urgente > p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #fecaca;
            position: relative;
            z-index: 2;
        }

        .botao-final-container {
            position: relative;
            z-index: 2;
        }

        .btn-final-urgente {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #92400e;
            padding: 1.5rem 3rem;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.3rem;
            transition: all 0.3s;
            animation: bounce 2s infinite;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
        }

        .btn-final-urgente:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.6);
        }

        .aviso-urgencia {
            margin-top: 1.5rem;
            color: #fca5a5;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Animações */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes countUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .opcoes-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .opcao.solucao {
                transform: none;
                order: -1;
            }

            .oferta-detalhes {
                grid-template-columns: 1fr;
            }

            .garantias-lista {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .momento-decisao h2 {
                font-size: 2rem;
            }

            .decisao-texto {
                font-size: 1.1rem;
            }

            .custo-numero {
                font-size: 2rem;
            }

            .botoes-acao {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .ou-divisor {
                display: none;
            }

            .urgencia-content {
                flex-direction: column;
                text-align: center;
            }

            .ultimas-palavras blockquote {
                font-size: 1.1rem;
                padding-left: 1rem;
            }
        }

        @media (max-width: 480px) {
            .final-cta-section {
                padding: 60px 0;
            }

            .opcao {
                padding: 1.5rem;
            }

            .oferta-especial {
                padding: 2rem 1.5rem;
            }

            .cta-final-urgente {
                padding: 2rem 1.5rem;
            }

            .cta-final-urgente h3 {
                font-size: 1.75rem;
            }

            .btn-final-urgente {
                padding: 1.25rem 2rem;
                font-size: 1.1rem;
            }
        }


        .solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Benefícios (Lado Esquerdo) */
.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.5;
}

/* Dashboard Visual (Lado Direito) */
.solution-visual {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.visual-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.simple-dashboard {
    background: #1e293b;
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.dashboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #334155;
}

.dashboard-item:last-child {
    border-bottom: none;
}

.dashboard-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.dashboard-value {
    font-weight: 600;
    font-size: 1rem;
}

/* Status Colors */
.status-green {
    color: #10b981;
}

.status-yellow {
    color: #f59e0b;
}

.status-red {
    color: #ef4444;
}

/* CTA Button */
.cta-button {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}


/* Timeline Principal */
.simple-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-description {
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.step-details {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-details ul {
    list-style: none;
    margin: 0;
}

.step-details li {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #64748b;
}

.step-details li::before {
    content: '•';
    color: #3b82f6;
    margin-right: 10px;
    font-weight: bold;
}

.step-details li:last-child {
    margin-bottom: 0;
}

/* Seção de Benefícios */
.implementation-benefits {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.implementation-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.benefit-highlight {
    text-align: center;
}

.benefit-highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-highlight p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.cta-final {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column;
        gap: 15px;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}