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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
        }

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .nav-desktop {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #D32F2F;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #D32F2F;
            transition: all 0.3s ease;
        }

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

        .btn-whatsapp-header {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #D32F2F;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-whatsapp-header:hover {
            background-color: #B71C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #1A1A3E;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, #1a1a3e 0%, #2c2c54 100%);
            color: #fff;
            padding: 80px 20px;
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #E0E0E0;
        }

        .hero-description {
            font-size: 16px;
            color: #B0B0B0;
        }

        .hero-form {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 40px;
        }

        .form-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            color: #333;
            background-color: #fff;
        }

        .form-group input::placeholder {
            color: #999;
            opacity: 1;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #D32F2F;
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 15px;
        }

        .btn-primary {
            width: 100%;
            background-color: #D32F2F;
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background-color: #B71C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .form-disclaimer {
            font-size: 12px;
            color: #999;
            text-align: center;
            margin-top: 15px;
        }

        /* Trust Bar */
        .trust-bar {
            background-color: #F5F5F5;
            padding: 40px 20px;
        }

        .trust-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .trust-item i {
            font-size: 32px;
            color: #D32F2F;
            margin-bottom: 15px;
        }

        .trust-item img {
            height: 40px;
            margin-bottom: 15px;
        }

        .trust-item p {
            color: #333;
            font-weight: 500;
        }

        /* Benefícios */
        .beneficios {
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 40px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
        }

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

        .beneficio-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .beneficio-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .beneficio-icon {
            font-size: 40px;
            color: #D32F2F;
            margin-bottom: 20px;
        }

        .beneficio-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .beneficio-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Diferenciais */
        .diferenciais {
            background-color: #F5F5F5;
            padding: 80px 20px;
        }

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

        .diferencial-item {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            gap: 15px;
        }

        .diferencial-item:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        .diferencial-icon {
            font-size: 24px;
            color: #D32F2F;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .diferencial-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .diferencial-item p {
            color: #666;
            font-size: 14px;
        }

        /* FAQ */
        .faq {
            padding: 80px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #fff;
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #F9F9F9;
        }

        .faq-item.active .faq-question {
            background-color: #F5F5F5;
            color: #D32F2F;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Footer */
        footer {
            background-color: #1a1a3e;
            color: #fff;
            padding: 50px 20px 20px;
        }

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

        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: #B0B0B0;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #B0B0B0;
            font-size: 12px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: #fff;
            padding: 40px;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: #333;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 25px;
            margin-top: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        /* Botão Flutuante WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 999;
            border: none;
            font-size: 28px;
        }

        .whatsapp-float:hover {
            background-color: #1DA851;
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        /* Página de Sucesso/Conversão */
        .success-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a3e 0%, #2c2c54 100%);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .success-page.active {
            display: flex;
        }

        .success-content {
            background-color: #fff;
            border-radius: 16px;
            padding: 60px 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

        .success-icon {
            font-size: 80px;
            color: #25D366;
            margin-bottom: 20px;
            animation: scaleIn 0.5s ease 0.2s both;
        }

        .success-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a3e;
            margin-bottom: 15px;
            animation: slideUp 0.5s ease 0.3s both;
        }

        .success-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
            animation: slideUp 0.5s ease 0.4s both;
        }

        .success-info {
            background-color: #F5F5F5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            font-size: 14px;
            color: #333;
            animation: slideUp 0.5s ease 0.5s both;
        }

        .success-info strong {
            color: #D32F2F;
        }

        .success-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: #fff;
            padding: 14px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: slideUp 0.5s ease 0.6s both;
        }

        .success-button:hover {
            background-color: #1DA851;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .success-countdown {
            font-size: 12px;
            color: #999;
            margin-top: 20px;
            animation: slideUp 0.5s ease 0.7s both;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-form {
                padding: 25px;
            }

            .beneficios-grid,
            .diferenciais-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 28px;
            }
        }