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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #1a202c;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
            min-height: 100vh; /* Alterado para 100vh para forçar scroll até o footer */
        }

        .content-box {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: clamp(30px, 5vw, 50px);
            max-width: 600px;
            width: 100%;
            animation: fadeIn 0.6s ease-out;
        }

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

        .title {
            font-size: clamp(28px, 6vw, 36px);
            font-weight: 700;
            margin-bottom: 16px;
            color: #2d3748;
            line-height: 1.2;
        }

        .subtitle {
            font-size: clamp(16px, 3.5vw, 18px);
            color: #4a5568;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: clamp(16px, 4vw, 24px);
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(13px, 3vw, 14px);
            color: #2d3748;
            font-weight: 500;
        }

        .trust-item i {
            color: #48bb78;
            font-size: clamp(16px, 3.5vw, 18px);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
            color: white;
            padding: clamp(16px, 4vw, 20px) clamp(32px, 8vw, 48px);
            font-size: clamp(18px, 4vw, 20px);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(66, 153, 225, 0.4);
            border: none;
            cursor: pointer;
            min-height: 44px;
            min-width: 200px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(66, 153, 225, 0.5);
            background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .disclaimer {
            margin-top: 24px;
            font-size: clamp(12px, 2.5vw, 13px);
            color: #718096;
            line-height: 1.5;
        }

        footer {
            background: white;
            padding: clamp(24px, 5vw, 32px) 20px;
            border-top: 1px solid #e2e8f0;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-company {
            margin-bottom: 20px;
        }

        .company-name {
            font-size: clamp(16px, 3.5vw, 18px);
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .company-info {
            font-size: clamp(13px, 3vw, 14px);
            color: #4a5568;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: clamp(16px, 4vw, 24px);
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .footer-links a {
            color: #4299e1;
            text-decoration: none;
            font-size: clamp(13px, 3vw, 14px);
            font-weight: 500;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #3182ce;
            text-decoration: underline;
        }

        .footer-copyright {
            font-size: clamp(12px, 2.5vw, 13px);
            color: #718096;
            text-align: center;
        }

        /* Modal do Quiz */
        #quizModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .quiz-container {
            background: white;
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.4s ease-out;
        }

        @keyframes slideIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .quiz-close {
            position: absolute;
            right: 16px;
            top: 16px;
            background: none;
            border: none;
            font-size: 28px;
            color: #a0aec0;
            cursor: pointer;
            z-index: 10;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s;
        }

        .quiz-close:hover {
            color: #4a5568;
        }

        .quiz-content {
            padding: clamp(32px, 6vw, 48px);
            text-align: center;
        }

        .quiz-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 36px;
        }

        .quiz-icon.green { background-color: #c6f6d5; color: #22543d; }
        .quiz-icon.blue { background-color: #bee3f8; color: #2c5282; }
        .quiz-icon.red { background-color: #fed7d7; color: #742a2a; }

        .quiz-title {
            font-size: clamp(22px, 5vw, 26px);
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .quiz-description {
            font-size: clamp(15px, 3.5vw, 16px);
            color: #4a5568;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .quiz-question {
            font-size: clamp(20px, 4.5vw, 24px);
            font-weight: 600;
            color: #2d3748;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 24px;
            border-radius: 12px;
            margin: 24px 0;
            border: 2px solid #4299e1;
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
        }

        .highlight-number {
            background: linear-gradient(135deg, #4299e1, #3182ce);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: clamp(26px, 6vw, 32px);
            font-weight: 800;
            display: inline-block;
            margin: 0 8px;
            box-shadow: 0 4px 8px rgba(66, 153, 225, 0.3);
        }

        .quiz-input {
            width: 100%;
            padding: 18px;
            font-size: clamp(20px, 5vw, 24px);
            border: 3px solid #4299e1;
            border-radius: 12px;
            margin-bottom: 24px;
            text-align: center;
            font-weight: 700;
            background: #f7fafc;
            transition: all 0.3s ease;
        }

        .quiz-input:focus {
            outline: none;
            border-color: #3182ce;
            background: white;
            box-shadow: 0 4px 16px rgba(66, 153, 225, 0.2);
        }

        .quiz-button {
            background: linear-gradient(135deg, #4299e1, #3182ce);
            color: white;
            padding: 18px 36px;
            font-size: clamp(18px, 4vw, 20px);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
            min-height: 56px;
        }

        .quiz-button:hover {
            background: linear-gradient(135deg, #3182ce, #2c5282);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
        }

        .quiz-button:active {
            transform: translateY(0);
        }

        .quiz-button:disabled {
            background: #cbd5e0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background-color: #edf2f7;
            border-radius: 4px;
            margin: 24px 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4299e1, #3182ce);
            transition: width 3s ease-out;
        }

        .progress-steps {
            font-size: clamp(13px, 3vw, 14px);
            color: #4a5568;
            margin-top: 16px;
            text-align: left;
        }

        .progress-steps p {
            margin: 8px 0;
            padding-left: 8px;
        }

        .spinner {
            width: 24px;
            height: 24px;
            border: 3px solid #edf2f7;
            border-top: 3px solid #4299e1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-right: 12px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            background-color: #fed7d7;
            color: #742a2a;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: clamp(14px, 3vw, 15px);
        }

        @media (max-width: 400px) {
            .content-box {
                padding: 24px 16px;
            }
            
            .quiz-content {
                padding: 24px 16px;
            }
        }