:root {
            --bg-color: #F8FAFC;
            --surface: #FFFFFF;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --accent: #0F172A;
            --highlight: #F97316;
            --border: #E2E8F0;
            --success: #10B981;
            --danger: #EF4444;
            --nav-height: 70px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background-color: var(--bg-color); 
            color: var(--text-primary); 
            min-height: 100vh; 
            display: flex; 
            flex-direction: column; 
            overflow-x: hidden;
        }
        
        .serif { font-family: 'Playfair Display', serif; }
        .hidden { display: none !important; }

        /* --- HEADER --- */
        .navbar {
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
        }

        .nav-content {
            width: 100%;
            max-width: 1100px;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .nav-right { display: flex; align-items: center; gap: 15px; }

        .nav-reset {
            background: none;
            border: none;
            font-size: 0.9rem;
            color: var(--text-secondary);
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
        }
        .nav-reset:hover { color: var(--accent); }

        .nav-cta {
            font-size: 0.85rem;
            font-weight: 600;
            background-color: var(--accent);
            color: white;
            padding: 8px 14px;
            border-radius: 6px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-cta:hover { background-color: #1E293B; transform: translateY(-1px); }
        .nav-cta svg { width: 14px; height: 14px; fill: white; }

        /* --- LAYOUT --- */
        .main-wrapper {
            margin-top: var(--nav-height);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 20px;
        }

        .container { width: 100%; max-width: 1100px; margin: 0 auto; }

        /* --- HERO --- */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 60vh;
        }
        .hero-text h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; color: var(--accent); }
        .hero-text p { font-size: 1.15rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 35px; max-width: 480px; }
        .hero-image { position: relative; overflow: hidden; aspect-ratio: 1/1; }
        .hero-image img { width: 100%; height: 100%; object-fit: cover; }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.2s;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }
        .btn:hover { background: #1E293B; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2); }
        
        .btn-full-width {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            font-size: 0.95rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 600;
            margin-bottom: 12px;
            text-decoration: none;
            box-sizing: border-box;
        }

        .btn-report { background: white; color: var(--accent); border: 2px solid var(--border); }
        .btn-report:hover { border-color: var(--accent); background: #F8FAFC; transform: translateY(-2px); }

        .btn-download { background: var(--accent); color: white; border: 2px solid var(--accent); box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1); }
        .btn-download:hover { background: #1E293B; border-color: #1E293B; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15); }

        /* --- QUIZ --- */
        .quiz-container { max-width: 700px; margin: 0 auto; width: 100%; padding: 20px 0; }
        .progress-bar { width: 100%; height: 6px; background: var(--border); margin-bottom: 40px; border-radius: 3px; overflow: hidden; }
        .progress-fill { height: 100%; background: var(--accent); width: 0%; transition: width 0.4s ease; }
        .question-card { background: var(--surface); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); border: 1px solid var(--border); }
        .q-number { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 15px; display: block; font-weight: 600; }
        .q-text { font-size: 1.4rem; font-weight: 600; margin-bottom: 40px; line-height: 1.3; min-height: 70px; }
        .options-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
        .option-btn { background: #F8FAFC; border: 2px solid var(--border); padding: 20px 0; text-align: center; border-radius: 10px; cursor: pointer; transition: all 0.2s; }
        .option-btn:hover { border-color: var(--accent); background: white; transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .option-val { font-size: 1.2rem; font-weight: 700; display: block; }
        .labels-row { display: flex; justify-content: space-between; margin-top: 12px; color: var(--text-secondary); font-size: 0.8rem; font-weight: 500; }

        .result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-start; }
        
        .chart-wrapper { width: 100%; display: flex; justify-content: center; } /* Centraliza o wrapper */

        .chart-layout {
            display: grid;
            grid-template-columns: 40px 1fr; 
            grid-template-rows: 1fr 40px;    
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
            gap: 0;
        }

        .axis-y-label {
            grid-row: 1; grid-column: 1; display: flex; align-items: center; justify-content: center; width: 40px;
        }
        .axis-y-text {
            transform: rotate(-90deg); white-space: nowrap; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary);
        }

        .matrix-box {
            grid-row: 1; grid-column: 2; position: relative; aspect-ratio: 1/1; background: white; border: 2px solid var(--text-primary); display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .axis-x-label {
            grid-row: 2; grid-column: 2; text-align: center; padding-top: 10px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
        }

        .quadrant { display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(0,0,0,0.2); position: relative; transition: background 0.3s; }
        .quadrant:nth-child(1) { border-right: 1px dashed #CBD5E1; border-bottom: 1px dashed #CBD5E1; }
        .quadrant:nth-child(2) { border-bottom: 1px dashed #CBD5E1; }
        .quadrant:nth-child(3) { border-right: 1px dashed #CBD5E1; }
        .quadrant.active { background: rgba(0,0,0,0.05); color: var(--text-primary); font-weight: 800; }
        .quadrant.transition-active { background: rgba(249, 115, 22, 0.1); color: var(--highlight); }
        
        .user-dot { position: absolute; width: 28px; height: 28px; background: var(--highlight); border: 4px solid white; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transform: translate(-50%, 50%); bottom: 50%; left: 50%; transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 10; }

        .res-pre { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; font-weight: 600; }
        .res-title { font-size: 3rem; color: var(--accent); line-height: 1.1; margin-bottom: 8px; }
        .res-subtitle { font-size: 1.1rem; font-weight: 500; margin-bottom: 20px; display: inline-block; padding: 5px 14px; background: #E2E8F0; border-radius: 50px; color: var(--text-primary); }
        .res-desc { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 25px; }
        .action-card { border-left: 4px solid var(--highlight); background: white; padding: 25px; border-radius: 0 12px 12px 0; margin-bottom: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
        .action-head { font-weight: 800; color: var(--text-primary); margin-bottom: 6px; font-size: 1rem; }
        .action-body { font-size: 0.95rem; color: #475569; line-height: 1.5; }

        /* --- FOOTER --- */
        footer { background: var(--accent); color: rgba(255,255,255,0.7); padding: 25px 20px; margin-top: 60px; text-align: center; font-size: 0.85rem; }

        /* --- MODAL --- */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px); z-index: 999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        .modal-overlay.open { opacity: 1; pointer-events: all; }
        .modal-card { background: white; width: 90%; max-width: 650px; max-height: 90vh; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); overflow-y: auto; position: relative; padding: 40px; transform: translateY(20px); transition: transform 0.3s; }
        .modal-overlay.open .modal-card { transform: translateY(0); }
        .modal-close { position: absolute; top: 20px; right: 20px; background: #F1F5F9; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--text-primary); transition: background 0.2s; }
        .modal-close:hover { background: #E2E8F0; }
        .modal-header { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 30px; }
        .modal-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--accent); margin-bottom: 5px; line-height: 1.1; }
        .detail-section { margin-bottom: 30px; }
        .detail-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
        .detail-title.green { color: var(--success); }
        .detail-title.red { color: var(--danger); }
        .detail-title.blue { color: var(--accent); }
        .detail-list { list-style: none; }
        .detail-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 0.95rem; color: #334155; line-height: 1.5; }
        .detail-list li::before { content: '•'; position: absolute; left: 0; color: #CBD5E1; font-weight: bold; font-size: 1.2rem; line-height: 1.1; }
        .check-list li::before { content: '✓'; color: var(--success); }

        /* --- HIDDEN CARD --- */
        #share-card-container { position: fixed; left: -9999px; top: 0; }
        .share-card { width: 1080px; height: 1080px; background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: white; padding: 80px; display: flex; flex-direction: column; justify-content: space-between; font-family: 'Inter', sans-serif; position: relative; }
        .share-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
        .share-brand h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; }
        .share-brand p { color: #94A3B8; letter-spacing: 2px; text-transform: uppercase; font-size: 1rem; margin-top: 5px; }
        .share-content { display: flex; align-items: center; gap: 60px; flex: 1; margin-top: 40px; }
        
        .share-chart { width: 450px; display: grid; grid-template-columns: 40px 1fr; grid-template-rows: 1fr auto; gap: 0; }
        .share-chart .axis-y-label { display: flex; align-items: center; justify-content: center; }
        .share-chart .axis-y-text { color: rgba(255,255,255,0.6); transform: rotate(-90deg); white-space: nowrap; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
        .share-chart .matrix-box { grid-column: 2; grid-row: 1; aspect-ratio: 1/1; border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); box-shadow: none; }
        .share-chart .quadrant { color: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.2) !important; font-size: 0.9rem; }
        .share-chart .quadrant.active { background: rgba(255,255,255,0.1); color: white; }
        .share-chart .axis-x-label { grid-column: 2; grid-row: 2; color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding-top: 15px; text-align: center; }
        
        .share-info { flex: 1; }
        .share-label { color: #94A3B8; text-transform: uppercase; letter-spacing: 2px; font-size: 1.2rem; margin-bottom: 15px; }
        .share-result { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; margin-bottom: 20px; color: var(--highlight); }
        .share-desc { font-size: 1.5rem; line-height: 1.5; color: rgba(255,255,255,0.8); }
        .share-footer { margin-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; }
        .share-url { font-size: 1.5rem; color: white; font-weight: 600; background: rgba(255,255,255,0.1); padding: 10px 25px; border-radius: 8px; }
        .share-author { text-align: right; }
        .share-author span { display: block; font-weight: 700; font-size: 1.4rem; }
        .share-linkedin { color: #94A3B8; font-size: 1rem; margin-top: 5px; display: block; }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-text h1 { font-size: 2.8rem; }
            .hero-text p { margin: 0 auto 30px auto; }
            .result-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
            
            .chart-wrapper { padding: 0; }
            .chart-layout { max-width: 450px; }
            
            .result-content { text-align: center; }
            .action-card { text-align: left; }
            .res-title { font-size: 2.5rem; }
            .modal-card { padding: 30px; width: 95%; }
        }

        @media (max-width: 600px) {
            .hero-text h1 { font-size: 2.2rem; }
            .options-grid { gap: 8px; }
            .option-btn { padding: 15px 0; }
            .nav-reset span { display: none; }

            .chart-layout { max-width: 100%; padding: 0 10px; }
            .axis-y-text { font-size: 0.6rem; letter-spacing: 1px; }
            .axis-x-label { font-size: 0.6rem; letter-spacing: 1px; }
            .quadrant { font-size: 0.65rem; letter-spacing: 0.5px; }
        }
		
		