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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #041E0C 0%, #1B3014 100%);
            min-height: 100vh;
            color: #FFFFFF;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .card {
            background: rgba(27, 48, 20, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            border: 1px solid rgba(47, 250, 130, 0.2);
            width: 100%;
        }

        .landing-page {
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

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

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #FFFFFF;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .benefits {
            text-align: left;
            margin: 30px 0;
            background: rgba(47, 250, 130, 0.1);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #2FFA82;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            margin: 12px 0;
            font-weight: 500;
            color: #FFFFFF;
        }

        .benefit-item::before {
            content: "✅";
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .cta-button {
            background: linear-gradient(135deg, #2FFA82 0%, #2FFA82 100%);
            color: #041E0C;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 25px rgba(47, 250, 130, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(47, 250, 130, 0.4);
        }

        .diagnostic-section {
            display: none;
            animation: fadeInUp 0.6s ease-out;
        }

        #preDiagnostic {
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #preDiagnostic .step-header {
            width: 100%;
        }

        .step-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .step-title {
            font-size: 1.8rem;
            color: #FFFFFF;
            margin-bottom: 10px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(47, 250, 130, 0.2);
            border-radius: 4px;
            margin: 20px 0;
            overflow: hidden;
        }

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

        .question {
            margin: 30px 0;
        }

        .question-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.4;
        }

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

        .option {
            background: rgba(27, 48, 20, 0.7);
            border: 2px solid rgba(47, 250, 130, 0.3);
            border-radius: 12px;
            padding: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #FFFFFF;
        }

        .option:hover {
            background: rgba(47, 250, 130, 0.1);
            border-color: #2FFA82;
            transform: translateY(-1px);
        }

        .option.selected {
            background: linear-gradient(135deg, #2FFA82 0%, #2FFA82 100%);
            color: #041E0C;
            border-color: #2FFA82;
            box-shadow: 0 8px 25px rgba(47, 250, 130, 0.3);
        }

        .navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .nav-button {
            background: rgba(47, 250, 130, 0.1);
            color: #2FFA82;
            border: 2px solid #2FFA82;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            background: #2FFA82;
            color: #041E0C;
        }

        .nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .result-section {
            display: none;
            animation: fadeInUp 0.8s ease-out;
        }

        .archetype-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .archetype-icon {
            font-size: 4rem;
            margin-bottom: 15px;
        }

        .archetype-title {
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 10px;
        }

        .archetype-description {
            font-size: 1.1rem;
            color: #FFFFFF;
            margin-bottom: 25px;
        }

        .result-content {
            background: rgba(47, 250, 130, 0.1); /* Changed for contrast */
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            border-left: 5px solid;
        }

        .result-content.sobrevivente {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.tecnico {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.autonomo {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.invisivel {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.construcao {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.emergente {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.idealista {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.lider {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.autoridade {
            border-left-color: #2FFA82;
            /* Removed specific background to inherit from .result-content */
        }

        .result-content.invisivel-valioso {
            border-left-color: #2FFA82;
        }

        .result-content.potencial-evolucao {
            border-left-color: #2FFA82;
        }

        .result-content.autoridade-ascensao {
            border-left-color: #2FFA82;
        }

        .insight-block {
            background: rgba(27, 48, 20, 0.15);
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid rgba(255, 255, 255, 0.3);
        }

        .insight-icon {
            font-size: 1.2rem;
            margin-right: 8px;
        }

        .typical-phrase {
            background: rgba(47, 250, 130, 0.1);
            border-left: 4px solid #2FFA82;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            font-style: italic;
        }

        .phrase-label {
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 5px;
        }

        .cta-section {
            background: linear-gradient(135deg, #041E0C 0%, #1B3014 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            text-align: center;
        }

        .cta-section h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .cta-section ul {
            text-align: left;
            margin: 20px 0;
            list-style: none;
        }

        .cta-section li {
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-section li::before {
            content: "✅";
        }

        .lead-form {
            max-width: 500px;
            margin: 0 auto;
        }

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

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

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(47, 250, 130, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(27, 48, 20, 0.7);
            transition: all 0.3s ease;
            color: #FFFFFF;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2FFA82;
            background: rgba(27, 48, 20, 0.9);
            box-shadow: 0 0 0 3px rgba(47, 250, 130, 0.1);
        }

        .form-group input::placeholder {
            color: #A0A0A0;
        }

        .form-group select {
            cursor: pointer;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(47, 250, 130, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(47, 250, 130, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(47, 250, 130, 0.3);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .card {
                padding: 25px;
            }

            h1 {
                font-size: 2rem;
            }

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