/* Reset e configurações base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Container padrão */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Botões */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
            color: white;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #3A7BC8 0%, #6BA3E0 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: #4A90E2;
            border-color: #4A90E2;
        }

        .btn-outline:hover {
            background: #4A90E2;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }
        
        .btn-outline-light {
            background: transparent;
            color: #ffffff;
            border-color: #ffffff;
        }

        .btn-outline-light:hover {
            background: #ffffff;
            color: #4A90E2;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .btn-cta {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: white;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
        }

        .btn-cta:hover {
            background: linear-gradient(135deg, #FF5252 0%, #FF7979 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .btn-cta-large {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: white;
            padding: 20px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
        }

        .btn-cta-large:hover {
            background: linear-gradient(135deg, #FF5252 0%, #FF7979 100%);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #2C5282 0%, #4A90E2 100%);
            z-index: 1000;
            padding: 2px 0;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(44, 82, 130, 0.3);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: #B3D9FF;
        }

        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #B3D9FF;
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover:after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Menu mobile */
        .nav-mobile {
            display: none;
            background: rgba(44, 82, 130, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            margin-top: 10px;
            border-radius: 8px;
        }

        .nav-mobile.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .nav-mobile ul {
            list-style: none;
            text-align: center;
        }

        .nav-mobile li {
            margin: 15px 0;
        }

        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2C5282 0%, #4A90E2 50%, #7BB3F0 100%);
            padding: 180px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
            background-size: cover;
            opacity: 0.3;
        }

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

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #FFFFFF 0%, #B3D9FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.05);
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: #F8FAFC;
        }

        .benefits h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #2C5282;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #2C5282;
        }

        .benefit-card p {
            color: #64748B;
            line-height: 1.6;
        }
        
        /* Seção Custo-Benefício */
        .cost-benefit {
            padding: 100px 0;
            background: white;
        }

        .cost-benefit-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cost-benefit-text h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #2C5282;
        }

        .cost-benefit-text p {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #4A5568;
        }

        .cost-benefit-image {
            border-radius: 16px;
            height: 350px;
            transition: all 0.3s ease;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .cost-benefit-image:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
        }

        .share-section {
            text-align: center;
        }

        .btn-share {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: white;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        .btn-share:hover {
            background: linear-gradient(135deg, #FF5252 0%, #FF7979 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
        }


        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: #F8FAFC;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #2C5282;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border: 2px solid #E2E8F0;
            border-radius: 16px;
            padding: 30px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card .pricing-features {
            flex-grow: 1;
        }

        .pricing-card:hover {
            border-color: #4A90E2;
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
        }

        .pricing-card.featured {
            border-color: #4A90E2;
            background: linear-gradient(135deg, #F7FAFF 0%, #EBF4FF 100%);
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #2C5282;
        }

        .price {
            margin-bottom: 8px;
        }

        .currency {
            font-size: 1.25rem;
            font-weight: 500;
            color: #64748B;
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: #2C5282;
        }

        .period {
            font-size: 1rem;
            color: #64748B;
        }

        .savings {
            color: #10B981;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 24px;
        }

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

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #E2E8F0;
            position: relative;
            padding-left: 32px;
        }

        .pricing-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10B981;
            font-weight: bold;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: white;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #2C5282;
        }

        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            display: none;
            text-align: center;
        }

        .testimonial-card.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        .testimonial-content p {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #4A5568;
            font-style: italic;
            margin-bottom: 32px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .author-avatar img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #4A90E2;
        }

        .author-info h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #2C5282;
            margin-bottom: 4px;
        }

        .author-info span {
            color: #64748B;
            font-size: 14px;
        }

        .testimonials-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: #CBD5E0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #4A90E2;
            transform: scale(1.2);
        }

        /* Final CTA Section */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #2C5282 0%, #4A90E2 100%);
            color: white;
            text-align: center;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-content p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .cta-features span {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Footer */
        .footer {
            background: #1A202C;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo img {
            height: 96px;
            margin-bottom: auto;
        }

        .footer-section p {
            color: #A0AEC0;
            line-height: 1.6;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #A0AEC0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #2D3748;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            color: #A0AEC0;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            color: #4A90E2;
            transform: translateY(-2px);
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-legal p {
            color: #A0AEC0;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: #A0AEC0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }
        
        #popup-message {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        #popup-message.show {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 500px;
            box-sizing: border-box;
            margin: 20px;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        .modal-overlay.show .modal-content {
            transform: scale(1);
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.2s;
        }
        .close-modal:hover {
            color: #333;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4A5568;
        }
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #CBD5E0;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus {
            outline: none;
            border-color: #4A90E2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
        }
        .info-text {
            text-align: center;
            margin-bottom: 25px;
            color: #64748B;
            font-size: 14px;
            line-height: 1.5;
        }
        .info-text strong {
            color: #2C5282;
        }
        .submit-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 6px;
            background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%);
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #3A7BC8 0%, #6BA3E0 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }


        /* Responsividade */
        @media (max-width: 992px) {
             .header-actions {
                gap: 10px;
            }
            .btn {
                padding: 10px 16px;
                font-size: 12px;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            /* Header mobile */
            .nav-desktop {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            /* Hero mobile */
            .hero {
                padding: 150px 0 60px;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text p {
                font-size: 1.125rem;
            }
            
            /* Benefits mobile */
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .cost-benefit-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            /* Pricing mobile */
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            /* CTA mobile */
            .cta-features {
                flex-direction: column;
                gap: 16px;
            }
            
            .final-cta h2 {
                font-size: 2rem;
            }
            
            /* Footer mobile */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            /* Testimonials mobile */
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .benefits h2,
            .pricing h2,
            .testimonials h2 {
                font-size: 2rem;
            }
            
            .final-cta h2 {
                font-size: 1.75rem;
            }
            
            .btn-cta-large {
                padding: 16px 32px;
                font-size: 16px;
            }
        }