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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column; /* Alterado para coluna para a faixa ficar no topo */
            align-items: center;
            justify-content: center;
            padding: 0; /* Removido padding do body para a faixa ocupar toda a largura */
        }

        .urgency-banner {
            background-color: #dc3545; /* Vermelho */
            color: white;
            text-align: center;
            padding: 10px 0;
            width: 100%;
            font-weight: bold;
            font-size: 1.1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-width: 800px;
            width: 100%;
            overflow: hidden;
            animation: slideUp 0.6s ease-out;
            margin-top: 20px; /* Adicionado margem para separar da faixa */
        }

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

        .header {
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }

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

        .logo {
            max-width: 120px;
            margin-right: 30px;
        }

        .headline-text {
            text-align: left;
        }

        .header h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .content {
            padding: 40px;
        }

        .welcome-screen, .data-collection-screen, .exit-offer-screen {
            text-align: center;
        }

        .exit-offer-screen {
            display: none; /* Oculta por padrão */
            padding: 40px;
        }

        .exit-offer-screen h2 {
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .exit-offer-screen .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #52A2F8;
            margin: 20px 0;
        }

        .exit-offer-screen #continueFreeBtn {
            display: block;
            margin-top: 20px;
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .exit-offer-screen #continueFreeBtn:hover {
            color: #333;
        }

        .welcome-screen h2, .data-collection-screen h2 {
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .data-collection-screen {
            display: none;
        }

        .form-container {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: left;
        }

        .form-container h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.3rem;
            text-align: center;
        }

        .form-subtitle {
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            font-style: italic;
        }

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

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

        .form-group input, .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #52A2F8;
            box-shadow: 0 0 0 3px rgba(82, 162, 248, 0.1);
        }

        .form-group input.error, .form-group select.error {
            border-color: #dc3545;
        }

        .error-message {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

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

        .privacy-notice {
            background: #e8f4fd;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }

        .privacy-notice .lock-icon {
            color: #52A2F8;
            margin-right: 5px;
        }

        .benefits {
            text-align: left;
            margin: 30px 0;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
        }

        .benefits h3 {
            color: #333;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .benefit-item .check {
            color: #28a745;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn {
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(82, 162, 248, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(82, 162, 248, 0.4);
        }

        .question-container {
            display: none;
        }

        .progress-bar {
            background: #e9ecef;
            height: 8px;
            border-radius: 4px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            height: 100%;
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .question-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            color: #666;
        }

        .pilar-name {
            font-weight: 600;
            color: #333;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .question-number {
            font-weight: 600;
        }

        .question {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .question h3 {
            color: #333;
            font-size: 1.4rem;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .option {
            background: white;
            border: 2px solid #e9ecef;
            padding: 18px 25px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .option:hover {
            border-color: #52A2F8;
            background: #f0f4ff;
            transform: translateX(5px);
        }

        .option.selected {
            border-color: #2F5F95;
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            color: white;
            transform: translateX(5px);
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #5a6268;
            transform: translateY(-1px);
        }

        .btn-secondary:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .result-container {
            display: none;
            text-align: center;
        }

        .score-display {
            background: linear-gradient(135deg, #132740 0%, #2F5F95 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .score-display h2 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .score-display p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .result-content {
            text-align: left;
        }

        .result-content h2 {
            color: #333;
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .result-analysis {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .gaps {
            margin: 30px 0;
        }

        .gap-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 5px solid #dc3545;
        }

        .gap-item.warning {
            border-left-color: #ffc107;
        }

        .gap-item.success {
            border-left-color: #28a745;
        }

        .gap-item.info {
            border-left-color: #17a2b8;
        }

        .gap-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .gap-impact {
            color: #666;
            font-size: 0.95rem;
        }

        .next-steps {
            background: #e8f4fd;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .next-steps h3 {
            color: #333;
            margin-bottom: 20px;
        }

        .next-steps ol {
            padding-left: 20px;
        }

        .next-steps li {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .cta-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid #333;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4, #45b7d1);
            animation: rainbow 3s linear infinite;
        }

        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .cta-section h3 {
            margin-bottom: 20px;
            font-size: 2.4em;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
        }

        .cta-section p {
            margin-bottom: 20px;
            opacity: 0.95;
            font-size: 1.1em;
            line-height: 1.6;
        }

        .price-highlight {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 25px 0;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .price-highlight .original-price {
            font-size: 1.2em;
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.8);
        }

        .price-highlight .discount-price {
            font-size: 2.2em;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin-left: 10px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .benefit-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: left;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .benefit-card .check-icon {
            font-size: 1.5em;
            color: #6bcf7f;
            margin-right: 10px;
        }

        .cta-section .btn {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
            color: white;
            font-size: 1.4em;
            padding: 20px 50px;
            border-radius: 50px;
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .cta-section .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-section .btn:hover::before {
            left: 100%;
        }

        .cta-section .btn:hover {
            background: linear-gradient(135deg, #ff5252 0%, #ff7043 50%, #ff5252 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.6);
        }

        .urgency-warning {
            background: linear-gradient(135deg, #ffd93d 0%, #ffb347 100%);
            color: #333;
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 5px solid #ff8e53;
            box-shadow: 0 10px 25px rgba(255, 217, 61, 0.3);
        }

        .urgency-warning .warning-icon {
            font-size: 1.5em;
            color: #ff6b6b;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            body {
                padding: 0;
            }

            .container {
                margin: 0;
                border-radius: 0;
            }

            .header {
                padding: 30px 20px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .content {
                padding: 30px 20px;
            }

            .option {
                padding: 15px 20px;
                font-size: 1rem;
            }

            .navigation {
                flex-direction: column;
                gap: 15px;
            }

            .score-display h2 {
                font-size: 2.5rem;
            }

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

            .form-container {
                padding: 30px 20px;
            }

            .form-navigation {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 30px;
            }

            .form-navigation .btn {
                padding: 15px 25px;
                font-size: 1rem;
            }

            .navigation {
                flex-direction: row;
                justify-content: space-between;
            }

            .cta-section {
                padding: 30px 20px;
                margin-top: 30px;
            }

            .cta-section h3 {
                font-size: 1.8em;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .benefit-card {
                padding: 15px;
            }

            .price-highlight {
                padding: 15px;
            }

            .price-highlight .discount-price {
                font-size: 1.8em;
            }

            .cta-section .btn {
                font-size: 1.2em;
                padding: 18px 30px;
            }

            .urgency-warning {
                padding: 15px;
                margin: 20px 0;
            }
        }

        .pilar-colors {
            --pilar1: #132740;
            --pilar2: #2F5F95;
            --pilar3: #03101A;
            --pilar4: #52A2F8;
            --pilar5: #FFFFFF;
        }

        .mentor-bio {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            text-align: left;
        }

        .mentor-bio h3 {
            color: #333;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .mentor-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .mentor-image {
            max-width: 220px;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .mentor-text h4 {
            font-size: 1.5rem;
            color: #132740;
            margin-bottom: 15px;
        }

        .mentor-text p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .mentor-content {
                flex-direction: column;
                text-align: center;
            }
        }