   :root {
            --verde-escuro: #0A3D2F;
            --dourado-metalico: #D4AF37;
            --off-white-quente: #F7F3EE;
            --cinza-suave: #B0ADAD;
            --preto-texto-principal: #1c1917;
            --cinza-borda-input: #D1D5DB;
            --cinza-texto-secundario: #6B7280;
            --branco-puro: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--off-white-quente);
            color: var(--preto-texto-principal);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

         main {
            flex-grow: 1;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* --- Estilos da Barra de Navegação --- */
        .main-header {
            background-color: var(--branco-puro);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid var(--cinza-borda-input);
        }
        .nav-link {
            color: var(--verde-escuro);
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .nav-link:hover {
            color: var(--dourado-metalico);
        }

        /* --- Estilos do Quiz --- */
        #quiz-container {
            background-color: var(--branco-puro);
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            padding: 2rem;
            max-width: 700px;
            width: 100%;
            transition: all 0.5s ease-in-out;
        }

        #progress-bar-container {
            width: 100%;
            background-color: #e5e7eb;
            border-radius: 9999px;
            height: 0.75rem;
        }

         .option-button {
            background-color: var(--off-white-quente);
            border: 2px solid var(--cinza-borda-input);
            color: var(--preto-texto-principal);
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-align: left;
            width: 100%;
            transition: all 0.2s ease;
            cursor: pointer;
        }

         @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .result-strategy-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--branco-puro);
            text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 0.5rem;
        }
        
        .button-wrapper {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .retake-button, .cta-button-result {
            text-decoration: none;
            width: 100%;
            max-width: 380px;
            text-align: center;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
         .retake-button:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        .cta-button-result {
            color: var(--branco-puro);
            border: 2px solid var(--branco-puro);
        }
